/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --ink:          #f5f0e8;
  --muted:        #b8ae9e;
  --soft:         #aaa091;
  --night:        #080806;
  --night-2:      #100f0c;
  --night-3:      #161410;
  --panel:        rgba(255,242,200,0.07);
  --panel-hover:  rgba(255,242,200,0.12);
  --line:         rgba(255,230,160,0.14);
  --gold:         #d4a843;
  --gold-bright:  #f5c842;
  --gold-pale:    #ffe89a;
  --copper:       #c4612a;
  --ember:        #e07030;
  --moss:         #4a7a50;
  --shadow-sm:    0 8px 24px rgba(0,0,0,0.35);
  --shadow:       0 20px 60px rgba(0,0,0,0.5);
  --shadow-lg:    0 40px 100px rgba(0,0,0,0.6);
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --max:          1160px;
  --nav-h:        72px;

  /* pointer for ambient grid */
  --mx: 50%;
  --my: 25%;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 70% 38% at 16% 6%,  rgba(212,168,67,.15),  transparent),
    radial-gradient(ellipse 55% 40% at 84% 14%,  rgba(196,97,42,.13),   transparent),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(16,14,10,1), transparent),
    #0c0b08;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
h1,h2,h3,h4,p { margin-top: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Ambient grid ───────────────────────────────────────── */
.ambient {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at var(--mx) var(--my), black, transparent 58%);
  opacity: .5;
}

/* ─── Top fade ───────────────────────────────────────────── */
body::before {
  content: ""; position: fixed; top: 0; left: 0; right: 0; z-index: 28;
  height: 12px;
  background: linear-gradient(180deg, #080806, rgba(8,8,6,.8));
  pointer-events: none;
}

/* ─── Header / Nav ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 12px; z-index: 40;
  width: min(calc(100% - clamp(12px, 4vw, 24px)), 1200px);
  height: auto; /* Allow flexible height on mobile */
  min-height: var(--nav-h);
  margin: 12px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(12px, 3vw, 20px);
  padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 18px);
  border: 1px solid rgba(255,230,160,.16);
  border-radius: 999px;
  background: rgba(10,9,7,.72);
  backdrop-filter: blur(22px);
  transition: background 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1), transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
  background: rgba(8,8,6,.92);
  border-color: rgba(245,200,66,.26);
  transform: translateY(-3px);
}

.brand {
  display: inline-flex; align-items: center; gap: 12px; min-width: max-content;
}
.brand-mark {
  display: grid; place-items: center;
  width: clamp(36px, 8vw, 42px); height: clamp(36px, 8vw, 42px); /* Responsive size */
  border: 1.5px solid rgba(245,200,66,.7);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(0.65rem, 2vw, 0.8rem); /* Responsive font */
  font-weight: 800; letter-spacing: .05em;
  flex-shrink: 0; /* Prevent shrinking */
}
.brand-name {
  font-size: clamp(0.8rem, 2.5vw, 0.94rem); /* Responsive size */
  font-weight: 700; letter-spacing: -.01em;
  white-space: nowrap; /* Prevent wrapping */
}

.nav-links {
  display: flex; align-items: center;
  gap: clamp(14px, 2.8vw, 30px);
  color: rgba(245,240,232,.66);
  font-size: .85rem; font-weight: 600;
}
.nav-links a {
  position: relative;
  transition: color 180ms;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1.5px;
  background: var(--gold-bright);
  transition: width 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 20px;
  line-height: 1;
  border: 1px solid rgba(245,200,66,.4);
  border-radius: 999px;
  background: rgba(245,200,66,.1);
  color: var(--gold-pale);
  font-size: .85rem; font-weight: 700;
  transition: background 220ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms cubic-bezier(0.4, 0, 0.2, 1), transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-cta:hover {
  background: rgba(245,200,66,.18);
  border-color: rgba(245,200,66,.65);
  transform: translateY(-2px);
}
.nav-cta svg { width: 15px; height: 15px; stroke-width: 2.2; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; /* Touch target: min 44px */
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--panel);
  padding: 0;
  transition: background 220ms cubic-bezier(0.4, 0, 0.2, 1), border-color 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger:active { background: rgba(255, 242, 200, 0.12); border-color: rgba(245, 200, 66, 0.4); }
.hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink); margin: 0 auto;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* With seven navigation items, switch to the roomy mobile menu before links crowd. */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 39;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  padding: 60px 20px 20px; /* Safe area for notches */
  background: rgba(8,8,6,.96); backdrop-filter: blur(22px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.4rem, 5vw, 2.6rem); /* Responsive text */
  font-weight: 800;
  color: var(--muted); letter-spacing: -.01em;
  transition: color 220ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 24px; /* Touch target size */
  border-radius: var(--radius);
  display: block;
}
.mobile-menu a:active { color: var(--gold-bright); background: rgba(245, 200, 66, 0.1); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 clamp(18px, 4vw, 26px); /* Responsive padding */
  line-height: 1; white-space: nowrap;
  border: 1px solid transparent; border-radius: 999px;
  font-size: clamp(0.875rem, 2vw, 0.9rem); /* Responsive font */
  font-weight: 700;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), background 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; stroke-width: 2.2; }

.btn-primary {
  color: #0c0a06;
  background: linear-gradient(130deg, var(--gold-pale), var(--gold));
  box-shadow: 0 14px 36px rgba(212,168,67,.28);
}
.btn-primary:hover { box-shadow: 0 18px 48px rgba(212,168,67,.4); }

.btn-ghost {
  color: var(--ink);
  border-color: rgba(255,230,160,.24);
  background: rgba(255,242,200,.07);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  border-color: rgba(245,200,66,.5);
  background: rgba(255,242,200,.12);
}

.btn-outline {
  color: var(--gold-pale);
  border-color: rgba(245,200,66,.35);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(245,200,66,.08);
  border-color: rgba(245,200,66,.6);
}

/* ─── Section shell ──────────────────────────────────────── */
.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

/* ─── Eyebrow label ──────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-bright);
  font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; flex-shrink: 0;
  width: 28px; height: 1.5px; background: currentColor;
}

/* ─── Section heading block ──────────────────────────────── */
.section-heading { margin-bottom: clamp(32px, 5vw, 56px); }
.section-heading .eyebrow { margin-bottom: 16px; }
.section-heading h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 900; line-height: .92; letter-spacing: -.01em;
  margin-bottom: 0;
}

/* ─── Display headings (h1, h2 as display) ───────────────── */
.display {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900; line-height: .9; letter-spacing: -.01em;
}

/* ─── Card base ──────────────────────────────────────────── */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,242,200,.09), rgba(255,242,200,.04));
  backdrop-filter: blur(16px);
}

/* ─── Image placeholder ──────────────────────────────────── */
.img-placeholder {
  position: relative;
  background: linear-gradient(135deg, rgba(255,220,100,.07), rgba(180,80,30,.07));
  border: 1px dashed rgba(255,210,80,.22);
  border-radius: inherit;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,210,80,.45);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-align: center;
}
.img-placeholder svg {
  width: 32px; height: 32px; opacity: .5;
  color: var(--gold);
}
.img-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 18px,
    rgba(255,210,80,.03) 18px, rgba(255,210,80,.03) 19px
  );
}

/* ─── Reveal animation ───────────────────────────────────── */
.reveal { opacity: 1; transform: none; }
.has-js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.has-js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-failsafe .reveal { opacity: 1 !important; transform: none !important; }


/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  margin-top: 0;
  padding: clamp(40px,6vw,72px) clamp(20px,5vw,48px) 32px;
  background: #060504;
  border-top: 1px solid rgba(255,230,160,.1);
}
.footer-inner {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr auto; }
}
.footer-brand { max-width: 340px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--soft); font-size: .88rem; margin: 0; }
.footer-links {
  display: flex; flex-direction: column;
  gap: clamp(12px, 2vw, 40px);
  font-size: clamp(0.78rem, 1.8vw, 0.84rem); color: var(--soft);
}
@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: clamp(16px, 3vw, 40px);
    font-size: 0.84rem;
  }
}
.footer-links a { transition: color 180ms; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom {
  width: min(100%, var(--max)); margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,230,160,.08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: rgba(245,240,232,.3); font-size: .8rem;
}
.footer-bottom a {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,230,160,.15); border-radius: 50%;
  color: var(--soft); transition: color 180ms, border-color 180ms, transform 180ms;
}
.footer-bottom a:hover { color: var(--gold-bright); border-color: rgba(245,200,66,.4); transform: translateY(-2px); }
.footer-bottom svg { width: 16px; height: 16px; }

/* ─── Utility ────────────────────────────────────────────── */
.text-gold { color: var(--gold-bright); }
.text-muted { color: var(--muted); }
.text-soft { color: var(--soft); }
section { scroll-margin-top: 100px; }

