/* ============================================================
   Cukrella Nutrition — dark editorial system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Prata&family=Inter:wght@300;400;500&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --bg:        #080604;
  --bg-2:      #14100A;   /* darker contrast section */
  --card:      #1C1610;
  --card-2:    #271F16;
  --cream:     #FBF7EE;
  --cream-dim: #CFC6B4;
  --muted:     #9C9080;
  --gold:      #E0B978;
  --gold-soft: #F0D6A2;
  --bronze:    #A37E4E;
  --line:      rgba(224,185,120,0.34);
  --line-soft: rgba(251,247,238,0.12);

  --serif: 'Playfair Display', Georgia, serif;
  --serif-w: 500;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;
  --caps:  'Montserrat', system-ui, sans-serif;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 80px);
}

/* heading font switcher (set data-font on <html>) */
html[data-font="playfair"]  { --serif: 'Playfair Display', Georgia, serif; --serif-w: 500; }
html[data-font="cormorant"] { --serif: 'Cormorant Garamond', Georgia, serif; --serif-w: 600; }
html[data-font="garamond"]  { --serif: 'EB Garamond', Georgia, serif; --serif-w: 600; }
html[data-font="prata"]     { --serif: 'Prata', Georgia, serif; --serif-w: 400; }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ---------- shared primitives ---------- */

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

.eyebrow {
  font-family: var(--caps);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.dim { color: var(--bronze); }

h1, h2, h3 { font-family: var(--serif); font-weight: var(--serif-w); line-height: 1.08; }

.section-title {
  font-family: var(--serif);
  font-weight: var(--serif-w);
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 0.005em;
  color: var(--cream);
}

.section-title em { font-style: italic; color: var(--gold-soft); }

.lead { color: var(--cream-dim); font-size: clamp(16px, 1.5vw, 19px); font-weight: 300; }

section { position: relative; }

.pad { padding: clamp(72px, 11vw, 150px) 0; }

/* divider dots */
.dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); }

.hr-gold {
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--caps);
  font-weight: 400;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #181009;
  font-weight: 500;
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-outline {
  background: var(--card-2);
  border-color: var(--line);
  color: var(--cream);
  font-weight: 500;
}
.btn-outline:hover { background: #34291b; border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn-arrow { transition: transform .35s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- hero service orbs ---------- */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 22px;
  max-width: 384px;
}
.svc-orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  width: 100px;
  color: var(--cream-dim);
  cursor: pointer;
}
.svc-orb .orb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(224,185,120,0.16), rgba(28,22,16,0.9) 70%);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(251,247,238,0.06), 0 10px 26px rgba(0,0,0,0.4);
  transition: transform .42s cubic-bezier(.2,.7,.2,1), background .42s, color .42s, border-color .42s, box-shadow .42s;
}
.svc-orb .orb::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  transition: border-color .42s;
}
.svc-orb .orb svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.svc-orb .orb-label {
  font-family: var(--caps);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.35;
  transition: color .3s;
}
.svc-orb:hover .orb {
  transform: translateY(-6px);
  background: var(--gold);
  color: #181009;
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(224,185,120,0.34);
}
.svc-orb:hover .orb::after { border-color: rgba(24,16,9,0.28); }
.svc-orb:hover .orb-label { color: var(--gold-soft); }

/* ---------- image placeholder ---------- */
.img-ph {
  position: relative;
  background-color: var(--card);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(201,169,110,0.05) 0 1px,
    transparent 1px 11px
  );
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-ph .ph-label {
  font-family: 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--bronze);
  text-transform: uppercase;
  text-align: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: rgba(13,11,9,0.4);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gut);
  transition: background .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,11,9,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
  color: var(--cream);
  line-height: 1;
}
.brand .b-mark { display: none; }
.brand .b-name { font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: 0.02em; }
.brand .b-sub  { font-family: var(--serif); font-weight: 500; font-size: 0.74em; color: var(--gold); letter-spacing: 0.03em; }

/* logo variant: CAPS wordmark */
html[data-logo="caps"] .brand { align-items: center; gap: 11px; }
html[data-logo="caps"] .brand .b-name { font-family: var(--caps); font-weight: 600; font-size: 17px; letter-spacing: 0.26em; text-transform: uppercase; }
html[data-logo="caps"] .brand .b-sub  { font-family: var(--caps); font-weight: 500; font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); border-left: 1px solid var(--line); padding-left: 11px; }

