/* ── VARIABLES & RESET ── */
:root {
  --white: #FFFFFF;
  --greige: #E8E3DC;
  --greige-dark: #D9D2C8;
  --gold: #B8927D;
  --gold-light: #C9A99A;
  --black: #1A1A1A;
  --sage: #7A8B7F;
  --text-muted: #6B6B6B;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: background .4s, padding .4s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 16px 60px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); transition: color .3s;
}
.site-header.scrolled .site-logo { color: var(--black); }
.site-header.is-dark .site-logo { color: var(--black); }

.primary-nav { display: flex; gap: 36px; list-style: none; }
.primary-nav a {
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color .3s;
}
.site-header.scrolled .primary-nav a,
.site-header.is-dark .primary-nav a { color: var(--text-muted); }
.primary-nav a:hover { color: var(--gold) !important; }
.primary-nav .current-menu-item a { color: var(--gold) !important; }

.nav-cta {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 26px; border: 1px solid rgba(255,255,255,0.5);
  color: var(--white); transition: all .3s;
}
.site-header.scrolled .nav-cta,
.site-header.is-dark .nav-cta { border-color: var(--gold); color: var(--gold); }
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: var(--white) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 60px 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(184,146,125,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 100% 0%, rgba(122,139,127,0.1) 0%, transparent 50%);
}
.page-hero-inner { position: relative; max-width: 700px; }
.page-hero-tag {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.page-hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 400;
  color: var(--white); line-height: 1.15;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.5); margin-top: 20px; line-height: 1.7;
}

/* ── UTILITY ── */
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-weight: 300; font-style: italic;
  color: var(--text-muted); line-height: 1.75;
}
.btn-primary {
  display: inline-block; padding: 15px 42px;
  background: var(--gold); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: all .3s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,146,125,0.35); }
.btn-outline {
  display: inline-block; padding: 14px 42px;
  border: 1px solid var(--black); color: var(--black);
  font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; transition: all .3s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline.gold { border-color: var(--gold); color: var(--gold); }
.btn-outline.gold:hover { background: var(--gold); color: var(--white); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HOMEPAGE HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden;
}
.hero-left {
  background: var(--black); display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 80px; position: relative;
}
.hero-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(184,146,125,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px; display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 1s ease .2s forwards;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 3.8vw, 4rem); font-weight: 400; line-height: 1.15;
  color: var(--white); opacity: 0; animation: fadeUp 1s ease .4s forwards;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.55); line-height: 1.65;
  margin-top: 28px; margin-bottom: 52px; max-width: 380px;
  opacity: 0; animation: fadeUp 1s ease .6s forwards;
}
.hero-actions {
  display: flex; gap: 22px; align-items: center;
  opacity: 0; animation: fadeUp 1s ease .8s forwards;
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.6); font-family: 'Jost', sans-serif;
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; transition: color .3s;
}
.btn-ghost::after { content: '→'; transition: transform .3s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }
.hero-right { position: relative; background: var(--greige); overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; }
.hero-right-placeholder {
  width: 100%; height: 100%; min-height: 100vh;
  background: linear-gradient(160deg, var(--greige-dark) 0%, var(--greige) 40%, #CCC0B0 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-right-placeholder svg { opacity: 0.15; }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px; background: linear-gradient(to top, rgba(26,26,26,.45) 0%, transparent 100%);
}
.hero-stats { display: flex; gap: 40px; opacity: 0; animation: fadeUp 1s ease 1s forwards; }
.hero-stat { text-align: center; color: var(--white); }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 400; line-height: 1; }
.hero-stat-label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 5px; }