/* ════════════════════════════════════════════════════════════
   HOME PAGE
════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 1100px);
  display: grid;
  align-items: center;
  align-content: start;
  padding: calc(var(--nav-h) + 40px) clamp(20px,5vw,48px) clamp(40px,6vh,72px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 55% 45%, rgba(196,97,42,.13), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(212,168,67,.09), transparent);
}
.hero-grid {
  position: relative; z-index: 1;
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 420px; }
}
.hero-kicker {
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.4rem, 11vw, 9.5rem);
  font-weight: 900; line-height: .88; letter-spacing: -.02em;
  margin: 0 0 28px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(95deg, var(--gold-pale) 0%, var(--gold) 40%, var(--copper) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1.hero-quote {
  font-size: clamp(1.6rem, 5vw, 5.4rem); /* Better mobile scaling */
  line-height: 1.0;
  letter-spacing: -.01em;
  max-width: 14ch;
}
.hero-sub {
  max-width: 560px;
  color: rgba(245,240,232,.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero visual */
.hero-visual { position: relative; height: 580px; }
.hero-portrait {
  position: absolute; inset: 20px 0 0 8%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,230,160,.18);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg);
}
.hero-portrait .img-placeholder { height: 100%; border-radius: 0; border: none; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,5,4,.55) 0%, transparent 45%),
              linear-gradient(120deg, rgba(212,168,67,.14), transparent 50%);
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(10,9,7,.78); backdrop-filter: blur(18px);
  border: 1px solid rgba(255,230,160,.2);
  box-shadow: var(--shadow-sm);
}
.hero-badge strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  color: var(--gold-bright);
}
.hero-badge span { display: block; color: var(--muted); font-size: .82rem; margin-top: 4px; }
.hero-badge--tl { top: 10%; left: -4%; }
.hero-badge--br { bottom: 8%; right: -3%; max-width: 200px; }

/* Strip */
.hero-strip {
  position: relative; z-index: 1;
  width: min(100%, var(--max)); margin: clamp(32px,5vh,56px) auto 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-strip span {
  padding: 9px 16px;
  border: 1px solid rgba(255,230,160,.16);
  border-radius: 999px;
  background: rgba(255,242,200,.055);
  color: rgba(245,240,232,.7);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
}

/* Home sections */
.home-intro { padding: clamp(72px,10vw,120px) clamp(20px,5vw,48px); }
.home-intro-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.2fr);
  gap: clamp(48px,8vw,96px); align-items: start;
}
.home-intro-sticky { position: sticky; top: 110px; }
.home-intro-body { display: grid; gap: 20px; }
.home-intro-body p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.home-intro-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,242,200,.06);
}
.home-intro-stats div {
  padding: 20px 18px;
  background: rgba(255,242,200,.035);
}
.home-intro-stats dt {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold-bright); line-height: 1;
}
.home-intro-stats dd { margin: 6px 0 0; color: var(--muted); font-size: .82rem; }

/* Profile card — restrained depth and a subtle pointer response */
.profile-card {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255,230,160,.18);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,242,200,.075), rgba(255,242,200,.025));
  backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  will-change: transform, border-color, box-shadow;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), border-color 260ms ease, box-shadow 260ms ease;
  transform-origin: center center;
  margin-top: clamp(16px, 3vw, 32px);
}
.profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x) var(--card-y), rgba(245,200,66,.13), transparent 42%);
  opacity: .55;
  transition: opacity 260ms ease;
}
.profile-card::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
}
.home-intro-sticky .eyebrow { margin-bottom: 12px; margin-top: 0; position: static; z-index: auto; }
.profile-card:hover {
  border-color: rgba(245,200,66,.42);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 0 1px rgba(245,200,66,.04);
}
.profile-card-kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.profile-card-text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  margin: 0;
  overflow-wrap: break-word;
  color: var(--ink);
}
.profile-card-accent { color: var(--gold-pale); }
.profile-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,230,160,.12);
  color: var(--soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.profile-card-footer i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(245,200,66,.55);
}

/* Services preview */
.home-services { padding: clamp(72px,10vw,120px) clamp(20px,5vw,48px); background: var(--night-2); }
.services-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  max-width: 1120px;
}
.service-card {
  padding: clamp(20px, 4vw, 32px) clamp(16px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.08), rgba(255,242,200,.03));
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1), background 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,.38);
  background: linear-gradient(145deg, rgba(255,242,200,.14), rgba(255,242,200,.05));
}
.service-card-icon {
  width: clamp(40px, 8vw, 48px); height: clamp(40px, 8vw, 48px); margin-bottom: clamp(16px, 3vw, 28px);
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: rgba(212,168,67,.15);
  color: var(--gold-bright);
}
.service-card-icon svg { width: clamp(18px, 4vw, 24px); height: clamp(18px, 4vw, 24px); stroke-width: 1.8; }
.service-card h3 { font-size: clamp(1rem, 2vw, 1.12rem); font-weight: 800; margin-bottom: clamp(8px, 1.5vw, 10px); }
.service-card p { color: var(--muted); font-size: clamp(0.85rem, 1.5vw, 0.92rem); margin: 0; }

/* Home CTA banner */
.home-cta {
  padding: clamp(72px,10vw,120px) clamp(20px,5vw,48px);
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(212,168,67,.1), transparent);
}
.home-cta-card {
  width: min(100%, var(--max)); margin: 0 auto;
  padding: clamp(32px, 5vw, 72px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,230,160,.18);
  background: linear-gradient(135deg, rgba(255,242,200,.1), rgba(255,242,200,.04));
  backdrop-filter: blur(20px);
  text-align: center;
}
.home-cta-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.8rem, 5vw, 5rem);
  font-weight: 900; line-height: .9; letter-spacing: -.01em;
  margin-bottom: clamp(16px, 3vw, 20px);
}
.home-cta-card p { color: var(--muted); max-width: 540px; margin: 0 auto clamp(20px, 4vw, 32px); font-size: clamp(0.9rem, 1.5vw, 1.05rem); }
.home-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════ */

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) clamp(20px,5vw,48px) clamp(48px,7vw,80px);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 50% 60% at 65% 50%, rgba(196,97,42,.14), transparent);
}
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.6rem, 9vw, 8rem);
  font-weight: 900; line-height: .9; letter-spacing: -.02em;
  margin: 20px 0 0;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(95deg, var(--gold-pale), var(--copper));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero-sub {
  max-width: 620px; margin: 24px 0 0;
  color: var(--muted); font-size: 1.08rem;
}

/* About story */
.about-story {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
}
.about-story-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(300px,0.9fr) minmax(0,1.1fr);
  gap: clamp(40px,7vw,88px); align-items: start;
}
.about-photo {
  position: sticky; top: 110px;
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: .82;
  border: 1px solid rgba(255,230,160,.16);
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { display: grid; gap: 24px; }
.about-copy p { color: var(--muted); font-size: 1.02rem; margin: 0; }
.about-copy p strong { color: var(--ink); }

/* Story stats */
.story-stats {
  display: flex;
  gap: clamp(32px, 8vw, 64px);
  align-items: flex-start;
  flex-wrap: wrap;
}
.story-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.story-year {
  display: block;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(95deg, var(--gold-pale), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story-phrase {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.3;
}

/* Values */
.about-values {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
  background: var(--night-2);
}
.values-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.value-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.08), rgba(255,242,200,.03));
}
.value-card-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  color: rgba(245,200,66,.18); margin-bottom: 12px;
}
.value-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Timeline */
.about-timeline {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
}
.timeline-wrap {
  width: min(100%, var(--max)); margin: 0 auto;
}
.tl-item {
  display: grid; grid-template-columns: 160px 1px 1fr;
  gap: 0 32px; padding: 0 0 48px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
  text-align: right; padding-top: 2px;
  color: var(--gold-bright); font-size: .88rem; font-weight: 800; letter-spacing: .06em;
}
.tl-line {
  position: relative;
  background: var(--line);
}
.tl-line::before {
  content: ""; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212,168,67,.5);
}
.tl-body { padding-top: 0; }
.tl-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; }
.tl-body p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Credentials */
.about-creds {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
  background: var(--night-2);
}
.creds-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.cred-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.07), rgba(255,242,200,.02));
  display: flex; flex-direction: column; gap: 12px;
}
.cred-card svg { width: 28px; height: 28px; color: var(--gold); stroke-width: 1.8; }
.cred-card h3 { font-size: 1rem; font-weight: 800; margin: 0; }
.cred-card p { color: var(--muted); font-size: .88rem; margin: 0; flex: 1; }
.cred-badge {
  display: inline-block; padding: 4px 10px;
  border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  background: rgba(212,168,67,.14); color: var(--gold-bright);
}
.cred-badge.in-progress { background: rgba(196,97,42,.14); color: var(--ember); }

/* ════════════════════════════════════════════════════════════
   SERVICES PAGE
════════════════════════════════════════════════════════════ */

