/* ============================================================
   Feel Fully You - Main Stylesheet
   Fonts: Poppins (display) + Inter (body)
   ============================================================ */

:root {
  --cream: #fefcfa;
  --cream-2: #f6f4f1;
  --paper: #fdfbf8;
  --ink: #1c1714;
  --brown: #5d4a33;
  --gold: #a88538;
  --gold-deep: #99680c;
  --gold-soft: #b4a074;
  --gold-pale: #ddc98e;
  --teal: #0d3535;
  --teal-deep: #061a1a;
  --blue: #d8dfe1;
  --line: #e3dccf;
  --line-dark: #1d3a39;
  --max: 1140px;
  --display: 'Poppins', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --t-xs: 0.78rem;
  --t-sm: 0.94rem;
  --t-base: 1.0625rem;
  --t-md: 1.2rem;
  --t-lg: 1.5rem;
  --t-2xl: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--body);
  font-size: var(--t-base);
  line-height: 1.62;
  letter-spacing: -.003em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--gold); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { max-width: 64ch; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }
section { position: relative; }

.eyebrow {
  font-family: var(--body);
  font-size: var(--t-xs);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

h1, h2, h3 { font-family: var(--display); color: var(--ink); font-weight: 700; }
h1, h2 { line-height: 1.06; letter-spacing: -.022em; }
h2 { font-size: clamp(2rem, 4.8vw, var(--t-2xl)); margin-bottom: 24px; }
h3 { font-size: var(--t-lg); line-height: 1.18; letter-spacing: -.015em; font-weight: 600; }

.gold { color: var(--gold-deep); }
em { font-style: italic; }
strong { font-weight: 700; color: var(--ink); }

/* Reveal animations: JS adds .in class */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* Stagger siblings */
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: var(--t-sm);
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: 2px;
  background: var(--gold);
  color: #fff;
  transition: transform .25s cubic-bezier(.25, .46, .45, .94), background .25s;
}
.btn:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
}
.btn.ghost:hover { background: var(--gold); color: #fff; }
.btn.light { background: var(--gold-pale); color: var(--teal-deep); }
.btn.light:hover { background: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--teal);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar .brand b { color: var(--gold-pale); }
.topbar nav { display: flex; gap: 26px; align-items: center; }
.topbar nav a {
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
  transition: color .2s;
}
.topbar nav a:hover { color: var(--gold-pale); }
.topbar nav a.btn {
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: 2px;
  font-weight: 600;
}
.topbar nav a.btn:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* Dropdown */
.more-wrap { position: relative; }
.more-wrap > button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
  font-family: var(--body);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  transition: color .2s;
}
.more-wrap > button:hover { color: var(--gold-pale); }
.more-wrap > button svg { transition: transform .2s; }
.more-wrap.open > button svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--teal-deep);
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  min-width: 180px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 9999;
}
.more-wrap.open .dropdown { opacity: 1; pointer-events: all; transform: none; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--cream);
  font-weight: 500;
  transition: background .15s, color .15s;
}
.dropdown a:hover { background: var(--teal); color: var(--gold-pale); }

/* Desktop nav hide items below 860px */
@media (max-width: 860px) {
  .topbar nav > a:not(.btn) { display: none; }
  .topbar .more-wrap { display: none; }
  .topbar nav > .btn { display: none; }
  .dropdown { position: fixed; top: 56px; right: 16px; }
}

/* ---- Hamburger ---- */
.ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--cream);
}
.ham svg { display: block; }
@media (max-width: 860px) { .ham { display: block; } }

