/* Studio Brigo - Styles esterni */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2a3a;
  --navy-light: #243547;
  --gold: #b8933f;
  --gold-light: #d4a94e;
  --cream: #f8f5ef;
  --cream-dark: #ede9e0;
  --text: #2c2c2a;
  --text-muted: #666660;
  --white: #ffffff;
  --border: rgba(26,42,58,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-brand-monogram {
  width: 38px; height: 38px; border-radius: 4px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav-brand-monogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nav-brand-text { color: var(--white); font-size: 15px; font-weight: 300; letter-spacing: 0.5px; }
.nav-brand-text strong { font-weight: 700; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  text-decoration: none; font-size: 13px; font-weight: 400;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--white);
  padding: 8px 20px; border-radius: 3px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 4px 0; border-radius: 1px; transition: 0.3s; }

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 55%, #1d3347 100%);
  display: flex; align-items: center;
  padding: 64px 2.5rem 0;
  position: relative; overflow: hidden;
}
.hero-pattern {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(184,147,63,0.03) 0, rgba(184,147,63,0.03) 1px, transparent 1px, transparent 50%);
  background-size: 40px 40px;
}
.hero-inner { position: relative; max-width: 1100px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 5rem; }
.hero-text { flex: 1 1 500px; }
.hero-banner {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,147,63,0.15);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-light); }
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-text h1 em { color: var(--gold-light); font-style: italic; }
.hero-text p {
  color: rgba(255,255,255,0.72); font-size: 17px; font-weight: 300;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 3px;
  text-decoration: none; font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 13px 32px; border-radius: 3px;
  text-decoration: none; font-size: 14px; font-weight: 400;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold-light); background: rgba(184,147,63,0.08); }
.hero-card {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 2rem;
}
.hero-stat { margin-bottom: 1.5rem; }
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--gold-light); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 300; letter-spacing: 0.5px; }
.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 1.2rem 0; }

/* ─── SECTION BASE ─── */
section { scroll-margin-top: 64px; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.8rem;
}
.section-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle { color: var(--text-muted); font-size: 16px; font-weight: 300; max-width: 560px; }

/* ─── SERVIZI ─── */
#servizi { background: var(--white); }
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 3rem;
}
.servizio-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.servizio-card:hover { background: var(--cream); }
.servizio-icon {
  width: 44px; height: 44px; border-radius: 6px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.servizio-icon svg { width: 22px; height: 22px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.servizio-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.servizio-card p { font-size: 13.5px; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ─── STORIA ─── */
#storia { background: var(--cream); }
.storia-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 3rem; }
.storia-text p { color: var(--text); font-size: 15.5px; font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
.storia-text p:last-child { margin-bottom: 0; }
.storia-text strong { font-weight: 700; color: var(--navy); }
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--cream-dark); }
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -1.5rem; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); transform: translateX(-5px);
  border: 2px solid var(--cream);
}
.timeline-year { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.timeline-item h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-item p { font-size: 13.5px; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ─── TEAM ─── */
#team { background: var(--cream); }
.link{
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.05);
}

.team-avatar {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}
.team-avatar1 {
  width: 100%;
  height: 370px;
  object-fit: cover;
  display: block;
}

.team-card-content {
  padding: 1.6rem;
}

.team-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.team-role {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 0;
}

/* Card solitaria finale */
.team-solo-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.team-solo-row .team-card {
  width: calc(50% - 0.5rem);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-solo-row .team-card {
    width: calc(50% - 0.75rem);
  }
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-solo-row .team-card {
    width: 100%;
  }
}

/* ─── RECENSIONI ─── */
#recensioni { background: var(--navy); }

#recensioni .section-eyebrow { color: var(--gold-light); }
#recensioni .section-eyebrow::before { background: var(--gold-light); }
#recensioni h2.section-title { color: var(--white); }
#recensioni .section-subtitle { color: rgba(255,255,255,0.55); }
.recensioni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.recensione-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
}
.recensione-stars { color: var(--gold-light); font-size: 15px; letter-spacing: 2px; margin-bottom: 1rem; }
.recensione-testo { color: rgba(255,255,255,0.82); font-size: 14.5px; font-style: italic; font-weight: 300; line-height: 1.75; margin-bottom: 1.25rem; }
.recensione-autore { display: flex; align-items: center; gap: 10px; }
.recensione-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}
.recensione-nome { font-size: 13px; font-weight: 700; color: var(--white); }
.recensione-badge { font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 300; }