.services-hero-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(40px,6vw,84px); align-items: center;
}
.services-hero-grid > div:first-child { min-width: 0; }
.services-hero {
  min-height: min(850px, calc(100vh - 12px));
  display: grid;
  align-items: center;
  padding-bottom: clamp(72px,8vw,104px);
}
.services-hero::before {
  background:
    radial-gradient(ellipse 48% 55% at 78% 44%, rgba(212,168,67,.15), transparent 70%),
    linear-gradient(110deg, rgba(196,97,42,.08), transparent 42%);
}
.services-hero-copy { padding-top: 24px; }
.services-hero-grid #srv-title {
  max-width: 10.5ch;
  margin: 22px 0 0;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .88;
  letter-spacing: -.03em;
}
.services-hero-grid #srv-title em { display: block; }
.services-hero-copy .page-hero-sub { max-width: 590px; line-height: 1.75; }
.services-hero-actions { margin-top: 30px; }
.services-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 0;
  margin-top: clamp(34px,5vw,54px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,230,160,.13);
}
.services-hero-points li {
  display: grid;
  gap: 7px;
  padding-right: 14px;
  color: rgba(245,240,232,.72);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.4;
}
.services-hero-points li span {
  color: var(--gold-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.services-hero-visual {
  position: relative;
  height: clamp(500px, 47vw, 620px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,230,160,.16);
  background: var(--night-3);
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}
.services-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8,8,6,.88) 100%);
  pointer-events: none;
}
.services-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 0;
  transform: none;
  filter: saturate(.78) contrast(1.06);
}
.services-hero-location {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
  display: grid;
  gap: 2px;
}
.services-hero-location span {
  color: var(--gold-bright);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.services-hero-location strong { color: var(--ink); font-size: .95rem; }
.services-hero-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255,230,160,.24);
  border-radius: 999px;
  background: rgba(8,8,6,.68);
  backdrop-filter: blur(14px);
}
.services-hero-badge strong {
  color: var(--gold-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
.services-hero-badge span {
  color: rgba(245,240,232,.76);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.services-main {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
}
.services-list {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; gap: 24px;
}
.service-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 24px 28px; align-items: start;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.07), rgba(255,242,200,.03));
  transition: border-color 280ms cubic-bezier(0.4, 0, 0.2, 1), background 280ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.service-row:hover {
  border-color: rgba(245,200,66,.35);
  background: linear-gradient(145deg, rgba(255,242,200,.12), rgba(255,242,200,.05));
}
.service-row-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  color: rgba(245,200,66,.22); padding-top: 2px;
}
.service-row-body h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 8px; }
.service-row-body p { color: var(--muted); font-size: .92rem; margin: 0 0 16px; }
.service-row-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  padding: 4px 11px; border-radius: 999px;
  border: 1px solid rgba(255,230,160,.16);
  background: rgba(255,242,200,.05);
  color: rgba(245,240,232,.65); font-size: .76rem; font-weight: 700;
}
.service-row-price {
  text-align: right; white-space: nowrap; padding-top: 4px;
}
.service-row-price strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem; font-weight: 900; color: var(--gold-bright); line-height: 1;
  display: block;
}
.service-row-price span { color: var(--soft); font-size: .8rem; }

/* Process */
.services-process {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
  background: var(--night-2);
}
.process-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.process-step {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.07), rgba(255,242,200,.02));
  position: relative;
}
.process-step::after {
  content: "→";
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem; color: rgba(255,210,80,.3); z-index: 1;
}
.process-step:last-child::after { display: none; }
.process-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem; font-weight: 900; line-height: 1;
  color: rgba(245,200,66,.18); margin-bottom: 10px;
}
.process-step h3 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: .86rem; margin: 0; }

/* FAQ */
.services-faq {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
}
.faq-wrap {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(40px,7vw,80px);
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px 22px;
  background: rgba(255,242,200,.05);
  color: var(--ink); font-size: .96rem; font-weight: 700;
  line-height: 1.28;
  border: none; text-align: left;
  transition: background 200ms;
}
.faq-q:hover { background: rgba(255,242,200,.09); }
.faq-q svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold);
  margin-top: 0;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-plus {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 420ms cubic-bezier(0.4, 0, 0.2, 1), padding 320ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 14px 22px 20px; color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0; }

/* ════════════════════════════════════════════════════════════
   GALLERY / LIFE PAGE
════════════════════════════════════════════════════════════ */

.gallery-section {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
}
.gallery-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  columns: 3; column-gap: 16px;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; cursor: pointer;
  border: 1px solid rgba(255,230,160,.1);
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1), border-color 280ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover { transform: scale(1.015); border-color: rgba(245,200,66,.3); }
.gallery-item.is-open {
  transform: scale(1.04);
  border-color: rgba(245,200,66,.5);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  z-index: 4;
}
.gallery-item .img-placeholder { min-height: 200px; }
.gallery-item img { width: 100%; display: block; }
.gallery-item-tall .img-placeholder { min-height: 340px; }
.gallery-item-short .img-placeholder { min-height: 200px; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(6,5,4,.8), transparent);
  color: rgba(245,240,232,.8); font-size: .8rem; font-weight: 600;
  opacity: 0; transition: opacity 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 4, .82);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-modal-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1480px);
  height: min(90vh, 920px);
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, .9fr);
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(18px, 2.6vw, 30px);
  border-radius: clamp(24px, 3vw, 36px);
  border-color: rgba(245,200,66,.18);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, rgba(18,16,12,.98), rgba(10,9,7,.96));
  transform: translateY(14px) scale(.985);
  opacity: .88;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-modal.is-open { opacity: 1; }
.gallery-modal.is-open .gallery-modal-backdrop { opacity: 1; }
.gallery-modal.is-open .gallery-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245,200,66,.55);
  border-radius: 50%;
  background: #17130d;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  z-index: 2;
}
.gallery-modal-media {
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255,230,160,.14);
  background: rgba(255,255,255,.02);
}
.gallery-modal-media-item {
  width: 100%;
  height: 100%;
}
.gallery-modal-media-item.img-placeholder {
  align-items: center;
  justify-content: center;
  min-height: 100%;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 3vw, 40px);
  font-size: 1rem;
  text-align: center;
}
img.gallery-modal-media-item,
.gallery-modal-media-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.gallery-modal-copy {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  align-items: stretch;
}
.gallery-modal-note {
  width: 100%;
  min-height: 100%;
  padding: clamp(24px, 3vw, 36px);
  border-radius: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(245,200,66,.22);
  background: linear-gradient(180deg, rgba(255,242,200,.09), rgba(255,242,200,.04));
  color: var(--gold-pale);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 920px) {
  .gallery-modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
  }
  .gallery-modal-media {
    min-height: 0;
    height: 52vh;
    height: min(52dvh, 560px);
  }
  .gallery-modal-copy { overflow: visible; }
  .gallery-modal-note {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-modal,
  .gallery-modal-backdrop,
  .gallery-modal-panel {
    transition: none;
  }
}

/* Featured moment */
.gallery-feature {
  padding: 0 clamp(20px,5vw,48px) clamp(64px,9vw,112px);
}
.gallery-feature-card {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,230,160,.16);
  box-shadow: var(--shadow);
}
.gallery-feature-img { min-height: 400px; }
.gallery-feature-img .img-placeholder { height: 100%; border-radius: 0; border: none; }
.gallery-feature-body {
  padding: clamp(32px,5vw,56px);
  background: linear-gradient(145deg, rgba(255,242,200,.08), rgba(255,242,200,.03));
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.gallery-feature-body h3 { font-size: 1.5rem; font-weight: 800; margin: 0; }
.gallery-feature-body p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ════════════════════════════════════════════════════════════
   PERSONAL TRAINING DETAIL PAGE
════════════════════════════════════════════════════════════ */

.training-hero {
  padding-bottom: clamp(68px,8vw,110px);
  isolation: isolate;
}
.training-hero::before {
  background:
    linear-gradient(115deg, rgba(212,168,67,.1), transparent 42%),
    radial-gradient(circle at 82% 34%, rgba(196,97,42,.12), transparent 34%);
}
.training-hero-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0,1.18fr) minmax(340px,.82fr);
  min-height: 610px;
  border: 1px solid rgba(255,230,160,.17);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,242,200,.065), rgba(255,242,200,.018) 52%, rgba(196,97,42,.06));
  box-shadow: 0 36px 100px rgba(0,0,0,.46);
}
.training-hero-frame::before {
  content: "01";
  position: absolute;
  left: clamp(24px,5vw,64px);
  bottom: -52px;
  z-index: 0;
  color: rgba(245,200,66,.035);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(12rem,26vw,24rem);
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}
.training-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px,7vw,86px);
}
.training-page .training-title {
  max-width: none;
  margin: 20px 0 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.7rem,4.8vw,4.6rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.035em;
  overflow-wrap: normal;
}
.training-title span,
.training-title em { display: block; }
.training-title em {
  font-style: normal;
  background: linear-gradient(95deg, #ffe89a, #d4a843 58%, #c4612a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.training-hero-copy .page-hero-sub { max-width: 570px; line-height: 1.72; }
.training-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 32px;
}
.training-hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(245,240,232,.72);
  font-size: .82rem;
  font-weight: 700;
  transition: color 180ms ease;
}
.training-hero-text-link span { color: var(--gold-bright); transition: transform 180ms ease; }
.training-hero-text-link:hover { color: var(--ink); }
.training-hero-text-link:hover span { transform: translateY(3px); }
.training-hero-dossier {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px,5vw,56px);
  border-left: 1px solid rgba(255,230,160,.14);
  background: rgba(8,8,6,.34);
  backdrop-filter: blur(10px);
}
.training-coach-strip {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,230,160,.13);
}
.training-coach-strip img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(245,200,66,.3);
  border-radius: 50%;
  filter: saturate(.8) contrast(1.04);
}
.training-coach-strip div { min-width: 0; }
.training-coach-strip span,
.training-coach-strip small { display: block; }
.training-coach-strip span {
  margin-bottom: 3px;
  color: var(--gold-bright);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.training-coach-strip strong { display: block; font-size: 1rem; }
.training-coach-strip small { margin-top: 3px; color: var(--soft); font-size: .68rem; }
.training-offer-price { padding: 30px 0 28px; border-bottom: 1px solid rgba(255,230,160,.13); }
.training-offer-price > span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}
.training-offer-price div { display: flex; align-items: baseline; gap: 8px; }
.training-offer-price strong {
  color: var(--gold-pale);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem,4vw,3.8rem);
  font-weight: 900;
  line-height: 1;
}
.training-offer-price small { color: var(--soft); font-size: .72rem; }
.training-offer-facts { display: grid; gap: 0; margin: 16px 0 0; }
.training-offer-facts div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,230,160,.08);
}
.training-offer-facts div:last-child { border-bottom: 0; }
.training-offer-facts dt { color: var(--soft); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.training-offer-facts dd { margin: 0; color: rgba(245,240,232,.78); font-size: .76rem; font-weight: 650; line-height: 1.45; }

.training-pillars,
.training-audience,
.training-included { padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px); }
.training-pillars { background: var(--night-2); }
.training-pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.training-pillar {
  padding: clamp(24px,4vw,36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,242,200,.075), rgba(255,242,200,.02));
}
.training-pillar > span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-bright);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}
.training-pillar h3 { margin: 0 0 10px; font-size: 1.12rem; }
.training-pillar p { margin: 0; color: var(--muted); font-size: .9rem; }

