:root {
  color-scheme: light;
  --ink: #11110f;
  --ink-2: #171714;
  --ink-soft: #3c3a33;
  --paper: #f6f1e7;
  --paper-clean: #fffdf7;
  --line: #d6cbb8;
  --line-dark: #29251b;
  --gold: #c9a84c;
  --gold-deep: #b8963e;
  --clay: #a95337;
  --muted: #5f594d;
  --muted-dark: #b5ab97;
  --max: 1180px;
  --r-lg: 28px;
  --r-md: 20px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-tap-highlight-color: rgba(201, 168, 76, 0.28);
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; text-decoration: none; touch-action: manipulation; }

:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 4px; }

p, h1, h2, h3, dl, dd, figure { margin: 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 120;
  transform: translateY(-180%);
  background: var(--gold);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 400ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ============ floating pill nav ============ */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.55);
  border: 1px solid rgba(255, 253, 247, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px -22px rgba(0, 0, 0, 0.55);
  transition: background 500ms var(--ease), border-color 500ms var(--ease);
}

.nav-pill.scrolled {
  background: rgba(17, 17, 15, 0.82);
}

.nav-brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--paper-clean);
}
.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(246, 241, 231, 0.72);
}
.nav-links a { transition: color 300ms var(--ease); }
.nav-links a:hover { color: var(--paper-clean); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 6px 0 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 400ms var(--ease), background 400ms var(--ease);
}
.nav-cta .ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.14);
  display: grid;
  place-items: center;
  transition: transform 400ms var(--ease);
}
.nav-cta:hover { background: #d6b65a; }
.nav-cta:hover .ico { transform: translateX(2px); }
.nav-cta:active { transform: scale(0.97); }

/* ============ hero ============ */
.hero2 {
  position: relative;
  background: var(--ink);
  color: var(--paper-clean);
  overflow: hidden;
  padding: 150px 24px 96px;
}

.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 78% 18%, rgba(201, 168, 76, 0.13), transparent 65%);
  pointer-events: none;
}

.ghost-word {
  position: absolute;
  left: 50%;
  bottom: -1.5vw;
  transform: translateX(-50%);
  z-index: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: clamp(6rem, 13.5vw, 15rem);
  line-height: 1;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 241, 231, 0.09);
  pointer-events: none;
  user-select: none;
}

.hero2-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: 64px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero2 h1 {
  margin-top: 26px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 13ch;
  text-wrap: balance;
}

.hero2 h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero2 .lede {
  max-width: 52ch;
  margin-top: 26px;
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.btn2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 8px 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 450ms var(--ease), background 450ms var(--ease), border-color 450ms var(--ease);
}
.btn2:active { transform: scale(0.97); }

.btn2-gold { background: var(--gold); color: var(--ink); }
.btn2-gold:hover { background: #d6b65a; }
.btn2-gold .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(17, 17, 15, 0.14);
  display: grid;
  place-items: center;
  transition: transform 450ms var(--ease);
}
.btn2-gold:hover .ico { transform: translate(3px, -1px) scale(1.05); }

.btn2-ghost {
  padding: 0 24px;
  border: 1px solid rgba(246, 241, 231, 0.25);
  color: var(--paper-clean);
}
.btn2-ghost:hover { border-color: rgba(246, 241, 231, 0.6); }

.hero2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.chip {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(246, 241, 231, 0.14);
  background: rgba(246, 241, 231, 0.05);
}
.chip strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--gold);
}
.chip span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(246, 241, 231, 0.66);
  letter-spacing: 0.04em;
}

/* double-bezel portrait */
.bezel {
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: var(--r-lg);
  padding: 10px;
}
.bezel-core {
  position: relative;
  border-radius: calc(var(--r-lg) - 10px);
  overflow: hidden;
  background: var(--ink-2);
}

.hero2-visual .bezel-core img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero2-visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 1px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 253, 247, 0.22);
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero2-visual figcaption strong { font-size: 1rem; }
.hero2-visual figcaption span { color: var(--gold); font-size: 0.8rem; font-weight: 600; }