/* ---- Mobile nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--teal);
  z-index: 9998;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.mobile-nav a {
  display: block;
  padding: 13px 28px;
  font-size: 15px;
  color: var(--cream);
  font-weight: 500;
  font-family: var(--body);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a.btn-mob {
  margin: 14px 28px 6px;
  display: block;
  background: var(--gold);
  color: #fff;
  padding: 12px 20px;
  border-radius: 2px;
  font-weight: 600;
  text-align: center;
  border: none;
}
.mobile-nav.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding-top: 64px;
  background: var(--teal);
  color: var(--cream);
}
.hero .bg-img { display: block; width: 100%; height: auto; }
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,26,26,.74) 40%, rgba(6,26,26,.08) 100%);
}
.hero .copy {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  padding: 0 56px;
  max-width: 580px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero h1 .it { font-style: italic; color: var(--gold-pale); font-weight: 600; }
.hero .sub {
  font-size: var(--t-md);
  color: #d7d0c4;
  margin: 0 0 34px;
  max-width: 38ch;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero .copy {
    position: relative;
    top: auto; left: auto;
    transform: none;
    padding: 40px 28px;
    max-width: 100%;
  }
}

/* ============================================================
   RECOGNITION HOOK
   ============================================================ */
.hook {
  background: var(--cream);
  padding: 72px 28px 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.hook .inner { max-width: 620px; margin: 0 auto; }
.hook .lead-q {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hook .body-q {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--brown);
  line-height: 1.7;
  max-width: 44ch;
  margin: 0 auto;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--teal);
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stat-strip .eyebrow { color: var(--gold-pale); letter-spacing: .18em; }
.stat-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: -.01em;
}

/* ============================================================
   THREE DOORWAYS
   ============================================================ */