.training-scope { padding: clamp(72px,10vw,128px) clamp(20px,5vw,48px); }
.training-scope-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
  gap: clamp(38px,7vw,88px);
  align-items: center;
}
.training-scope-copy h2,
.training-included-copy h2 {
  margin: 14px 0 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem,4vw,3.6rem);
  font-weight: 900;
  line-height: .88;
}
.training-page .section-heading h2 { font-size: clamp(1.9rem,4vw,3.7rem); }
.training-page .home-cta-card h2 { font-size: clamp(1.9rem,3.4vw,3.3rem); }
.training-scope-copy > p:not(.eyebrow) { margin: 0 0 16px; color: var(--muted); font-size: 1rem; }
.training-boundary {
  padding: clamp(28px,5vw,46px);
  border: 1px solid rgba(196,97,42,.3);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(196,97,42,.12), rgba(255,242,200,.025));
  box-shadow: var(--shadow-sm);
}
.training-boundary > svg { width: 36px; height: 36px; margin-bottom: 24px; color: var(--ember); }
.training-boundary h3 { margin: 12px 0 16px; font-size: 1.35rem; }
.training-boundary > p:not(.eyebrow) { margin: 0 0 14px; color: var(--muted); font-size: .9rem; }
.training-boundary > p:last-child { margin-bottom: 0; }

.training-audience { background: var(--night-2); }
.training-audience-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.training-audience-card {
  padding: clamp(22px,4vw,32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,242,200,.035);
}
.training-audience-card strong { display: block; margin-bottom: 8px; color: var(--gold-bright); font-size: 1rem; }
.training-audience-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.training-included-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(330px,.9fr);
  gap: clamp(38px,7vw,88px);
  align-items: center;
}
.training-check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.training-check-list li {
  position: relative;
  padding: 15px 18px 15px 48px;
  border: 1px solid rgba(255,230,160,.12);
  border-radius: var(--radius);
  background: rgba(255,242,200,.035);
  color: var(--muted);
  font-size: .9rem;
}
.training-check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 14px;
  color: var(--gold-bright);
  font-weight: 900;
}
.training-gym-card {
  padding: clamp(30px,5vw,48px);
  border: 1px solid rgba(245,200,66,.25);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(245,200,66,.1), rgba(255,242,200,.025));
  box-shadow: var(--shadow);
}
.training-gym-card h3 { margin: 13px 0 12px; font-family: "Barlow Condensed", sans-serif; font-size: 2rem; }
.training-gym-card > p:not(.eyebrow) { margin: 0 0 16px; color: var(--ink); font-weight: 700; }
.training-gym-card > span { display: block; margin-bottom: 24px; color: var(--muted); font-size: .88rem; }
.training-gym-card .btn { width: 100%; }
.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--gold-bright);
  font-size: .82rem;
  font-weight: 800;
}
.service-detail-link::after { content: "→"; transition: transform 180ms ease; }
.service-detail-link:hover::after { transform: translateX(4px); }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════ */

.contact-layout {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
}
.contact-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.04fr);
  gap: clamp(32px,5vw,64px); align-items: stretch;
}
.contact-info { position: sticky; top: 110px; height: 100%; }
.contact-profile-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,230,160,.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(255,242,200,.09), rgba(255,242,200,.025));
  box-shadow: var(--shadow);
}
.contact-profile-media {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 36px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(125deg, rgba(196,97,42,.09), var(--night-2));
}
.contact-profile-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 35%;
  border: 1px solid rgba(212,168,67,.3);
  border-radius: 12px;
}
.contact-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
}
.contact-availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7eba86;
  box-shadow: 0 0 0 4px rgba(126,186,134,.13);
}
.contact-profile-caption {
  min-width: 0;
}
.contact-profile-caption > span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.55rem,3vw,2.25rem);
  font-weight: 900;
  line-height: 1.1;
}
.contact-profile-caption > strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 420px) {
  .contact-profile-media { grid-template-columns: 80px minmax(0, 1fr); gap: 16px; padding: 24px; }
  .contact-availability { margin-top: 10px; }
}
.contact-profile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(24px,4vw,36px);
}
.contact-profile-body .eyebrow { margin: 0 0 12px; }
.contact-profile-body h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.35rem, 4.5vw, 3.9rem);
  font-weight: 900; line-height: .9; letter-spacing: -.01em;
  margin: 0 0 18px;
}
.contact-profile-lead { color: var(--muted); font-size: .96rem; margin: 0; }
.contact-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 26px;
}
.contact-quick-action {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  border: 1px solid rgba(245,200,66,.2);
  background: rgba(245,200,66,.075);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.contact-quick-action:hover {
  transform: translateY(-2px);
  border-color: rgba(245,200,66,.48);
  background: rgba(245,200,66,.12);
}
.contact-quick-action.is-copied {
  border-color: rgba(126,186,134,.5);
  background: rgba(126,186,134,.12);
}
.contact-quick-action.is-copied svg { color: #8fc796; }
.contact-quick-action svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--gold-bright);
}
.contact-quick-action span { min-width: 0; }
.contact-quick-action small {
  display: block;
  color: var(--soft);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-quick-action strong { display: block; margin-top: 2px; font-size: .86rem; }
.contact-email { display: grid; justify-items: start; gap: 12px; margin-top: 20px; min-width: 0; }
.contact-email-address { color: var(--gold-pale); overflow-wrap: anywhere; font-size: .875rem; text-decoration: underline; text-underline-offset: 4px; }
.contact-email .contact-quick-action { min-height: 44px; padding: 10px 14px; font-size: .875rem; }
.contact-email-hint { margin: 0; color: var(--muted); font-size: .875rem; }
.contact-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,230,160,.1);
}
.contact-profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--soft);
  font-size: .74rem;
  font-weight: 650;
}
.contact-profile-meta svg { width: 14px; height: 14px; color: var(--gold-bright); }