/* ── ABOUT (homepage strip) ── */
.about-strip {
  padding: 130px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
  width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden;
  background: linear-gradient(145deg, var(--greige-dark) 0%, var(--greige) 50%, #C9BFB3 100%);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -20px; left: -20px;
  width: 118px; height: 118px; background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2;
}
.about-badge-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; color: var(--white); line-height: 1; }
.about-badge-text { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.8); text-align: center; margin-top: 4px; }
.about-img-accent {
  position: absolute; bottom: -28px; right: -28px; width: 52%; aspect-ratio: 1;
  background: var(--greige); border: 7px solid var(--white); z-index: 2; overflow: hidden;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-body { font-size: 0.95rem; line-height: 1.9; color: var(--text-muted); margin: 28px 0; }
.about-body strong { color: var(--black); font-weight: 500; }
.about-quote { padding: 26px 30px; border-left: 3px solid var(--gold); background: var(--greige); margin: 32px 0; }
.about-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic; color: var(--black); line-height: 1.6; }
.about-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.about-value { padding: 7px 16px; border: 1px solid var(--greige-dark); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* ── PAGE: CHI SONO ── */
.chisono-bio {
  padding: 100px 60px; display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.chisono-photo { position: relative; }
.chisono-photo-main { width: 100%; aspect-ratio: 2/3; overflow: hidden; background: var(--greige); }
.chisono-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.chisono-photo-accent {
  position: absolute; bottom: -24px; right: -24px; width: 45%; aspect-ratio: 1;
  background: var(--greige-dark); border: 6px solid var(--white); z-index: 2; overflow: hidden;
}
.chisono-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.chisono-badge {
  position: absolute; top: -18px; left: -18px; width: 110px; height: 110px;
  background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 3;
}
.chisono-text p { font-size: 0.96rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 20px; }
.chisono-text p strong { color: var(--black); font-weight: 500; }
.chisono-quote { padding: 28px 32px; border-left: 3px solid var(--gold); background: var(--greige); margin: 36px 0; }
.chisono-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; color: var(--black); line-height: 1.65; }

.chisono-method {
  padding: 100px 60px; background: var(--greige);
}
.chisono-method-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px;
}
.method-card { padding: 48px 40px; background: var(--white); }
.method-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400;
  color: var(--greige-dark); line-height: 1; margin-bottom: 24px;
  transition: color .3s;
}
.method-card:hover .method-num { color: var(--gold); opacity: 0.5; }
.method-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 500; color: var(--black); margin-bottom: 14px; }
.method-desc { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); }

.chisono-values {
  padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.values-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.value-item { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-top: 1px solid var(--greige-dark); }
.value-item:last-child { border-bottom: 1px solid var(--greige-dark); }
.value-icon { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.value-text-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.value-text-desc { font-size: 0.88rem; line-height: 1.75; color: var(--text-muted); }
.values-visual { background: var(--black); padding: 60px 50px; }
.values-visual blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic;
  font-weight: 300; color: var(--white); line-height: 1.7;
}
.values-visual cite { display: block; margin-top: 24px; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-style: normal; }

/* ── PAGE: PORTFOLIO ── */
.portfolio-intro { padding: 80px 60px 0; display: flex; justify-content: space-between; align-items: flex-end; }
.portfolio-grid-full { padding: 60px 60px 100px; }
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}
.project-card { position: relative; overflow: hidden; cursor: pointer; }
.project-card.featured { grid-column: span 2; }
.project-thumb {
  width: 100%; aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--greige-dark);
}
.project-card.featured .project-thumb { aspect-ratio: 16/9; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-thumb-placeholder {
  width: 100%; height: 100%; 
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(26,26,26,0.3);
}
.project-card:hover .project-thumb img { transform: scale(1.04); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.85) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; padding: 28px;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-label { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.project-title-card { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--white); }

/* Single progetto */
.project-single { padding: 80px 60px; }
.project-single-hero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.project-main-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--greige); }
.project-main-img img { width: 100%; height: 100%; object-fit: cover; }
.project-meta-list { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
.project-meta-item { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--greige-dark); }
.project-meta-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.project-meta-val { font-size: 0.9rem; color: var(--black); font-weight: 500; }
.project-desc { font-size: 0.95rem; line-height: 1.9; color: var(--text-muted); }
.project-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.project-gallery-item { aspect-ratio: 4/3; overflow: hidden; background: var(--greige); }
.project-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-gallery-item:hover img { transform: scale(1.04); }