/* ============ marquee ============ */
.marquee {
  position: relative;
  background: var(--gold);
  color: var(--ink);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============ shared sections ============ */
.section2 {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid rgba(169, 83, 55, 0.35);
  color: var(--clay);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h2.display {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin-top: 20px;
  text-wrap: balance;
}

/* WHO / WHAT / NEXT */
.facts2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.fact-card {
  background: var(--paper-clean);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: 0 30px 60px -38px rgba(17, 17, 15, 0.4);
}
.fact-card dt {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.fact-card dd {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.6;
}

/* pillars (01 02 03) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.pillar {
  position: relative;
  background: var(--ink);
  color: var(--paper-clean);
  border-radius: var(--r-md);
  padding: 28px 26px;
  overflow: hidden;
  min-height: 170px;
}
.pillar span {
  position: absolute;
  right: 10px;
  top: -22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 6.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.35);
  pointer-events: none;
}
.pillar strong { display: block; font-size: 1.06rem; margin-bottom: 8px; }
.pillar p { color: var(--muted-dark); font-size: 0.93rem; line-height: 1.6; }

/* life proof photos */
.life2 {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px 0;
}

.life2 .bezel {
  background: rgba(17, 17, 15, 0.05);
  border-color: rgba(17, 17, 15, 0.1);
}

.life2 .bezel-core { min-height: 380px; }
.life2 .bezel-core img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  transition: transform 1200ms var(--ease);
}
.life2 .bezel:hover .bezel-core img { transform: scale(1.04); }

.life2 figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 5px;
  max-width: 400px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 253, 247, 0.2);
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--paper-clean);
}
.life2 figcaption span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.life2 figcaption strong { font-size: 0.98rem; line-height: 1.4; }

/* problem two-column */
.two-col2 {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.copy-stack2 {
  display: grid;
  gap: 20px;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* training dark */
.training2 {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 110px;
}

.training2-inner {
  position: relative;
  background: var(--ink);
  color: var(--paper-clean);
  border-radius: var(--r-lg);
  padding: 64px;
  overflow: hidden;
}
.training2-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 85% 10%, rgba(201, 168, 76, 0.12), transparent 60%);
  pointer-events: none;
}

.training2 .eyebrow-pill { position: relative; }
.training2 h2 {
  position: relative;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  line-height: 1.05;
  max-width: 16ch;
  margin-top: 22px;
}
.training2 p {
  position: relative;
  max-width: 60ch;
  margin-top: 18px;
  color: rgba(246, 241, 231, 0.75);
  font-size: 1.04rem;
  line-height: 1.7;
}

.tags2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.tags2 span {
  padding: 9px 14px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* method ghost numerals */
.method2 {
  background: var(--paper-clean);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  padding: 84px 26px 30px;
  overflow: hidden;
}
.step .num {
  position: absolute;
  top: -30px;
  left: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 168, 76, 0.55);
  pointer-events: none;
}
.step h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.step p { margin-top: 12px; color: var(--muted); font-size: 0.97rem; line-height: 1.65; }

/* video section */
.vsec {
  background: var(--ink);
  color: var(--paper-clean);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.vsec .kicker { border-color: rgba(201, 168, 76, 0.45); color: var(--gold); }

.vgrid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  gap: 18px;
  align-items: start;
  margin-top: 48px;
}

.vfeature { max-width: 900px; margin: 48px auto 0; }
.vstories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 26px auto 0;
}
.vstory .vmeta { margin-top: 12px; }
.vstory .vmeta strong { font-size: 0.9rem; }
@media (max-width: 860px) { .vstories { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.yt-lite {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(246, 241, 231, 0.16);
  background-color: var(--ink-2);
  background-size: cover;
  background-position: center;
}
.yt-lite .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.6);
  transition: transform 450ms var(--ease);
}
.yt-lite:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.yt-lite .play svg { width: 24px; height: 24px; fill: var(--ink); margin-left: 3px; }
.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vmeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.vmeta strong { font-size: 1.02rem; }
.vpill {
  flex: none;
  padding: 5px 11px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.vside .vmeta strong { font-size: 0.92rem; }
.vside .vmeta { margin-top: 12px; }

/* results */
.results2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.result2 {
  background: rgba(17, 17, 15, 0.04);
  border: 1px solid rgba(17, 17, 15, 0.1);
  border-radius: var(--r-lg);
  padding: 9px;
  transition: transform 600ms var(--ease);
}
.result2:hover { transform: translateY(-6px); }

.result2-core {
  background: var(--ink);
  color: var(--paper-clean);
  border-radius: calc(var(--r-lg) - 9px);
  overflow: hidden;
}
.result2-core img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid rgba(246, 241, 231, 0.14);
}
.result2-body { padding: 22px 24px 26px; }

.result2-label {
  display: inline-block;
  padding: 5px 11px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.result2 h3 {
  margin-top: 14px;
  font-size: 1.02rem;
  font-weight: 700;
}

.result2-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
}
.result2-num small {
  font-size: 1.4rem;
  font-weight: 600;
}