/* Form */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 690px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.08), rgba(255,242,200,.03));
  backdrop-filter: blur(16px);
  padding: clamp(28px,4vw,44px);
}
.contact-form-wrap > form {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.form-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-size: .78rem; font-weight: 700; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; }
.form-input, .form-select {
  width: 100%; padding: 13px 16px;
  border: 1px solid rgba(255,230,160,.18);
  border-radius: var(--radius);
  background: rgba(255,242,200,.04);
  color: var(--ink); font-size: 1rem; font-family: inherit;
  transition: border-color 200ms, background 200ms;
  outline: none;
}
.form-input:focus, .form-select:focus {
  border-color: rgba(245,200,66,.5);
  background: rgba(255,242,200,.07);
}
.form-input::placeholder { color: rgba(245,240,232,.3); }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245,200,66,.95) 50%),
    linear-gradient(135deg, rgba(245,200,66,.95) 50%, transparent 50%),
    linear-gradient(to right, rgba(255,230,160,.18), rgba(255,230,160,.18));
  background-position:
    calc(100% - 19px) calc(50% + 1px),
    calc(100% - 13px) calc(50% + 1px),
    calc(100% - 40px) 50%;
  background-size: 6px 6px, 6px 6px, 1px 22px;
  background-repeat: no-repeat;
}
.form-select:hover {
  border-color: rgba(245,200,66,.38);
  background-color: rgba(255,242,200,.06);
}
.form-select:focus {
  box-shadow: 0 0 0 3px rgba(245,200,66,.14);
}
.form-select option { background: #1a1712; color: var(--ink); }
.form-submit { width: 100%; margin-top: 12px; font-size: .96rem; min-height: 52px; }
.form-note { margin: auto 0 0; padding-top: 24px; color: var(--soft); font-size: .82rem; }
.form-success {
  display: none; text-align: center; padding: 24px;
  color: var(--moss); font-weight: 700;
}
.form-success.visible { display: block; }

/* Non-calendar inquiry */
.inquiry-card {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(245,200,66,.24);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(245,200,66,.09), rgba(255,242,200,.03));
  box-shadow: var(--shadow);
  text-align: center;
}
.inquiry-card h2 {
  margin: 14px 0 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: .95;
}
.inquiry-card > p:not(.eyebrow):not(.inquiry-note) { max-width: 640px; margin: 0 auto; color: var(--muted); }
.inquiry-card strong { color: var(--gold-bright); }
.inquiry-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.inquiry-actions .btn.is-copied {
  border-color: rgba(126,186,134,.5);
  background: rgba(126,186,134,.12);
  color: #a9d7ae;
}
.inquiry-note { margin: 18px 0 0; color: var(--soft); font-size: .8rem; }

/* Calendly scheduling section */
.contact-calendar {
  padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px);
  background: var(--night-2);
}
.calendar-wrap {
  width: min(100%, var(--max)); margin: 0 auto;
}
.calendly-intro { color: var(--muted); margin: 12px 0 0; font-size: .96rem; max-width: 720px; }
.selected-service-badge {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 7px 13px;
  border: 1px solid rgba(245,200,66,.3);
  border-radius: 999px;
  background: rgba(245,200,66,.09);
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .035em;
}
.calendly-shell {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(245,200,66,.26);
  background: linear-gradient(145deg, rgba(245,200,66,.08), rgba(255,242,200,.025));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.booking-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(245,200,66,.18);
  background: rgba(8,8,6,.78);
}
.booking-guide span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 62px;
  padding: 12px 16px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(245,200,66,.12);
}
.booking-guide span:last-child { border-right: 0; }
.booking-guide strong { color: var(--gold-bright); font-family: "Barlow Condensed", sans-serif; font-size: 1.08rem; }
.calendly-embed {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 750px;
  height: 750px;
  margin: 0 auto;
  overflow: visible;
  background: #100f0c;
}



.calendly-config-notice {
  min-height: 360px;
  padding: clamp(32px, 7vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--muted);
}
.calendly-config-notice[hidden] { display: none; }
.calendly-config-notice strong { color: var(--gold-bright); font-size: 1.15rem; }
.calendly-config-notice span { max-width: 540px; }
.calendly-success {
  margin: 0 auto;
  min-height: 420px;
  border: 1px solid rgba(74,122,80,.38);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(74,122,80,.13), rgba(255,242,200,.035));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.calendly-success.visible { display: flex; }