/* ── PAGE: SERVIZI ── */
.servizi-grid { padding: 80px 60px 40px; }
.servizi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.service-card { padding: 52px 44px; background: var(--greige); position: relative; overflow: hidden; transition: background .3s; }
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--greige-dark); }
.service-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 400; color: var(--greige-dark); line-height: 1; margin-bottom: 30px; transition: color .3s; }
.service-card:hover .service-num { color: var(--gold); opacity: 0.4; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.service-subtitle { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.service-desc { font-size: 0.9rem; line-height: 1.85; color: var(--text-muted); }

.servizi-processo { padding: 80px 60px; background: var(--black); }
.processo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 60px; }
.processo-step { padding: 44px 40px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.processo-step-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 400; color: var(--gold); opacity: 0.35; margin-bottom: 20px; }
.processo-step-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.processo-step-desc { font-size: 0.88rem; line-height: 1.85; color: rgba(255,255,255,0.5); }
.servizi-processo .section-title { color: var(--white); }
.servizi-processo .section-tag { color: var(--gold-light); }
.servizi-processo .section-tag::before { background: var(--gold-light); }

.differentiator { padding: 80px 60px; background: var(--greige); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 2.4vw, 2.6rem); font-weight: 400; color: var(--black); line-height: 1.25; }
.diff-title em { font-style: italic; color: var(--gold); }
.diff-points { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
.diff-point { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-top: 1px solid var(--greige-dark); }
.diff-point:last-child { border-bottom: 1px solid var(--greige-dark); }
.diff-icon { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
.diff-text { font-size: 0.92rem; line-height: 1.75; color: var(--text-muted); }
.diff-text strong { color: var(--black); font-weight: 500; }

/* ── PAGE: TESTIMONIANZE ── */
.testimonianze-grid { padding: 80px 60px 100px; }
.testi-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 60px; }
.testi-card { padding: 46px 38px; background: var(--greige); position: relative; }
.testi-card:nth-child(even) { background: var(--white); border: 1px solid var(--greige-dark); }
.testi-stars { position: absolute; top: 38px; right: 38px; color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; }
.testi-quote-mark { font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--greige-dark); line-height: 1; margin-bottom: 2px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-style: italic; color: var(--black); line-height: 1.75; margin-bottom: 26px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--greige-dark); overflow: hidden; flex-shrink: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.82rem; font-weight: 500; color: var(--black); }
.testi-detail { font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }

/* ── PAGE: FAQ ── */
.faq-section { padding: 80px 60px 100px; }
.faq-inner { max-width: 800px; margin: 60px auto 0; }
.faq-item { border-top: 1px solid var(--greige-dark); }
.faq-item:last-child { border-bottom: 1px solid var(--greige-dark); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left;
}
.faq-q-text { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; color: var(--black); line-height: 1.4; }
.faq-icon {
  width: 32px; height: 32px; border: 1px solid var(--greige-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--gold); font-size: 1.2rem; transition: all .3s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-a-text { font-size: 0.92rem; line-height: 1.9; color: var(--text-muted); padding-bottom: 26px; }

/* ── CTA BLOCK ── */
.cta-block {
  padding: 120px 60px; background: var(--greige); text-align: center;
}
.cta-block .section-tag { justify-content: center; }
.cta-block .section-tag::before { display: none; }
.cta-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400; line-height: 1.2; color: var(--black); max-width: 580px; margin: 0 auto 22px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-style: italic;
  color: var(--text-muted); max-width: 460px; margin: 0 auto 46px; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 38px;
  background: #25D366; color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; transition: all .3s;
}
.btn-wa svg { width: 17px; height: 17px; fill: white; }
.btn-wa:hover { background: #1EBF5A; transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 40px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); display: block; margin-bottom: 18px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.98rem; line-height: 1.7; color: rgba(255,255,255,.4); max-width: 280px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 0.72rem; transition: all .3s;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 0.86rem; transition: color .3s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 14px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 0.78rem; margin-top: 1px; }
.footer-contact-text { font-size: 0.86rem; color: rgba(255,255,255,.45); line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,.22); letter-spacing: 0.06em; }
.footer-credits { font-size: 0.7rem; color: rgba(255,255,255,.18); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .site-header, .site-header.scrolled { padding: 18px 28px; }
  .primary-nav, .nav-cta { display: none; }
  .hamburger-btn { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 150px 32px 70px; min-height: 80vh; }
  .hero-right { min-height: 55vw; }
  .about-strip, .chisono-bio, .chisono-values, .differentiator { grid-template-columns: 1fr; gap: 50px; padding: 70px 28px; }
  .servizi-cards, .processo-grid, .testi-cards, .chisono-method-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: span 2; }
  .portfolio-intro, .portfolio-grid-full, .servizi-grid, .faq-section, .testimonianze-grid { padding: 60px 28px; }
  .page-hero { padding: 130px 28px 60px; }
  .cta-block { padding: 80px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer { padding: 60px 28px 32px; }
  .project-single-hero { grid-template-columns: 1fr; }
  .project-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .projects-grid, .project-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
}

/* ── HAMBURGER (mobile nav) ── */
.hamburger-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger-btn span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: background .3s; }
.site-header.scrolled .hamburger-btn span,
.site-header.is-dark .hamburger-btn span { background: var(--black); }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--black); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); letter-spacing: 0.06em; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute; top: 28px; right: 28px; background: none; border: none;
  color: var(--white); font-size: 2rem; cursor: pointer;
}