.doors { padding: 96px 0; background: var(--cream); }
.doors .head { text-align: center; max-width: 30ch; margin: 0 auto 50px; }
.door-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.door {
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  transition: filter .3s;
}
.door:hover { filter: brightness(1.06); }
.door .label {
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.door .pain {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.32;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.door .pain:last-of-type { margin-bottom: 28px; }
.door .btn { margin-top: auto; align-self: flex-start; }

.door.her { background: var(--blue); border-top: 4px solid var(--gold); }
.door.her .label { color: var(--gold-deep); }
.door.her .pain { color: var(--ink); }
.door.her .btn { background: var(--gold); color: #fff; }

.door.both { background: var(--gold); border-top: 4px solid #fff; }
.door.both .label { color: #fff; }
.door.both .pain { color: #fef8ec; }
.door.both .btn { background: #fff; color: var(--gold); }

.door.men { background: var(--teal); border-top: 4px solid var(--gold); }
.door.men .label { color: var(--gold-pale); }
.door.men .pain { color: #c8c0b4; }
.door.men .btn { background: var(--gold); color: #fff; }

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

/* ============================================================
   FREE GIFT NUDGE
   ============================================================ */
.gift-nudge {
  background: var(--gold);
  padding: 18px 28px;
  text-align: center;
}
.gift-nudge .label { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 500; }
.gift-nudge a {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.5);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 0; background: var(--paper); border-top: 1px solid var(--line); }
.about .grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: stretch; }
.about .photo {
  background: var(--cream-2);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about .photo img { width: 100%; height: auto; display: block; object-fit: contain; object-position: bottom center; }
.about .copy { padding: 88px 56px; }
.about h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
.about h2 .it { font-style: italic; color: var(--gold-deep); }
.about p { color: var(--brown); margin: 18px 0; max-width: 60ch; }
.about .methods { display: flex; flex-direction: column; gap: 2px; margin: 24px 0; border-top: 1px solid var(--line); }
.about .m { padding: 16px 0; border-bottom: 1px solid var(--line); }
.about .m b { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.about .m span { color: var(--brown); }
.about .close {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -.015em;
  margin-top: 24px;
  line-height: 1.25;
}
.about .stand-q {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
  line-height: 1.35;
  max-width: 28ch;
  margin-bottom: 28px;
  letter-spacing: -.025em;
}

@media (max-width: 820px) {
  .about .grid { grid-template-columns: 1fr; }
  .about .photo { min-height: 380px; order: -1; }
  .about .copy { padding: 60px 28px; }
}

/* ============================================================
   CARDS PRODUCT
   ============================================================ */
.cards-sec { padding: 0; background: var(--teal); color: var(--cream); border-top: 1px solid var(--line-dark); }
.cards-sec .grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.cards-sec .photo { background-size: cover; background-position: center; min-height: 520px; }
.cards-sec .copy { padding: 80px 56px; }
.cards-sec .eyebrow { color: var(--gold-pale); }
.cards-sec h2 { color: #fff; margin: 14px 0 18px; }
.cards-sec h2 .it { font-style: italic; color: var(--gold-pale); }
.cards-sec .track { font-size: var(--t-md); color: #d7d0c4; margin-bottom: 18px; max-width: 42ch; line-height: 1.5; }
.cards-sec .one { font-family: var(--display); font-style: italic; font-weight: 600; color: #fff; font-size: 1.2rem; margin-bottom: 22px; }
.cards-sec .meta { font-size: var(--t-sm); color: var(--gold-pale); margin-bottom: 8px; }
.cards-sec .price { color: #d7d0c4; margin-bottom: 28px; }

@media (max-width: 820px) {
  .cards-sec .grid { grid-template-columns: 1fr; }
  .cards-sec .photo { min-height: 340px; }
  .cards-sec .copy { padding: 56px 28px; }
}

/* ============================================================
   PRESS
   ============================================================ */
.press { padding: 72px 0; background: var(--gold); text-align: center; }
.press .eyebrow { margin-bottom: 36px; }
.press .logos { display: flex; flex-wrap: wrap; gap: 28px 44px; align-items: center; justify-content: center; }
.press .logos img {
  height: 32px; width: auto; max-width: 130px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(.75);
  transition: filter .3s;
}
.press .logos img:hover { filter: brightness(0) invert(1) opacity(1); }

/* ============================================================
   SUBSTACK
   ============================================================ */
.substack-sec { padding: 0; background: var(--cream); border-top: 1px solid var(--line); }
.substack-sec .grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.substack-sec .feature {
  position: relative;
  background: #0a0a0a;
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: block;
}
.substack-sec .feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.15), transparent 55%);
}
.substack-sec .copy { padding: 84px 56px; }
.substack-sec h2 .it { font-style: italic; color: var(--gold-deep); }
.substack-sec .when { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.3rem; margin: 6px 0 18px; }
.substack-sec p { color: var(--brown); margin-bottom: 14px; }
.substack-sec .starts {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.substack-sec .starts .t {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.substack-sec .starts .t span {
  display: block;
  font-family: var(--body);
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  font-size: .92rem;
  margin-top: 3px;
}

@media (max-width: 820px) {
  .substack-sec .grid { grid-template-columns: 1fr; }
  .substack-sec .feature { min-height: 300px; order: -1; }
  .substack-sec .copy { padding: 56px 28px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { padding: 96px 0; background: var(--teal); color: var(--cream); }
.testi .eyebrow { color: var(--gold-pale); text-align: center; display: block; margin-bottom: 50px; }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.quote { border-radius: 6px; padding: 36px 32px; position: relative; }
.quote .mark { font-family: var(--display); font-weight: 700; font-size: 3rem; line-height: .6; height: 26px; }
.quote .lead { font-family: var(--display); font-weight: 600; font-style: italic; font-size: 1.18rem; line-height: 1.32; margin: 6px 0 14px; letter-spacing: -.01em; }
.quote p { font-size: .98rem; margin-bottom: 18px; }
.quote .who { font-size: .88rem; font-weight: 500; letter-spacing: .02em; }

.quote:nth-child(1) { background: var(--blue); }
.quote:nth-child(1) .mark { color: var(--gold-deep); }
.quote:nth-child(1) .lead { color: var(--ink); }
.quote:nth-child(1) p { color: var(--brown); }
.quote:nth-child(1) .who { color: var(--gold-deep); }

.quote:nth-child(2) { background: #99680c; }
.quote:nth-child(2) .mark { color: #fff; }
.quote:nth-child(2) .lead { color: #fff; }
.quote:nth-child(2) p { color: #f5e8d4; }
.quote:nth-child(2) .who { color: #ffe0a0; }

.quote:nth-child(3) { background: var(--gold-soft); }
.quote:nth-child(3) .mark { color: #fff; }
.quote:nth-child(3) .lead { color: #fff; }
.quote:nth-child(3) p { color: #f5f0e8; }
.quote:nth-child(3) .who { color: #fff; }

.quote:nth-child(4) { background: var(--gold); }
.quote:nth-child(4) .mark { color: #fff; }
.quote:nth-child(4) .lead { color: #fff; }
.quote:nth-child(4) p { color: #f5ecd4; }
.quote:nth-child(4) .who { color: #fff; }

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

/* ============================================================
   PODCAST
   ============================================================ */
.pod { padding: 0; background: var(--cream); border-top: 1px solid var(--line); }
.pod .grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; }
.pod .copy { padding: 90px 56px 90px 0; }
.pod .photo {
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: var(--cream-2);
  min-height: 520px;
  margin-right: -28px;
}
.pod .eyebrow { margin-bottom: 10px; }
.pod h2 .it { font-style: italic; color: var(--gold-deep); }
.pod .line {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.34;
  margin: 18px 0;
  letter-spacing: -.01em;
}
.pod .line .hl { color: var(--gold-deep); font-style: italic; }
.pod p { color: var(--brown); margin-bottom: 16px; }

@media (max-width: 820px) {
  .pod .grid { grid-template-columns: 1fr; }
  .pod .photo { min-height: 340px; margin: 0 -28px 0 0; order: -1; }
  .pod .copy { padding: 60px 28px; }
}

/* ============================================================
   THE FINAL TOUCH
   ============================================================ */
.final-touch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-top: 1px solid var(--line);
}
.final-touch .ft-image { overflow: hidden; }
.final-touch .ft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.final-touch .ft-copy {
  background: var(--teal-deep);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.final-touch .ft-eyebrow {
  font-size: 0.75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  margin-bottom: 16px;
}
.final-touch .ft-copy h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.final-touch .ft-copy p { color: #c8c0b4; line-height: 1.78; margin-bottom: 8px; max-width: 46ch; }
.final-touch .ft-copy p.em { font-style: italic; margin-bottom: 32px; }
.final-touch .ft-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }

@media (max-width: 820px) {
  .final-touch { grid-template-columns: 1fr; }
  .final-touch .ft-image { min-height: 280px; }
  .final-touch .ft-copy { padding: 48px 28px; }
}

/* ============================================================
   LONG TESTIMONIALS
   ============================================================ */
.longtesti { padding: 96px 0; background: var(--cream-2); border-top: 1px solid var(--line); }
.longtesti .eyebrow { text-align: center; display: block; margin-bottom: 46px; }
.lt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.lt { border-radius: 6px; padding: 36px 32px; }
.lt .mark { font-family: var(--display); font-weight: 700; font-size: 2.6rem; line-height: .6; height: 22px; }
.lt .lead { font-family: var(--display); font-weight: 600; font-size: 1.08rem; line-height: 1.3; margin: 6px 0 14px; letter-spacing: -.01em; }
.lt p { font-size: .95rem; margin-bottom: 16px; }
.lt .who { font-size: .86rem; font-weight: 600; }

.lt:nth-child(1) { background: #99680c; }
.lt:nth-child(1) .mark { color: #fff; }
.lt:nth-child(1) .lead { color: #fff; }
.lt:nth-child(1) p { color: #f5e8d4; }
.lt:nth-child(1) .who { color: #ffe0a0; }

.lt:nth-child(2) { background: var(--blue); }
.lt:nth-child(2) .mark { color: var(--gold-deep); }
.lt:nth-child(2) .lead { color: var(--ink); }
.lt:nth-child(2) p { color: var(--brown); }
.lt:nth-child(2) .who { color: var(--gold-deep); }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gold);
  color: #fff;
  padding: 22px 32px;
  font-size: 13px;
}
.site-footer .inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -.01em;
}
.site-footer .links {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-footer .links a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,.5); }
.site-footer .links a.quiet { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer .links a.quiet:hover { color: #fff; }
.site-footer .social { display: flex; gap: 14px; align-items: center; }
.site-footer .social a { color: rgba(255,255,255,.85); display: flex; align-items: center; transition: color .2s; }
.site-footer .social a:hover { color: #fff; }
.site-footer .social svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