.result2-body > p {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}

.proof-note2 {
  max-width: 700px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* client video testimonials (reels wall) */
.vidwall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.vidcard { display: flex; flex-direction: column; margin: 0; }
.r2video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(246, 241, 231, 0.16);
  padding: 0;
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-2);
}
.r2video img,
.r2video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.r2video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 44px -14px rgba(0, 0, 0, 0.6);
  transition: transform 450ms var(--ease);
}
.r2video:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.r2video .play svg { width: 22px; height: 22px; fill: var(--ink); margin-left: 3px; }
.vidcard .vcap { margin-top: 14px; }
.vidcard .vcap strong { display: block; font-size: 1rem; font-weight: 700; }
.vidcard .vcap span { color: var(--muted-dark); font-size: 0.9rem; }
@media (max-width: 768px) {
  .vidwall { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}

/* google reviews + check-ins */
.gsec {
  background: var(--paper-clean);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gsec h2 em { font-style: italic; color: var(--gold-deep); }

.grate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.gstars { display: inline-flex; gap: 3px; }
.gstars svg { width: 22px; height: 22px; fill: var(--gold); }

.grate strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.grate a {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--gold-deep);
  border-bottom: 2px solid rgba(184, 150, 62, 0.35);
  transition: border-color 300ms var(--ease);
}
.grate a:hover { border-color: var(--gold-deep); }

.gcards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gcard {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.gcard .gtop { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.gcard .gname { font-weight: 800; font-size: 0.98rem; }
.gcard .gtime { color: var(--muted); font-size: 0.8rem; }
.gcard .gstars svg { width: 15px; height: 15px; }
.gcard blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.65;
}
.gcard .gsrc {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gcard .gsrc svg { width: 14px; height: 14px; }

.chats-head { margin-top: 84px; }

.chat-strip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.chat-card {
  flex: none;
  width: min(460px, 84vw);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #efe9db;
  box-shadow: 0 22px 44px -30px rgba(17, 17, 15, 0.35);
}
.chat-card img { width: 100%; height: auto; display: block; }
.chat-card .chat-tag {
  display: block;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper-clean);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

/* about */
.about2 {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about2 .bezel {
  background: rgba(17, 17, 15, 0.05);
  border-color: rgba(17, 17, 15, 0.1);
}
.about2 .bezel-core img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: 48% 36%;
}

.about2-copy { display: grid; gap: 20px; }
.about2-copy p { max-width: 60ch; color: var(--ink-soft); font-size: 1.06rem; line-height: 1.7; }

.about-note2 {
  padding: 20px 22px;
  border-left: 4px solid var(--gold-deep);
  border-radius: 0 14px 14px 0;
  background: var(--paper-clean);
  font-weight: 800;
}

/* faq */
.faq2 {
  background: var(--ink);
  color: var(--paper-clean);
}
.faq2-inner { max-width: var(--max); margin: 0 auto; padding: 110px 24px; }
.faq2 .kicker { border-color: rgba(201, 168, 76, 0.45); color: var(--gold); }

.faq2-list { display: grid; gap: 10px; max-width: 860px; margin-top: 48px; }

.faq2 details {
  border: 1px solid rgba(246, 241, 231, 0.14);
  border-radius: 16px;
  background: var(--ink-2);
  transition: border-color 400ms var(--ease);
}
.faq2 details[open] { border-color: rgba(201, 168, 76, 0.5); }

.faq2 summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
}
.faq2 summary::-webkit-details-marker { display: none; }
.faq2 summary::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 241, 231, 0.25);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 400ms var(--ease);
}
.faq2 details[open] summary::after { transform: rotate(45deg); }
.faq2 details p {
  max-width: 70ch;
  padding: 0 22px 20px;
  color: var(--muted-dark);
  line-height: 1.65;
}
.faq2 details p + p { padding-top: 0; }

/* final cta */
.final2 {
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 24px;
  text-align: center;
}
.final2 .kicker { border-color: rgba(201, 168, 76, 0.5); color: var(--gold-deep); }
.final2 h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 4.4rem);
  line-height: 1.03;
  max-width: 17ch;
  margin: 22px auto 0;
  text-wrap: balance;
}
.final2 h2 em { font-style: italic; color: var(--gold-deep); }
.final2 p { max-width: 52ch; margin: 20px auto 34px; color: var(--muted); font-size: 1.08rem; }