/* logo variant: monogram */
html[data-logo="mono"] .brand { align-items: center; gap: 11px; }
html[data-logo="mono"] .brand .b-mark { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--gold); }
html[data-logo="mono"] .brand .b-name { font-family: var(--caps); font-weight: 600; font-size: 14px; letter-spacing: 0.24em; text-transform: uppercase; }
html[data-logo="mono"] .brand .b-sub  { display: none; }
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--cream); cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--gut) 90px;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: var(--serif-w);
  letter-spacing: -0.005em;
  line-height: 1.04;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .hero-sub {
  margin-top: 26px;
  max-width: 36ch;
  font-size: 17px;
  color: var(--cream-dim);
}
.hero-deco { margin: 36px 0 44px; display: flex; align-items: center; gap: 18px; }
.hero-deco .hr-gold { width: 90px; }
.hero-media {
  position: relative;
  background-color: var(--card);
  border-left: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(13,11,9,0.35) 14%, transparent 34%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-photo { aspect-ratio: 4/5; border-radius: 2px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 32%; }
.about-body .section-title { margin: 18px 0 28px; }
.about-body p { color: var(--cream-dim); margin-bottom: 18px; max-width: 52ch; }

/* certificates */
.certs { margin-top: 64px; }
.certs-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.certs-head .line { flex: 1; height: 1px; background: var(--line-soft); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.cert {
  background: var(--bg);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.cert .cert-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--cream);
}
.cert .cert-meta {
  font-family: var(--caps);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.approach-head { text-align: center; margin-bottom: 70px; }
.approach-head .section-title { margin: 18px 0; }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}
.appro {
  background: var(--bg-2);
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.appro .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
}
.appro h3 { font-size: 26px; color: var(--cream); font-weight: 400; }
.appro p { color: var(--cream-dim); font-size: 15px; }

/* ============================================================
   FORMATS / PRODUCTS
   ============================================================ */
.formats-head { text-align: center; margin-bottom: 70px; }
.formats-head .section-title { margin: 18px auto; max-width: 16ch; }
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fcard {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s, background .4s;
}
.fcard:hover { transform: translateY(-5px); border-color: var(--line); }
.fcard.feature { border-color: var(--gold); background: linear-gradient(180deg, rgba(224,185,120,0.10), var(--card)); }
.fcard.free { border-color: rgba(240,214,162,0.55); }
.fcard .badge {
  position: absolute;
  top: -11px; left: 32px;
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: #181009;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 2px;
}
.fcard .badge.free-badge { background: var(--cream); border: 0; color: #181009; }
.fcard .ficon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
}
.fcard h3 { font-size: 28px; font-weight: 400; color: var(--cream); }
.fcard .fdesc { color: var(--cream-dim); font-size: 15px; margin: 14px 0 26px; flex: 1; }
.fcard .ffoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}
.fcard .price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
}
.fcard .price.free-price { color: var(--gold-soft); font-style: italic; }
.fcard .flink {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: gap .3s, color .3s;
}
.fcard .flink:hover { gap: 14px; color: var(--gold-soft); }

/* ============================================================
   RESULTS
   ============================================================ */
.results { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.results-head { text-align: center; margin-bottom: 66px; }
.results-head .section-title { margin-top: 18px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  text-align: center;
  padding: 20px 28px;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: 0; }
.stat .big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 92px);
  color: var(--gold-soft);
  line-height: 1;
}
.stat .stat-label {
  font-family: var(--caps);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 16px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst-head { text-align: center; margin-bottom: 64px; }
.tst-head .section-title { margin-top: 18px; }
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.tst .stars { color: var(--gold); letter-spacing: 4px; font-size: 13px; }
.tst .quote { font-family: var(--serif); font-size: 21px; font-style: italic; line-height: 1.45; color: var(--cream); }
.tst .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tst .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--card-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold-soft);
}
.tst .who-name { font-size: 14px; color: var(--cream); }
.tst .who-meta { font-family: var(--caps); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze); }

/* ============================================================
   GUIDE CTA
   ============================================================ */