.calendly-success svg { width: 54px; height: 54px; color: #75a77b; margin-bottom: 6px; }
.calendly-success-title { margin: 0; color: var(--ink); font-size: 1.4rem; font-weight: 850; }
.calendly-success p:not(.calendly-success-title) { max-width: 560px; margin: 0 0 12px; color: var(--muted); font-weight: 500; }
.calendly-success .btn { color: var(--ink); }
.calendly-footnote { margin: 16px 0 0; color: var(--soft); font-size: .8rem; text-align: center; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual {
    display: block;
    width: min(100%, 420px);
    height: clamp(320px, 58vw, 520px);
    margin: 8px auto 0;
  }
  .hero-portrait { inset: 0; transform: rotate(.8deg); }
  .services-hero-grid { grid-template-columns: 1fr; }
  .services-hero { min-height: auto; }
  .services-hero-grid #srv-title { max-width: 11ch; font-size: clamp(3.5rem, 10vw, 6.2rem); }
  .services-hero-visual {
    display: block;
    width: min(100%, 520px);
    height: clamp(420px, 78vw, 620px);
    margin: 8px auto 0;
  }
  .services-hero-img {
    inset: 0;
    transform: none;
  }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; aspect-ratio: 0.85; }
  .creds-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .home-intro-grid { grid-template-columns: 1fr; }
  .home-intro-sticky { position: static; }
  .faq-wrap { grid-template-columns: 1fr; }
  .gallery-feature-card { grid-template-columns: 1fr; }
  .training-hero-frame,
  .training-scope-grid,
  .training-included-grid { grid-template-columns: 1fr; }
  .training-hero-frame { min-height: 0; }
  .training-hero-dossier { border-top: 1px solid rgba(255,230,160,.14); border-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .contact-form-wrap { min-height: 0; }
}

/* Tablet: 768px - 1040px */
@media (max-width: 768px) {
  .site-header { top: 8px; margin: 8px auto 0; }
  .nav-cta { display: none; }
  .hero h1 { font-size: clamp(1.8rem, 5vw, 4.4rem); }
  .hero-sub { font-size: clamp(0.9rem, 1.3vw, 1.1rem); }
  .hero-strip span { font-size: clamp(0.75rem, 1.5vw, 0.82rem); }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-hero-points { grid-template-columns: 1fr; gap: 15px; }
  .services-hero-points li { grid-template-columns: 30px 1fr; align-items: baseline; gap: 8px; }
  .training-pillar-grid { grid-template-columns: 1fr; }
  .training-audience-grid { grid-template-columns: 1fr; }
  .home-intro-stats { grid-template-columns: 1fr; }
  .home-intro-stats div { padding: clamp(14px, 3vw, 20px) clamp(12px, 3vw, 18px); }
  .home-intro-stats dt { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step::after { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 0.75; }
  .gallery-grid { columns: 2; column-gap: 12px; }
  .service-row { grid-template-columns: 44px 1fr; gap: 12px; }
  .service-row-price { grid-column: 1 / -1; text-align: left; margin-top: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .inquiry-actions { flex-direction: column; }
  .booking-guide { grid-template-columns: 1fr; }
  .booking-guide span { justify-content: flex-start; min-height: 48px; border-right: 0; border-bottom: 1px solid rgba(245,200,66,.1); }
  .booking-guide span:last-child { border-bottom: 0; }
  .tl-item { grid-template-columns: 100px 1px 1fr; gap: 12px; }
  .hero-badge { padding: 12px 16px; font-size: clamp(0.7rem, 2vw, 0.82rem); }
  .hero-badge strong { font-size: clamp(1.6rem, 4vw, 2.2rem); }
}

/* Mobile: 640px - 768px */
@media (max-width: 640px) {
  .hero-badge { display: none; }
  .gallery-grid { columns: 1; }
  .gallery-grid img { width: 100%; height: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; max-width: none; }
  .hero-actions { gap: 10px; }
  .hero-actions > * { flex: 1; min-width: 0; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-line { display: none; }
  .tl-year { text-align: left; }
  .home-cta-actions { display: flex; flex-direction: column; gap: 10px; }
  .home-cta-actions .btn { width: 100%; }
  .calendly-embed { width: 100%; min-width: 0; min-height: 750px; height: 750px; }
  
}

/* Very small mobile: < 480px */
@media (max-width: 480px) {
  .site-header { gap: 8px; margin: 4px auto 0; top: 4px; }
  .brand-mark { width: 32px; height: 32px; font-size: 0.65rem; }
  .brand-name { font-size: 0.75rem; }
  .hero { padding: calc(var(--nav-h) + 24px) clamp(12px, 3vw, 20px) clamp(24px, 4vh, 40px); }
  .hero h1 { font-size: clamp(1.4rem, 4vw, 3rem); margin-bottom: 20px; }
  .hero-kicker { font-size: clamp(0.75rem, 2vw, 0.85rem); margin-bottom: 14px; }
  .hero-sub { font-size: clamp(0.8rem, 1.2vw, 1rem); margin-bottom: 24px; line-height: 1.5; }
  .hero-strip { gap: 6px; }
  .hero-strip span { padding: 6px 12px; font-size: 0.7rem; }
  .shell { padding: clamp(12px, 3vw, 20px); }
  .section-heading { margin-bottom: clamp(16px, 3vw, 32px); }
  .section-heading h2 { font-size: clamp(1.4rem, 4vw, 2.8rem); }
  .section-heading .eyebrow { font-size: clamp(0.7rem, 1.8vw, 0.82rem); }
  .service-card { padding: clamp(16px, 3vw, 24px); }
  .service-card h3 { font-size: clamp(0.95rem, 2.5vw, 1.1rem); }
  .service-card p { font-size: clamp(0.8rem, 1.5vw, 0.9rem); }
  .profile-card-text { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .home-cta-card h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .home-cta-card p { font-size: clamp(0.85rem, 1.5vw, 0.95rem); }
  .scroll-top { width: 40px; height: 40px; right: 8px; bottom: 8px; }
  .scroll-top svg { width: 18px; height: 18px; }
  .testi-card { padding: clamp(16px, 3vw, 24px); min-height: auto; }
  .testi-card p { font-size: clamp(0.8rem, 1.5vw, 0.94rem); margin-bottom: 12px; }
  .testi-stars svg { width: 12px; height: 12px; }
  .testi-card-avatar { width: 32px; height: 32px; }
  .testi-card-name { font-size: clamp(0.8rem, 1.8vw, 0.9rem); }
  .testi-card-role { font-size: clamp(0.7rem, 1.3vw, 0.78rem); }
  .mobile-menu a { font-size: clamp(1.2rem, 4vw, 1.8rem); padding: 8px 16px; }
  .contact-quick-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
  .has-js .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   FLOATING SCROLL-TO-TOP
════════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  right: clamp(12px, 3vw, 32px);
  bottom: clamp(12px, 3vw, 32px);
  z-index: 50;
  display: grid; place-items: center;
  width: clamp(44px, 10vw, 52px); height: clamp(44px, 10vw, 52px); /* Touch target */
  border: 1px solid rgba(245,200,66,.25);
  border-radius: 50%;
  background: rgba(10,9,7,.72); backdrop-filter: blur(18px);
  color: var(--gold-pale);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 220ms cubic-bezier(0.4, 0, 0.2, 1), visibility 220ms cubic-bezier(0.4, 0, 0.2, 1), transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover {
  background: rgba(245,200,66,.16);
  border-color: rgba(245,200,66,.72);
  transform: translateY(-3px);
}
.scroll-top svg { width: 22px; height: 22px; stroke-width: 2.3; }
@media (max-width: 520px) {
  .scroll-top { width: 46px; height: 46px; }
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testi-section { padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px); }

/* Featured testimonial */
.testi-feature {
  width: min(100%, var(--max)); margin: 0 auto clamp(28px,4vw,40px);
  padding: clamp(36px,5vw,64px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,230,160,.18);
  background: linear-gradient(135deg, rgba(245,200,66,.12), rgba(255,242,200,.03));
  backdrop-filter: blur(16px);
  position: relative; overflow: hidden;
}
.testi-feature::before {
  content: "\201C";
  position: absolute; top: -40px; left: 24px;
  font-family: Georgia, serif; font-size: 16rem;
  color: rgba(245,200,66,.08); line-height: 1; pointer-events: none;
}
.testi-feature-stars { display: flex; gap: 4px; margin-bottom: 20px; position: relative; }
.testi-feature-stars svg { width: 22px; height: 22px; color: var(--gold-bright); fill: var(--gold-bright); }
.testi-feature blockquote {
  position: relative; margin: 0 0 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 600; line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink);
}
.testi-feature-author { display: flex; align-items: center; gap: 16px; position: relative; }
.testi-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,230,160,.25);
  background: rgba(255,242,200,.06);
}
.testi-avatar .img-placeholder { height: 100%; font-size: .6rem; border-radius: 0; border: none; gap: 4px; }
.testi-avatar .img-placeholder svg { width: 18px; height: 18px; margin: 0; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author-name { font-weight: 800; font-size: 1rem; }
.testi-author-role { color: var(--soft); font-size: .85rem; }

/* Keyframe animations */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Grid */
.testi-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testi-card {
  break-inside: avoid; margin-bottom: 0;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.07), rgba(255,242,200,.03));
  display: flex;
  flex-direction: column;
  min-height: 140px;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 16px; height: 16px; color: var(--gold-bright); fill: var(--gold-bright); }
.testi-card p { color: var(--muted); font-size: .94rem; margin: 0 0 18px; line-height: 1.6; flex-grow: 1; }
.testi-card-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-card-avatar {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; overflow: hidden;
  border: 1px solid rgba(255,230,160,.2); background: rgba(255,242,200,.06);
}
.testi-card-avatar .img-placeholder { height: 100%; border-radius: 0; border: none; }
.testi-card-avatar .img-placeholder svg { width: 14px; height: 14px; margin: 0; }
.testi-card-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card-name { font-weight: 800; font-size: .9rem; }
.testi-card-role { color: var(--soft); font-size: .78rem; }

/* Phone animation tuning: less bounce, shorter travel, no stagger */
@keyframes testiMobileIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .testi-card { will-change: auto; }
  .testi-card.is-visible {
    animation: testiMobileIn 0.5s ease-out both;
  }
  .testi-card.is-visible:nth-child(1),
  .testi-card.is-visible:nth-child(2),
  .testi-card.is-visible:nth-child(3),
  .testi-card.is-visible:nth-child(4),
  .testi-card.is-visible:nth-child(5),
  .testi-card.is-visible:nth-child(6) {
    animation-delay: 0s;
  }
}

/* Home testimonials preview strip */
.home-testi { padding: clamp(72px,10vw,120px) clamp(20px,5vw,48px); }

/* ════════════════════════════════════════════════════════════
   SIKEREK (SUCCESS) PAGE
════════════════════════════════════════════════════════════ */
.success-section { padding: clamp(64px,9vw,112px) clamp(20px,5vw,48px); }
.success-section.alt { background: var(--night-2); }

/* Before/After cards */
.ba-grid {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.ba-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,242,200,.06), rgba(255,242,200,.02));
}
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; position: relative; }
.ba-images > div { position: relative; min-height: 280px; }
.ba-images .img-placeholder { height: 100%; border-radius: 0; }
.ba-images img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(10,9,7,.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,230,160,.2);
}
.ba-tag.before { color: var(--muted); }
.ba-tag.after { color: var(--gold-bright); border-color: rgba(245,200,66,.4); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%); z-index: 1;
}
.ba-body { padding: 24px; }
.ba-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.ba-body p { color: var(--muted); font-size: .9rem; margin: 0 0 14px; }
.ba-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.ba-stat dt { font-family:"Barlow Condensed",sans-serif; font-size: 1.6rem; font-weight: 900; color: var(--gold-bright); line-height: 1; }
.ba-stat dd { margin: 2px 0 0; color: var(--soft); font-size: .76rem; }

/* Personal showcase */
.me-showcase {
  width: min(100%, var(--max)); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: clamp(36px,6vw,72px); align-items: start;
}
.me-photo {
  border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: .78;
  border: 1px solid rgba(255,230,160,.16);
  box-shadow: var(--shadow);
  position: relative;
}
.me-body { padding-top: 0; }
.me-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.me-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,5,4,.4), transparent 50%);
  pointer-events: none;
}
.me-body h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem,4.5vw,3.8rem); font-weight: 900;
  line-height: .92; letter-spacing: -.01em; margin: 16px 0 20px;
}
.me-body > p { color: var(--muted); font-size: 1.02rem; margin: 0 0 28px; max-width: 560px; }
/* Static holds / skill grid */
.skill-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 12px;
}
.skill-hold {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,242,200,.04);
}
.skill-hold-icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: rgba(212,168,67,.14); color: var(--gold-bright);
}
.skill-hold-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.skill-hold-name { font-weight: 800; font-size: .92rem; }
.skill-hold-status { color: var(--soft); font-size: .76rem; }

