/* ============================================================
   Ju Moreira — Sindicatura & Lifestyle
   Sistema visual de luxo · @DicaDaJuMoreira
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&family=Pinyon+Script&display=swap');

:root {
  /* Paleta de luxo */
  --onyx: #14110f;
  --onyx-soft: #1c1815;
  --espresso: #221c18;
  --espresso-line: #2e2722;

  --ivory: #f4ede2;
  --ivory-dim: #cdc3b5;
  --ivory-soft: rgba(244, 237, 226, 0.62);

  --gold: #c6a15b;
  --gold-light: #e0c693;
  --gold-deep: #a8853f;

  --blush: #e3c4ba;
  --blush-soft: #f0dcd4;
  --plum: #2a1d27;

  /* Tipografia */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Pinyon Script', cursive;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1240px;
  --gutter: clamp(22px, 6vw, 96px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--onyx);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--onyx); }

/* ---------- Utilitários ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center::after {
  content: '';
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.center { justify-content: center; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: 0.005em; margin: 0; }
.display { font-size: clamp(46px, 8.5vw, 122px); font-weight: 500; letter-spacing: -0.01em; }
.h2 { font-size: clamp(34px, 5.2vw, 70px); }
.h3 { font-size: clamp(24px, 3vw, 36px); }
.script { font-family: var(--script); color: var(--gold-light); font-weight: 400; }
em, .italic { font-style: italic; }

.lead { font-size: clamp(18px, 2.2vw, 23px); line-height: 1.7; color: var(--ivory-soft); font-weight: 300; }

.section { padding-block: clamp(80px, 13vw, 168px); position: relative; }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 22px; }
.section-head p { margin-top: 22px; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 34px; border-radius: 2px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer; border: 1px solid transparent;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--onyx); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -18px rgba(198,161,91,.7); }
.btn-ghost { border-color: rgba(198,161,91,.45); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(198,161,91,.08); transform: translateY(-3px); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(20,17,15,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--espresso-line);
  padding-block: 15px;
}
.nav-brand { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: .02em; display: flex; align-items: baseline; gap: 9px; }
.nav-brand .mark { font-family: var(--script); font-size: 30px; color: var(--gold-light); line-height: 0; position: relative; top: 4px; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-dim); font-weight: 400; transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .35s ease; }
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-links .btn { padding: 11px 24px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ivory); cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 150px; padding-bottom: 90px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%; width: 60vw; height: 80vh;
  background: radial-gradient(circle, rgba(198,161,91,.13), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -25%; left: -15%; width: 50vw; height: 60vh;
  background: radial-gradient(circle, rgba(227,196,186,.08), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-name { font-size: clamp(58px, 11vw, 150px); line-height: .9; margin: 0; }
.hero-name .script { display: block; font-size: clamp(64px, 12vw, 168px); line-height: .8; }
.hero-name .sur { display: block; font-weight: 500; letter-spacing: -.01em; }
.hero-tag {
  margin: 30px 0 0; font-family: var(--sans); font-weight: 300;
  font-size: clamp(15px, 1.6vw, 18px); letter-spacing: .34em; text-transform: uppercase; color: var(--ivory-dim);
}
.hero-tag b { color: var(--gold); font-weight: 500; }
.hero-desc { margin-top: 26px; max-width: 460px; color: var(--ivory-soft); }
.hero-cta { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-portrait { position: relative; justify-self: center; }
.hero-portrait .frame {
  position: relative; width: min(430px, 80vw); aspect-ratio: 3072 / 4350; max-height: 80vh;
  border-radius: 215px 215px 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.4);
  box-shadow: 0 50px 100px -40px rgba(0,0,0,.8), inset 0 0 0 8px rgba(244,237,226,.03);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-portrait .arch-line {
  position: absolute; inset: -16px; border-radius: 236px 236px 22px 22px;
  border: 1px solid rgba(198,161,91,.22); pointer-events: none;
}
.hero-badge {
  position: absolute; left: -28px; bottom: 60px; z-index: 3;
  background: var(--espresso); border: 1px solid var(--espresso-line);
  border-radius: 4px; padding: 16px 22px; text-align: center;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,.8);
}
.hero-badge .num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--gold-light); line-height: 1; }
.hero-badge .lbl { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 6px; }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--espresso-line); background: var(--onyx-soft); overflow: hidden; }
.marquee-track { display: flex; gap: 56px; white-space: nowrap; padding-block: 22px; width: max-content; animation: slide 38s linear infinite; }
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ivory-dim); display: inline-flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: '✦'; color: var(--gold); font-style: normal; font-size: 13px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.about-photo { position: relative; }
.about-photo .pic { border-radius: 6px; overflow: hidden; border: 1px solid var(--espresso-line); box-shadow: 0 40px 80px -40px rgba(0,0,0,.7); }
.about-photo .pic img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-photo .tag-quote {
  position: absolute; right: -22px; bottom: -26px; max-width: 230px;
  background: var(--espresso); border: 1px solid var(--espresso-line); border-left: 2px solid var(--gold);
  padding: 20px 24px; border-radius: 4px; font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.35; color: var(--ivory);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.about-copy p { margin: 0 0 22px; color: var(--ivory-soft); }
.about-copy p.lead { color: var(--ivory); }
.about-copy .sign { margin-top: 30px; font-family: var(--script); font-size: 46px; color: var(--gold-light); line-height: .7; }
.about-copy .sign-role { font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 8px; }

/* ============================================================
   NÚMEROS
   ============================================================ */