.guide {
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(201,169,110,0.08), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.guide .section-title { margin: 22px auto 18px; max-width: 18ch; }
.guide .lead { max-width: 44ch; margin: 0 auto 38px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.6fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-intro .section-title { margin: 18px 0 24px; }
.faq-intro p { color: var(--cream-dim); max-width: 34ch; }
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold-soft); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform .35s ease, opacity .35s ease;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s ease;
}
.faq-a-inner { padding: 0 40px 30px 0; color: var(--cream-dim); max-width: 60ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center;
  padding: clamp(100px, 15vw, 190px) 0;
}
.final h2 {
  font-size: clamp(46px, 8vw, 100px);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.final h2 em { font-style: italic; color: var(--gold-soft); }
.final .lead { max-width: 40ch; margin: 26px auto 42px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 40px;
  background: var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-soft);
}
.footer .brand { margin-bottom: 16px; }
.footer .brand .b-name { font-size: 25px; }
.footer-col h4 {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col a { display: block; color: var(--cream-dim); font-size: 14px; margin-bottom: 12px; transition: color .3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-desc { color: var(--cream-dim); font-size: 14px; max-width: 34ch; }
.socials { display: flex; gap: 14px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: border-color .3s, color .3s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold-soft); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom, .footer-bottom a {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.seen { opacity: 1 !important; transform: none !important; transition: none !important; }
/* failsafe: if the page can't animate (throttled/backgrounded iframe), show everything */
.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: 150px 0 100px; max-width: 820px; }
.legal .eyebrow { margin-bottom: 22px; }
.legal h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 14px; }
.legal .updated { font-family: var(--caps); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); margin-bottom: 50px; }
.legal h2 { font-size: clamp(26px, 3.4vw, 34px); color: var(--gold-soft); margin: 48px 0 18px; font-weight: 400; }
.legal h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; color: var(--cream); margin: 26px 0 10px; }
.legal p, .legal li { color: var(--cream-dim); margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 18px; }
.legal li { margin-bottom: 8px; }
.legal a.inline { color: var(--gold-soft); border-bottom: 1px solid var(--line); }
.legal .back {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--caps); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-top: 60px;
}
.legal .req { background: var(--card); border: 1px solid var(--line-soft); border-radius: 3px; padding: 26px 28px; margin-top: 20px; }
.legal .req p { margin-bottom: 6px; font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .formats-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(13,11,9,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 0;
  }
  .nav-links.open a { padding: 16px var(--gut); border-top: 1px solid var(--line-soft); }
  .nav-toggle { display: block; }
  .nav .btn-outline { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 52svh; order: -1; border-left: 0; border-bottom: 1px solid var(--line-soft); }
  .hero-media img { object-position: center 24%; }
  .hero-copy { padding-top: 120px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .formats-grid, .tst-grid, .approach-grid, .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line-soft); padding: 32px 0; }
  .stat:first-child { border-top: 0; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-services { gap: 22px; justify-content: center; max-width: none; }
}

/* ============================================================
   STYLE SWITCHER (design-time helper — toggle off when locked)
   ============================================================ */
.styler {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  width: 244px;
  background: rgba(16,12,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 16px 18px;
  font-family: var(--caps);
  color: var(--cream);
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}
.styler.collapsed { width: auto; padding: 0; }
.styler.collapsed .styler-body { display: none; }
.styler-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.styler.collapsed .styler-head { padding: 11px 15px; }
.styler-title { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.styler-toggle {
  background: none; border: 0; color: var(--cream-dim); cursor: pointer;
  font-size: 16px; line-height: 1; padding: 0; width: 18px; height: 18px;
}
.styler-group { margin-top: 16px; }
.styler-group > label {
  display: block; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.styler-opts { display: flex; flex-wrap: wrap; gap: 6px; }
.styler-opts button {
  flex: 1 1 auto;
  background: var(--card);
  border: 1px solid var(--line-soft);
  color: var(--cream-dim);
  border-radius: 3px;
  padding: 8px 9px;
  font-family: var(--caps);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.styler-opts button:hover { border-color: var(--line); color: var(--cream); }
.styler-opts button.active { background: var(--gold); border-color: var(--gold); color: #181009; font-weight: 600; }
.styler-opts button .pf { font-family: 'Playfair Display', serif; }
.styler-opts button .cm { font-family: 'Cormorant Garamond', serif; }
.styler-opts button .eg { font-family: 'EB Garamond', serif; }
.styler-opts button .pr { font-family: 'Prata', serif; }
@media (max-width: 600px) { .styler { left: 10px; bottom: 10px; width: 210px; } }
@media print { .styler { display: none !important; } }