/* Mini metrics section */
.coaching-metrics {
  width: min(100%, var(--max));
  margin: clamp(34px, 5vw, 52px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.metric-box {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(245, 200, 66, .14), transparent 52%),
    linear-gradient(145deg, rgba(255,242,200,.08), rgba(255,242,200,.03));
  box-shadow: var(--shadow-sm);
}
.metric-number {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6.4vw, 4.6rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.01em;
  background: linear-gradient(95deg, var(--gold-pale), var(--copper));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.metric-text {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
  max-width: 36ch;
}
.metric-text strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 980px) {
  .ba-grid { grid-template-columns: 1fr; }
  .me-showcase { grid-template-columns: 1fr; }
  .me-body { padding-top: 0; }
  .me-photo { aspect-ratio: 1.1; max-width: 480px; }
}
@media (max-width: 520px) {
  .coaching-metrics { grid-template-columns: 1fr; }
  .skill-grid { grid-template-columns: 1fr; }
  .ba-images > div { min-height: 220px; }
}

/* ════════════════════════════════════════════════════════════
   LOAD POLISH — prevents clunky header on first paint
════════════════════════════════════════════════════════════ */
/* During initial load, suppress the header/scroll-button transitions
   so they snap to their correct state instead of animating in. */
.preload .site-header,
.preload .scroll-top { transition: none !important; }

/* Reserve space for icons before lucide swaps <i> for <svg>,
   so the header/buttons don't reflow when icons render. */
i[data-lucide] { display: inline-flex; width: 1em; height: 1em; flex-shrink: 0; }
.nav-cta i[data-lucide] { width: 15px; height: 15px; }
.btn i[data-lucide]     { width: 17px; height: 17px; }

/* About: a personal gallery with reserved spaces for the owner's next photo session. */
.about-page-links { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 28px; }
.about-page-links a { color: var(--gold-pale); font-size: .875rem; padding: 10px 0; border-bottom: 1px solid var(--line); }
.about-page-links a:hover { border-color: var(--gold); }
#story-title, #creds-title { scroll-margin-top: 110px; }
.about-gallery { border-block: 1px solid var(--line); background: linear-gradient(160deg, rgba(196,97,42,.055), transparent 65%); }
.about-gallery-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 32px; }
.about-gallery-heading .section-heading { margin-bottom: 0; }
.about-gallery-heading > p { max-width: 47ch; color: var(--muted); font-size: 1rem; margin: 0 0 8px; }
.gallery-chapter { display: flex; align-items: center; gap: 16px; margin: 44px 0 22px; }
.gallery-chapter > span:first-child { color: var(--gold); font-size: .875rem; }
.gallery-chapter h3 { flex: none; margin: 0; font: 600 1.65rem "Barlow Condensed", sans-serif; }
.gallery-chapter-line { height: 1px; background: var(--line); flex: 1; }
.about-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.photo-slot { position: relative; min-width: 0; min-height: 280px; margin: 0; padding: clamp(22px, 3vw, 32px); display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(212,168,67,.22); border-radius: var(--radius-lg); background: linear-gradient(145deg, #211a12, #100f0c 72%); }
.photo-slot--wide { grid-column: span 2; min-height: 310px; background: linear-gradient(125deg, #2c1e13, #16120e 75%); }
.photo-slot--portrait { grid-row: span 2; background: linear-gradient(180deg, #251e14, #100f0c); }
.photo-slot-center { display: grid; align-content: center; justify-items: center; gap: 10px; flex: 1; min-height: 100px; padding-bottom: 24px; }
.photo-slot-mark { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-size: 1.5rem; font-weight: 300; }
.photo-slot-label { color: var(--muted); font-size: .875rem; }
.photo-slot figcaption { position: relative; z-index: 1; display: grid; gap: 8px; }
.photo-slot figcaption > span { font-size: .75rem; letter-spacing: .12em; color: var(--gold); }
.photo-slot figcaption strong { font: 600 clamp(1.6rem, 2.5vw, 2.1rem)/1.12 "Barlow Condensed", sans-serif; color: var(--ink); }
.photo-slot figcaption small { font-size: .875rem; color: var(--muted); }
.photo-slot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-slot:has(> img)::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,6,.94), transparent 80%); pointer-events: none; }
.photo-slot:has(> img) .photo-slot-center { visibility: hidden; }
.photo-slot:has(> img) figcaption { margin-top: auto; }
.photo-slot--portrait > img { object-position: 50% 30%; }
.about-gallery-life-copy { max-width: 740px; color: var(--muted); margin-bottom: 28px; }
.gallery-grid.about-life-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; columns: auto; }
.about-life-grid .gallery-item { margin: 0; aspect-ratio: 4 / 5; min-width: 0; cursor: zoom-in; }
.about-life-grid .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.about-life-grid .gallery-caption { opacity: 1; padding: 36px 22px 22px; color: var(--ink); font-size: 1rem; }
@media (max-width: 800px) {
  .about-gallery-heading { grid-template-columns: 1fr; gap: 20px; }
  .about-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .photo-slot--portrait { grid-row: auto; min-height: 350px; }
  .about-photo-grid > :last-child { grid-column: span 2; }
}
@media (max-width: 520px) {
  .about-photo-grid, .gallery-grid.about-life-grid { grid-template-columns: 1fr; }
  .about-photo-grid .photo-slot { grid-column: auto; min-height: 280px; }
  .about-photo-grid .photo-slot--portrait { min-height: 380px; }
  .about-page-links { gap: 8px 20px; }
}

/* V14 — a warmer, clearer path from first visit to first conversation. */
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--gold-pale); outline-offset: 5px; }
main:focus { outline: none; }
section[id] { scroll-margin-top: 110px; }
main :is(h1, h2, h3)[id] { scroll-margin-top: 110px; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 12px 20px; background: var(--gold-pale); color: var(--night); border-radius: var(--radius); font-weight: 700; }
.skip-link:focus { top: 16px; }
.hero h1.hero-quote { font-size: clamp(3.15rem, 5.8vw, 5.5rem); max-width: 16ch; line-height: 1.02; }
.hero-sub { font-size: 1.0625rem; line-height: 1.75; }
.hero-sub strong { display: block; margin-bottom: 8px; }
.hero-reassurance { max-width: 48ch; margin: 20px 0 0; font-size: .875rem; color: var(--muted); }
.home-intro-body .intro-lead { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.55; color: var(--ink); }
.home-intro-stats { margin-top: 32px; }
.experience-section { padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 48px); }
.experience-section .section-heading { margin-bottom: 36px; }
.section-intro { max-width: 680px; margin: -8px 0 36px; color: var(--muted); }
.section-heading > .section-intro { margin: 24px 0 0; }
.starting-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.starting-card { display: flex; flex-direction: column; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(196,97,42,.09), rgba(255,242,200,.025)); }
.card-index { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .12em; line-height: 1.6; }
.starting-card h3 { margin: 26px 0 18px; font: 700 clamp(1.8rem, 2.6vw, 2.5rem)/1.1 "Barlow Condensed", sans-serif; letter-spacing: -.01em; }
.starting-card p { color: var(--muted); font-size: 1rem; }
.starting-card a { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-size: .875rem; color: var(--gold-pale); font-weight: 600; }
.starting-card a:hover { text-decoration: underline; text-underline-offset: 5px; }
.starting-card a span { font-size: 1.3rem; }
.success-discovery { display: flex; align-items: center; justify-content: space-between; gap: 32px; margin-top: 32px; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-left: 3px solid var(--copper); border-radius: var(--radius-lg); background: linear-gradient(110deg, rgba(196,97,42,.1), rgba(212,168,67,.025)); }
.success-discovery > div { max-width: 650px; }
.success-discovery .eyebrow { margin-bottom: 12px; }
.success-discovery h3 { margin: 0 0 12px; font: 700 clamp(1.8rem, 3vw, 2.5rem)/1.12 "Barlow Condensed", sans-serif; }
.success-discovery p:last-child { margin: 0; color: var(--muted); }
.success-discovery > a { flex: none; }
@media (max-width: 800px) {
  .success-discovery { flex-direction: column; align-items: flex-start; gap: 24px; }
  .success-discovery > a { max-width: 100%; white-space: normal; }
}
.home-cta-card > .eyebrow { justify-content: center; }
.experience-cta-title { max-width: 20ch; margin: 0 auto 24px; font: 800 clamp(2.4rem, 5vw, 4.7rem)/1.03 "Barlow Condensed", sans-serif; text-wrap: balance; }
.home-cta-card .cta-reassurance { font-size: .875rem; color: var(--muted); margin: 20px auto 0; }
.page-hero .hero-actions { margin-top: 30px; }
.services-hero h1 { font-size: clamp(3.2rem, 5.5vw, 5.8rem); line-height: 1; }
.service-card p, .service-row-body p, .process-step p, .value-card p, .cred-card p, .training-pillar p, .training-audience-card p { font-size: 1rem; }
.service-detail-link { min-height: 44px; display: inline-flex; align-items: center; }
.service-row-price strong { overflow-wrap: normal; }
.online-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.online-hero h1 { font-size: clamp(3.6rem, 6.5vw, 6.8rem); line-height: .98; }
.online-note { position: relative; padding: clamp(24px, 3vw, 38px); border: 1px solid rgba(212,168,67,.28); border-top: 3px solid var(--copper); border-radius: 8px 8px 24px 24px; background: linear-gradient(155deg, #251b12, #100f0c 65%); box-shadow: var(--shadow); }
.note-row { display: flex; align-items: baseline; gap: 18px; padding-top: 26px; }
.note-row > span { color: var(--gold); font: 600 1.25rem "Barlow Condensed", sans-serif; }
.note-row strong { color: var(--ink); font-size: 1rem; }
.note-row p { font-size: .875rem; color: var(--muted); margin: 5px 0 0; }
.note-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.note-price strong { color: var(--gold-pale); font: 700 clamp(2rem, 3vw, 2.6rem) "Barlow Condensed", sans-serif; }
.note-price span { color: var(--muted); }
.online-packages-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.online-package { display: flex; flex-direction: column; min-width: 0; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-top: 3px solid var(--copper); border-radius: var(--radius-lg); background: linear-gradient(150deg, rgba(196,97,42,.09), var(--night-2) 70%); scroll-margin-top: 110px; }
.online-package h3 { margin: 12px 0 16px; font: 700 clamp(1.8rem, 3vw, 2.4rem)/1.15 "Barlow Condensed", sans-serif; }
.package-intro { color: var(--muted); margin-bottom: 20px; }
.package-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.package-price strong { color: var(--gold-pale); font: 700 clamp(2.5rem, 4vw, 3.25rem)/1 "Barlow Condensed", sans-serif; }
.package-price span { color: var(--muted); font-size: .875rem; }
.online-package .plain-checks { gap: 14px; margin: 0 0 30px; }
.online-package > .btn { margin-top: auto; align-self: flex-start; max-width: 100%; white-space: normal; }
.package-explainer { max-width: 840px; margin-top: 28px; }
@media (max-width: 700px) {
  .online-packages-grid { grid-template-columns: 1fr; }
}
.small-note { font-size: .875rem; line-height: 1.65; color: var(--muted); margin: 18px 0 0; }
.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 4vw, 48px); }
.editorial-panel { padding: clamp(24px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,242,200,.025); }
.editorial-panel h3, .visit-address h3 { font: 700 clamp(1.8rem, 3vw, 2.5rem)/1.12 "Barlow Condensed", sans-serif; margin: 0 0 22px; }
.editorial-panel p { color: var(--muted); }
.editorial-panel p:last-child { margin-bottom: 0; }
.editorial-panel p + h3 { margin-top: 30px; }
.plain-checks { display: grid; gap: 20px; }
.plain-checks li { position: relative; padding-left: 24px; color: var(--muted); }
.plain-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.journey-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 5vw, 64px); }
.journey-steps li { display: flex; gap: 24px; padding: 30px 0; border-top: 1px solid var(--line); }
.journey-number { color: var(--gold); font: 500 2.8rem/1 "Barlow Condensed", sans-serif; min-width: 42px; }
.journey-steps h3 { font: 700 1.65rem/1.2 "Barlow Condensed", sans-serif; margin: 0 0 12px; }
.journey-steps p { margin: 0; color: var(--muted); }
.questions-list { max-width: 860px; }
.question { border-top: 1px solid var(--line); }
.question:last-child { border-bottom: 1px solid var(--line); }
.question summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 23px 0; cursor: pointer; list-style: none; font-size: 1.0625rem; font-weight: 600; }
.question summary::-webkit-details-marker { display: none; }
.question summary span { flex: none; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform 180ms; }
.question[open] summary span { transform: rotate(45deg); }
.question[open] summary { color: var(--gold-pale); }
.question > div { max-width: 72ch; padding: 0 28px 24px 0; color: var(--muted); }
.question p:last-child { margin: 0; }
.question a { color: var(--gold-pale); text-decoration: underline; text-underline-offset: 4px; }
.first-visit-hero { border-bottom: 1px solid var(--line); }
.first-visit-hero h1 { max-width: 16ch; font-size: clamp(3.4rem, 7vw, 7rem); line-height: 1; }
.visit-address { padding: clamp(28px, 4vw, 48px); background: linear-gradient(145deg, rgba(196,97,42,.17), rgba(212,168,67,.03)); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.visit-address address { font-style: normal; font-size: 1.125rem; color: var(--muted); margin-bottom: 28px; }
.progress-note { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 30px; border-left: 2px solid var(--copper); padding: 28px 32px; margin-top: 36px; background: rgba(196,97,42,.05); }
.progress-note p { margin: 0; color: var(--muted); }
.editorial-letter { max-width: 780px; border-left: 2px solid var(--copper); padding: 0 0 0 clamp(24px, 4vw, 48px); font-size: clamp(1.0625rem, 2vw, 1.25rem); color: var(--muted); }
.letter-signature { display: block; font: italic 500 2.2rem "Barlow Condensed", sans-serif; color: var(--gold-pale); margin-top: 26px; }
.life-authentic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: auto; gap: 20px; }
.life-authentic-grid .gallery-item { grid-row: auto; height: auto; min-height: 300px; aspect-ratio: 4 / 5; }
textarea.form-input { height: auto; min-height: 132px; resize: vertical; font-family: inherit; line-height: 1.6; }
.form-label { font-size: .875rem; text-transform: none; letter-spacing: 0; }
.form-input, .form-select { font-size: 1rem; }
.form-input:focus-visible, .form-select:focus-visible { outline: 2px solid var(--gold-pale); outline-offset: 3px; }
.profile-card-kicker, .profile-card-footer { font-size: .75rem; }
.form-note { font-size: .875rem; line-height: 1.6; }
.footer-links { flex-wrap: wrap; max-width: 620px; row-gap: 14px; }
.footer-links a { font-size: .875rem; padding-block: 8px; }
.contact-profile-meta, .small-note, .service-detail-link { overflow-wrap: anywhere; }
.faq-item.open .faq-a { max-height: none; }
.faq-a p { font-size: 1rem; line-height: 1.7; }
html:not(.has-js) .faq-a { max-height: none; }
.nav-links { gap: clamp(12px, 1.5vw, 22px); font-size: .875rem; }
.mobile-menu { align-items: stretch; justify-content: flex-start; padding: 116px 24px 40px; gap: 0; }
.mobile-menu a { width: min(100%, 560px); margin-inline: auto; font-size: clamp(1.5rem, 4vw, 2rem); padding: 10px 18px; }
html:not(.has-js) .hamburger { display: none; }
@media (max-width: 1180px) {
  html:not(.has-js) .mobile-menu { display: flex; position: static; padding: 24px; background: transparent; }
}
@media (max-width: 800px) {
  .starting-grid, .online-hero-grid { grid-template-columns: 1fr; }
  .fit-grid, .journey-steps { grid-template-columns: 1fr; }
  .online-note { max-width: 620px; }
  .starting-card h3 br { display: none; }
  .starting-card a { margin-top: 12px; }
  .progress-note { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .life-authentic-grid { grid-template-columns: 1fr; }
  .life-authentic-grid .gallery-item { max-height: 520px; }
  .experience-section .section-heading h2 { font-size: clamp(2rem, 5vw, 3rem); }
}
@media (max-width: 520px) {
  .hero h1.hero-quote { font-size: clamp(2.6rem, 10.5vw, 3.5rem); }
  .hero-sub, .page-hero-sub { font-size: 1rem; line-height: 1.7; }
  .page-hero { padding-top: 60px; }
  .online-hero h1, .first-visit-hero h1 { font-size: clamp(2.8rem, 11vw, 4rem); }
  .journey-steps li { gap: 18px; }
  .hero-actions .btn { width: 100%; }
  .footer-links { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .has-js .reveal { opacity: 1 !important; transform: none !important; }
}

/* Booking: native Calendly colours, visible event details, no masking or iframe filters. */
.calendly-shell { border-color: rgba(212,168,67,.3); border-top: 3px solid var(--copper); background: #100f0c; }
.booking-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: clamp(22px, 4vw, 36px); border-bottom: 1px solid var(--line); background: linear-gradient(110deg, rgba(196,97,42,.1), transparent); }
.booking-heading .eyebrow { margin-bottom: 10px; }
.booking-heading h3 { margin: 0; font: 700 clamp(1.8rem, 3vw, 2.5rem)/1.15 "Barlow Condensed", sans-serif; }
.booking-secure { color: var(--muted); font-size: .875rem; }
.booking-guide span { font-size: .875rem; }
.selected-service-badge { font-size: .875rem; letter-spacing: 0; }
.calendly-embed { width: 100%; min-width: 0; min-height: 780px; height: 780px; }
.calendly-embed iframe { display: block; border: 0; width: 100%; color-scheme: light; background: #100f0c; }
.calendly-loading { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 30px 20px; color: var(--muted); }
.calendly-loading p { margin: 0; }
.booking-loader { width: 22px; height: 22px; flex: none; border: 2px solid var(--line); border-top-color: var(--gold); border-radius: 50%; }
.booking-help { display: flex; justify-content: space-between; align-items: start; gap: 24px; margin-top: 20px; color: var(--muted); font-size: .875rem; }
.booking-help p { max-width: 64ch; margin: 0; }
.booking-help a { flex: none; color: var(--gold-pale); min-height: 44px; }
.calendly-config-notice { min-height: 180px; padding: 28px; }
.calendly-config-notice a { color: var(--gold-pale); text-decoration: underline; overflow-wrap: anywhere; }
.calendly-success { border-color: var(--line); background: linear-gradient(145deg, rgba(212,168,67,.1), #100f0c); padding: 36px 24px; }
.calendly-success.visible > svg { color: var(--gold); }
.calendly-footnote { font-size: .875rem; }
/* Keep an amount and its currency together without inheriting caption styles. */
span.price-amount {
  display: inline-block;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font: inherit;
  color: inherit;
}
@media (max-width: 700px) {
  .contact-calendar { padding-inline: 12px; }
  .calendly-shell { border-radius: 16px; }
  .booking-heading, .booking-help { flex-direction: column; gap: 16px; }
  .booking-guide span { flex-direction: column; gap: 6px; padding: 12px 8px; font-size: .875rem; }
}