.stats { background: var(--onyx-soft); border-block: 1px solid var(--espresso-line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--espresso-line); border: 1px solid var(--espresso-line); }
.stat { background: var(--onyx-soft); padding: clamp(30px, 4vw, 52px) clamp(20px, 3vw, 38px); text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(42px, 5.5vw, 68px); font-weight: 600; color: var(--ivory); line-height: 1; }
.stat .num span { color: var(--gold); }
.stat .lbl { margin-top: 14px; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ivory-dim); line-height: 1.5; }

/* ============================================================
   MÍDIA
   ============================================================ */
.media-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 64px; }
.media-card { flex: 1 1 240px; max-width: 286px; }
.media-card {
  background: var(--espresso); border: 1px solid var(--espresso-line); border-radius: 5px; overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s;
  display: flex; flex-direction: column;
}
.media-card:hover { transform: translateY(-8px); border-color: rgba(198,161,91,.45); }
.media-card .src { padding: 26px 24px 0; font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--gold-light); letter-spacing: .01em; }
.media-card .src small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--ivory-dim); font-weight: 400; margin-top: 6px; }
.media-card .headline { padding: 16px 24px 28px; font-size: 15.5px; line-height: 1.55; color: var(--ivory-soft); flex: 1; }
.media-card .headline::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); margin-bottom: 16px; }
.media-read { display: inline-flex; align-items: center; gap: 8px; margin: 0 24px 26px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); transition: gap .3s ease; }
.media-read::after { content: '\2192'; font-size: 14px; }
a.media-card:hover .media-read { gap: 14px; }

/* ============================================================
   NA TV
   ============================================================ */
.tv { background: var(--onyx-soft); border-block: 1px solid var(--espresso-line); }
.tv-feature { max-width: 920px; margin: 60px auto 0; }
.tv-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(198,161,91,.4);
  box-shadow: 0 50px 100px -45px rgba(0,0,0,.8), inset 0 0 0 6px rgba(244,237,226,.03);
}
.tv-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tv-feature figcaption { text-align: center; margin-top: 24px; }
.tv-show { display: block; font-family: var(--serif); font-size: 28px; color: var(--gold-light); letter-spacing: .01em; }
.tv-host { display: block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 8px; }

/* ============================================================
   PROGRAMA AUTORAL (Cozinhando com a Sindica)
   ============================================================ */
.band { background: var(--onyx-soft); border-block: 1px solid var(--espresso-line); }
.show-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.show-copy .h2 { margin-top: 22px; }
.show-copy p { margin: 24px 0 32px; }
.show-player { margin: 0; }

@media (max-width: 1024px) {
  .show-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PODCASTS
   ============================================================ */
.pod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; }
.pod-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--espresso-line); background: var(--onyx-soft);
  box-shadow: 0 30px 60px -35px rgba(0,0,0,.7);
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
}
.pod-frame:hover { border-color: rgba(198,161,91,.5); transform: translateY(-5px); }
.pod-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   PALESTRAS
   ============================================================ */
.talks { background: linear-gradient(180deg, var(--onyx), var(--plum) 240%); }
.talks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px; }
.talk {
  border: 1px solid var(--espresso-line); border-radius: 6px; padding: 40px 34px; position: relative;
  background: rgba(28,24,21,.5); transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, background .4s;
}
.talk:hover { transform: translateY(-8px); border-color: rgba(198,161,91,.5); background: rgba(34,28,24,.8); }
.talk .idx { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--gold); }
.talk .cat { margin-top: 22px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ivory-dim); }
.talk h3 { margin-top: 12px; font-size: 28px; line-height: 1.12; }
.talk p { margin: 18px 0 0; font-size: 15px; color: var(--ivory-soft); }
.talks-events { margin-top: clamp(56px, 7vw, 90px); text-align: center; }
.talks-count { font-family: var(--serif); font-size: clamp(23px, 3vw, 34px); color: var(--ivory); line-height: 1.3; }
.talks-count .num { color: var(--gold-light); font-weight: 600; }
.events-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.events-row span {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivory-dim); border: 1px solid var(--espresso-line); border-radius: 40px; padding: 11px 22px;
  transition: border-color .3s ease, color .3s ease, transform .3s ease;
}
.events-row span:hover { border-color: rgba(198,161,91,.5); color: var(--gold-light); transform: translateY(-2px); }