/* ─── CONTATTI ─── */
#contatti { background: var(--white); }
.contatti-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contatti-info h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 1.2rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--cream-dark); }
.contatti-item { display: flex; gap: 12px; margin-bottom: 1rem; }
.contatti-item-icon {
  width: 36px; height: 36px; border-radius: 5px;
  background: var(--cream); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contatti-item-icon svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contatti-item-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.contatti-item-val { font-size: 14.5px; color: var(--text); font-weight: 400; }
.contatti-item-val a { color: var(--navy); text-decoration: none; }
.contatti-item-val a:hover { color: var(--gold); }
.orari-table { width: 100%; font-size: 13.5px; margin-top: 0.5rem; }
.orari-table td { padding: 4px 0; }
.orari-table td:first-child { color: var(--text-muted); font-weight: 400; width: 50%; }
.orari-table td:last-child { font-weight: 700; color: var(--navy); }
.map-placeholder {
  width: 100%; height: 180px;
  background: var(--cream); border-radius: 6px;
  border: 1.5px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1.5rem;
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ─── FORM ─── */
.form-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--cream-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 14.5px; color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 300; }
.form-note a { color: var(--navy); }
.contact-cta-box {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: rgba(184,147,63,0.1);
  border: 1px solid rgba(184,147,63,0.18);
  border-radius: 10px;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-cta-box p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  flex: 1 1 240px;
}
.contact-cta-box .btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contact-cta-box .btn-secondary:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}
.contact-cta-box .btn-secondary::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}
.contact-cta-box .btn-secondary:hover::after {
  transform: translateX(3px);
}
.btn-form {
  width: 100%;
  background: var(--navy); color: var(--white);
  border: none; padding: 13px 24px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-form:hover { background: var(--gold); }
.form-success {
  display: none;
  background: #eaf3de; border: 1.5px solid #97c459;
  border-radius: 6px; padding: 1.2rem 1.5rem;
  font-size: 14.5px; color: #3b6d11; font-weight: 400;
  margin-top: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: #111d28;
  padding: 3rem 2.5rem 2rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 13.5px; font-weight: 300; line-height: 1.7; margin-top: 0.8rem; }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: var(--white); font-weight: 600;
}
.footer-brand-name span { color: var(--gold-light); }
.footer-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13.5px; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col p { color: rgba(255,255,255,0.6); font-size: 13.5px; font-weight: 300; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; font-weight: 300; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 12px; text-decoration: none; font-weight: 300; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #111d28;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
#cookie-banner p { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 300; }
#cookie-banner a { color: var(--gold-light); }
.cookie-btn-accept {
  background: var(--gold); color: var(--white);
  border: none; padding: 8px 20px; border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 13px; font-weight: 700; cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.25s ease;
}
.cookie-btn-accept:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── ANIMAZIONI E SCROLL REVEAL ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
  will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#home .hero-pattern {
  opacity: 0;
  transform: translateY(-18px) scale(1.03);
  transition: opacity 0.95s ease-out, transform 0.95s ease-out;
}
#home .hero-pattern.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

nav {
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}
nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-links a,
.nav-cta,
.hamburger {
  transition: transform 0.25s ease, color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover,
.nav-cta:hover,
.hamburger:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-secondary,
.btn-form {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-form:hover {
  transform: translateY(-2px);
}

.servizio-card,
.team-card,
.timeline-item,
.recensione-card,
.contatti-item,
.form-group,
.map-placeholder,
.footer-grid > * {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.servizio-card:hover,
.team-card:hover,
.timeline-item:hover,
.recensione-card:hover,
.contatti-item:hover,
.form-group:hover,
.map-placeholder:hover,
.footer-grid > *:hover {
  transform: translateY(-3px);
}

.team-photo {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.team-photo:hover {
  transform: scale(1.01);
}

input,
select,
textarea {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,147,63,0.12);
  transform: translateY(-1px);
  outline: none;
}

.map-placeholder iframe {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.map-placeholder:hover iframe {
  transform: scale(1.01);
  opacity: 0.96;
}

@keyframes float-hero {
  0%, 100% { transform: translateY(0) scale(1.03); }
  50% { transform: translateY(-8px) scale(1.04); }
}

#home .hero-pattern {
  animation: float-hero 12s ease-in-out infinite alternate;
}

#mobile-menu {
  display: flex;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--navy-light);
  padding: 1.5rem;
  flex-direction: column; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}
#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 3rem; text-align: center; }
  .hero-card { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-divider { display: none; }
  .hero-ctas { justify-content: center; }
  .storia-layout { grid-template-columns: 1fr; }
  .contatti-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  nav { padding: 0 1.5rem; }
}
@media (max-width: 600px) {
  .section-inner { padding: 3.5rem 1.5rem; }
  .hero-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  #home { padding: 64px 1.5rem 0; }
}

/* ─── MOBILE MENU ─── */
#mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--navy-light);
  padding: 1.5rem;
  flex-direction: column; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 15px; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#mobile-menu a:last-child { border-bottom: none; }