/* footer */
.footer2 {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 110px;
  border-top: 1px solid var(--line);
}
.footer2 img { width: 90px; height: auto; }
.footer2 div { display: flex; flex-wrap: wrap; gap: 18px; color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.footer2 div a:hover { color: var(--ink); }
.footer2 p { max-width: 320px; color: var(--muted); font-size: 0.86rem; }

/* sticky mobile cta */
.mcta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 85;
  display: none;
  transform: translateY(140%);
  transition: transform 600ms var(--ease);
}
.mcta.show { transform: translateY(0); }
.mcta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 18px 44px -16px rgba(17, 17, 15, 0.55);
}

/* ============ interior pages ============ */
.page-hero2 {
  position: relative;
  background: var(--ink);
  color: var(--paper-clean);
  overflow: hidden;
  padding: 168px 24px 78px;
}
.page-hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 80% 0%, rgba(201, 168, 76, 0.12), transparent 60%);
  pointer-events: none;
}
.page-hero2-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero2 h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 16ch;
  margin: 24px 0 0;
  text-wrap: balance;
}
.page-hero2 h1 em { font-style: italic; color: var(--gold); }
.page-hero2 .lede {
  max-width: 56ch;
  margin-top: 22px;
  color: rgba(246, 241, 231, 0.78);
  font-size: 1.1rem;
  line-height: 1.65;
}
.page-hero2 .hero2-actions { margin-top: 32px; }

.phase-grid2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.phase2 {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
}
.phase2 span {
  width: fit-content;
  padding: 5px 11px;
  border: 1px solid rgba(184, 150, 62, 0.5);
  border-radius: 999px;
  color: var(--gold-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.phase2 h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
}
.phase2 p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.faq-list2 {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-top: 44px;
}
.faq-list2 details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-clean);
  transition: border-color 400ms var(--ease);
}
.faq-list2 details[open] { border-color: var(--gold-deep); }
.faq-list2 summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
}
.faq-list2 summary::-webkit-details-marker { display: none; }
.faq-list2 summary::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.2);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 400ms var(--ease);
}
.faq-list2 details[open] summary::after { transform: rotate(45deg); }
.faq-list2 details p {
  max-width: 70ch;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-list2 details p + p { padding-top: 0; }

/* ============ scroll reveal ============ */
.rv {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(6px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease), filter 900ms var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
  filter: none;
}
.rv-1 { transition-delay: 90ms; }
.rv-2 { transition-delay: 180ms; }
.rv-3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .rv { opacity: 1; transform: none; filter: none; transition: none; }
  *, *::before, *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============ responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }

  .hero2 { padding: 120px 20px 80px; }
  .hero2-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero2-visual .bezel-core img { height: 540px; }

  .facts2 { grid-template-columns: 1fr; margin-top: -34px; }
  .pillars { grid-template-columns: 1fr; }
  .life2 { grid-template-columns: 1fr; }
  .two-col2 { grid-template-columns: 1fr; gap: 30px; }
  .method2-grid { grid-template-columns: 1fr; }
  .results2-grid { grid-template-columns: 1fr; }
  .gcards { grid-template-columns: 1fr; }
  .vgrid { grid-template-columns: 1fr; }
  .phase-grid2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero2 { padding: 140px 20px 64px; }
  .about2 { grid-template-columns: 1fr; }
  .about2 .bezel-core img { height: 520px; }
  .training2-inner { padding: 44px 28px; }
  .footer2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mcta { display: block; }
  .section2 { padding: 78px 18px; }
  .faq2-inner { padding: 78px 18px; }
  .final2 { padding: 96px 18px 120px; }
  .footer2 { padding-bottom: 140px; }
}

@media (max-width: 560px) {
  .hero2 { padding: 108px 16px 70px; }
  .hero2 h1 { font-size: 2.6rem; }
  .hero2 .lede { font-size: 1.02rem; }
  .hero2-actions { display: grid; width: 100%; }
  .btn2 { justify-content: space-between; width: 100%; }
  .btn2-ghost { justify-content: center; }
  .hero2-visual .bezel-core img { height: 480px; }
  .ghost-word { font-size: 5rem; }
  .marquee-track span { font-size: 0.8rem; }
  .training2 h2 { font-size: 2rem; }
  .step { padding: 72px 22px 26px; }
  .phase-grid2 { grid-template-columns: 1fr; }
  .page-hero2 { padding: 124px 16px 56px; }
  .page-hero2 h1 { font-size: 2.4rem; }
}