/* ============================================================
   PARCERIAS
   ============================================================ */
.brands { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(28px, 5vw, 70px); margin-top: 56px; align-items: center; }
.brands .b { font-family: var(--serif); font-size: clamp(22px, 3vw, 32px); font-weight: 600; color: var(--ivory-dim); letter-spacing: .01em; transition: color .35s, transform .35s; }
.brands .b:hover { color: var(--gold-light); transform: translateY(-3px); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.quotes { background: var(--onyx-soft); border-block: 1px solid var(--espresso-line); }
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 60px; }
.quote { border: 1px solid var(--espresso-line); border-radius: 6px; padding: 42px 40px; background: var(--espresso); position: relative; }
.quote .mark { font-family: var(--serif); font-size: 78px; line-height: .6; color: rgba(198,161,91,.3); height: 30px; display: block; }
.quote p { font-family: var(--serif); font-size: clamp(19px, 2.1vw, 23px); font-style: italic; line-height: 1.5; color: var(--ivory); margin: 14px 0 26px; }
.quote .by { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; }
.quote .by::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

/* ============================================================
   PÚBLICO / ALCANCE
   ============================================================ */
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.reach-list { list-style: none; padding: 0; margin: 36px 0 0; }
.reach-list li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--espresso-line); }
.reach-list li:first-child { border-top: 1px solid var(--espresso-line); }
.reach-list .city { font-family: var(--serif); font-size: 22px; }
.reach-list .bar { flex: 1; height: 3px; background: var(--espresso-line); border-radius: 3px; overflow: hidden; margin: 0 8px; }
.reach-list .bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); border-radius: 3px; }
.reach-list .pct { font-family: var(--serif); font-size: 20px; color: var(--gold-light); min-width: 56px; text-align: right; }
.reach-content { display: grid; gap: 14px; }
.reach-content .ct {
  border: 1px solid var(--espresso-line); border-radius: 4px; padding: 18px 24px; background: rgba(28,24,21,.5);
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ivory);
  display: flex; align-items: center; gap: 16px; transition: border-color .35s, transform .35s;
}
.reach-content .ct:hover { border-color: rgba(198,161,91,.45); transform: translateX(6px); }
.reach-content .ct::before { content: '✦'; color: var(--gold); font-style: normal; font-size: 13px; }

/* ============================================================
   GALERIA (bastidores)
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; }
.gallery figure { margin: 0; border-radius: 6px; overflow: hidden; border: 1px solid var(--espresso-line); aspect-ratio: 3/4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.gallery figure:hover img { transform: scale(1.06); }

/* ============================================================
   CONTATO
   ============================================================ */
.contact { background: linear-gradient(160deg, var(--plum), var(--onyx) 70%); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 70vw; height: 60vh; background: radial-gradient(circle, rgba(198,161,91,.15), transparent 62%); pointer-events: none;
}
.contact-inner { text-align: center; position: relative; z-index: 2; max-width: 780px; margin-inline: auto; }
.contact .h2 { margin: 22px 0; }
.contact .email {
  display: inline-block; margin-top: 14px; font-family: var(--serif); font-size: clamp(24px, 4vw, 44px);
  color: var(--gold-light); border-bottom: 1px solid rgba(198,161,91,.4); padding-bottom: 6px; transition: border-color .35s, color .35s;
}
.contact .email:hover { color: var(--ivory); border-color: var(--gold); }
.contact-cta { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--espresso-line); padding-block: 56px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-brand { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.footer-brand .mark { font-family: var(--script); color: var(--gold-light); font-size: 32px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 44px; height: 44px; border: 1px solid var(--espresso-line); border-radius: 50%;
  display: grid; place-items: center; color: var(--ivory-dim); transition: all .35s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-legal { width: 100%; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--espresso-line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; letter-spacing: .04em; color: var(--ivory-dim); }
.footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-portrait { order: -1; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-cta, .hero-desc { margin-inline: auto; }
  .hero-desc { text-align: center; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .talks-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; }
  .about-grid, .reach-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 440px; margin-inline: auto; }
  .quotes-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 26px; background: var(--espresso); padding: 40px; transform: translateX(100%);
    transition: transform .45s cubic-bezier(.2,.7,.2,1); border-left: 1px solid var(--espresso-line); }
  .nav-links.open { transform: none; }
  .nav-toggle { display: block; z-index: 60; }
  .media-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -26px; }
  .about-photo .tag-quote { position: static; max-width: none; margin-top: 18px; }
}
