/* =========================================================
   THE EXECUTIVE COACH — Main Stylesheet
   ========================================================= */

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

/* --- Custom Properties --- */
:root {
  --bg:           #0A0A0A;
  --surface:      #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8B8;
  --gold:         #D4AF37;
  --btn-bg:       #D4AF37;
  --btn-text:     #000000;
  --divider:      #1E1E1E;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
  --font-label:   'Cinzel', serif;
  --section-pad:  120px;
  --max-width:    1200px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.gold { color: var(--gold); }
.section-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }

/* --- Reveal Animations ---
   Initial hidden state lives here in CSS so elements are invisible
   before JS runs — no flash of content. Motion overrides via inline
   styles; .visible is the pure-CSS fallback path. */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  will-change: opacity, transform;
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }

/* CSS fallback transitions (used only when Motion is absent) */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.delay-1.visible { transition-delay: 0.12s; }
.delay-2.visible { transition-delay: 0.25s; }
.delay-3.visible { transition-delay: 0.40s; }
.delay-4.visible { transition-delay: 0.55s; }

/* --- Button --- */
.btn {
  display: inline-block;
  background: rgba(212,175,55,0.82);
  color: var(--btn-text);
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 18px 48px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::after { opacity: 1; }
.btn:hover {
  background: rgba(212,175,55,0.95);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.22);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); box-shadow: none; }

/* =========================================================
   NAVIGATION
   ========================================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s ease, padding 0.4s ease;
}
#nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 16px 40px;
  border-bottom: 1px solid var(--divider);
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
}
.nav-cta .btn { padding: 14px 32px; font-size: 0.6rem; }

/* =========================================================
   HERO
   ========================================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.75) 70%,
    rgba(10,10,10,0.97) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
#hero-subheadline {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1.4;
}
#hero-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-label);
  z-index: 2;
  animation: fadeInUp 1s ease 2.2s both;
}
/* Line + travelling dot */
.scroll-line {
  position: relative;
  width: 1px;
  height: 52px;
  background: rgba(212,175,55,0.2);
  overflow: visible;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 12px;
  margin-left: -1px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0));
  border-radius: 2px;
  animation: scrollDot 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
/* "SCROLL" text appears below the line */
.hero-scroll span {
  order: 2; /* text goes after the line in DOM if needed — or just keep DOM order */
}
@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(44px); opacity: 0; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =========================================================
   CREDENTIALS
   ========================================================= */
#credentials {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
#credentials-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 48px;
}
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 18px 0;
  border-bottom: 1px solid var(--divider);
}
.credential-item:last-child { border-bottom: none; }
.credential-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  transition: border-color var(--transition), background var(--transition);
}
.credential-icon svg {
  width: 20px;
  height: 20px;
}
.credential-item:hover .credential-icon {
  border-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.credentials-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.credentials-photo::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  right: -1px; bottom: -1px;
  border: 1px solid rgba(212,175,55,0.2);
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   WHO THIS IS FOR
   ========================================================= */
#who-this-is-for {
  padding: var(--section-pad) 0;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.section-headline {
  font-family: var(--font-label);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  color: var(--text-primary);
}
.who-intro {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.8;
  white-space: pre-line;
}
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--divider);
}
.bullet-item:last-child { border-bottom: none; }
.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
  flex-shrink: 0;
}
.who-closing {
  font-size: 0.95rem;
  color: var(--text-secondary);
  white-space: pre-line;
  line-height: 1.8;
}
.who-image {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

/* =========================================================
   PROBLEM & COST OF WAITING
   ========================================================= */
#problem, #cost-of-waiting {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
#cost-of-waiting { background: var(--bg); }
.prose-section {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.prose-section .section-headline {
  text-align: center;
}
.prose-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prose-paragraphs p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
}
.prose-paragraphs p:first-child {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--text-primary);
  font-weight: 300;
  line-height: 1.4;
}

/* =========================================================
   SOLUTION
   ========================================================= */
#solution {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.solution-photo {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.solution-intro {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  white-space: pre-line;
  line-height: 1.8;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.check-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.signature-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.4;
  padding: 40px 0;
  border-top: 1px solid rgba(212,175,55,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 48px;
  text-align: center;
}
.solution-cta-intro {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  white-space: pre-line;
  line-height: 1.8;
}

/* =========================================================
   RESULTS
   ========================================================= */
#results {
  padding: var(--section-pad) 0;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.results-photo {
  aspect-ratio: 2/3;
  overflow: hidden;
}
.results-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.results-intro {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 36px;
}
.results-closing {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
  line-height: 1.6;
}

/* =========================================================
   GOLD QUOTE
   ========================================================= */
#gold-quote {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#gold-quote::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.gold-quote-text {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* =========================================================
   TRANSFORMATIONS
   ========================================================= */
#transformations {
  padding: var(--section-pad) 0 0;
  background: var(--surface);
}
#transformations .section-headline { text-align: center; margin-bottom: 16px; }
.transformations-intro-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto 48px;
}

/* =========================================================
   FEATURED TRANSFORMATION SHOWCASE  (.tfs-*)
   ========================================================= */

.tf-showcase {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 0 0 80px;
}

.tfs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tfs-card:nth-child(even) { direction: rtl; }
.tfs-card:nth-child(even) > * { direction: ltr; }

/* ── Image side ── */
.tfs-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  background: #0c0c0c;
}
.tfs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.tfs-img-wrap:hover img { transform: scale(1.025); }

/* Expand button (top-right corner of image) */
.tfs-expand {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 2px;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  color: rgba(212,175,55,0.8);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, color 0.2s, border-color 0.2s;
}
.tfs-expand svg { width: 14px; height: 14px; }
.tfs-img-wrap:hover .tfs-expand { opacity: 1; }
.tfs-expand:hover { color: var(--gold); border-color: var(--gold); }

/* ── Text side ── */
.tfs-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tfs-num {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(212,175,55,0.45);
}
.tfs-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}
.tfs-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 20px;
}
.tfs-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.tfs-check {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 2px;
}

/* "More Transformations" divider label */
.tf-more-label {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 48px;
  padding: 0 clamp(24px,5vw,80px);
}
.tf-more-label::before,
.tf-more-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212,175,55,0.15);
}
.tf-more-label span {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.4);
  white-space: nowrap;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .tfs-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tfs-card:nth-child(even) { direction: ltr; }
  .tf-showcase { gap: 64px; }
  .tfs-expand { opacity: 1; }
}

/* =========================================================
   COVERFLOW CAROUSEL  (.cf-*)
   ========================================================= */

/* ── Outer wrapper ── */
.cf-wrap {
  position: relative;
  width: 100%;
  padding: 0 0 48px;
  outline: none;
  overflow: hidden;
}

/* ── 3-D stage ── */
.cf-stage {
  position: relative;
  width: 100%;
  height: clamp(360px, 58vh, 640px);
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
}

/* ── Individual slide ── */
.cf-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: clamp(200px, 26vw, 360px);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  transition: box-shadow 0.35s ease;
  outline: none;
}
.cf-slide.is-active {
  cursor: zoom-in;
  box-shadow: 0 24px 72px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,55,0.18);
}
.cf-slide--featured {
  width: clamp(260px, 34vw, 460px);
}

/* ── Image container ── */
.cf-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Arrow buttons ── */
.cf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 40px));
  z-index: 20;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.28);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.cf-prev { left: clamp(12px, 3vw, 40px); }
.cf-next { right: clamp(12px, 3vw, 40px); }
.cf-arrow:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold);
  transform: translateY(calc(-50% - 40px)) scale(1.06);
}

/* ── Caption area ── */
.cf-caption-area {
  position: relative;
  max-width: 720px;
  margin: 28px auto 0;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cf-counter {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(212,175,55,0.55);
}
.cf-caption {
  min-height: 60px;
}
.cf-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.cf-text {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.cf-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  align-self: stretch;
}
.cf-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.cf-check {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 2px;
}
.cf-expand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.7);
  background: transparent;
  border: 1px solid rgba(212,175,55,0.22);
  padding: 8px 18px;
  border-radius: 2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.cf-expand svg { width: 14px; height: 14px; }
.cf-expand:hover { color: var(--gold); border-color: rgba(212,175,55,0.6); background: rgba(212,175,55,0.06); }

/* ── Dot navigation ── */
.cf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.cf-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(212,175,55,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.cf-dot.is-active {
  background: var(--gold);
  transform: scale(1.5);
}
.cf-dot:hover:not(.is-active) { background: rgba(212,175,55,0.55); }

/* ── Lightbox ── */
.cf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-lightbox[hidden] { display: none; }
.cf-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,4,0.96);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}
.cf-lb-frame {
  position: relative;
  z-index: 2;
  max-width: min(90vw, 560px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-lb-frame img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.85);
}
.cf-lb-close {
  position: absolute;
  top: 20px; right: 24px;
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.cf-lb-close:hover { color: var(--gold); border-color: var(--gold); }
.cf-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(10,10,10,0.7);
  border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.cf-lb-prev { left: 20px; }
.cf-lb-next { right: 20px; }
.cf-lb-arrow:hover { background: rgba(212,175,55,0.12); border-color: var(--gold); }
.cf-lb-counter {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(212,175,55,0.5);
  z-index: 10;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cf-stage   { height: clamp(340px, 88vw, 520px); }
  .cf-slide   { width: clamp(170px, 66vw, 300px); }
  .cf-slide--featured { width: clamp(195px, 74vw, 330px); }
  .cf-arrow   { width: 44px; height: 44px; font-size: 1.9rem; }
}
@media (max-width: 480px) {
  .cf-stage   { height: clamp(300px, 100vw, 430px); }
  .cf-slide   { width: clamp(150px, 76vw, 260px); }
  .cf-slide--featured { width: clamp(170px, 84vw, 290px); }
  .cf-arrow   { width: 40px; height: 40px; font-size: 1.7rem; }
  .cf-lb-arrow { width: 44px; height: 44px; font-size: 1.8rem; }
  .cf-lb-prev { left: 8px; }
  .cf-lb-next { right: 8px; }
}
/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--bg);
}
#testimonials .section-headline {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--divider);
}
.testimonial-card img { width: 100%; height: auto; display: block; }

/* =========================================================
   WHY WORK WITH ME
   ========================================================= */
#why-work-with-me {
  padding: var(--section-pad) 0;
  background: var(--surface);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.why-photo {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-paragraphs p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
}
.why-paragraphs p:first-child {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--text-primary);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
}

/* =========================================================
   STRATEGY CALL / FINAL CTA
   ========================================================= */
#strategy-call {
  padding: var(--section-pad) 0;
  background: var(--bg);
  text-align: center;
}
.strategy-content {
  max-width: 700px;
  margin: 0 auto;
}
.strategy-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}
.strategy-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.strategy-check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.strategy-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  white-space: pre-line;
  line-height: 1.9;
  text-align: left;
}
.strategy-cta-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
}
.strategy-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--bg);
  border-top: 1px solid var(--divider);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 440px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.footer-link {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.footer-link:hover { color: var(--gold); }
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
/* ── Footer contact row ── */
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-email {
  font-size: 0.75rem;
  color: rgba(212,175,55,0.6);
  letter-spacing: 0.12em;
  text-decoration: none;
  font-family: var(--font-heading);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold); }
.footer-contact-btn {
  background: none;
  border: 1px solid rgba(212,175,55,0.3);
  color: rgba(212,175,55,0.6);
  padding: 7px 18px;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.2s;
}
.footer-contact-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── Contact divider ── */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px auto 28px;
  max-width: 300px;
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── Contact button ── */
.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 44px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* ── Contact Modal ── */
.contact-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal.open { display: flex; }
.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(4px);
}
.contact-modal-box {
  position: relative;
  background: #0f0f0f;
  border: 1px solid rgba(212,175,55,0.15);
  padding: 48px 40px;
  width: 100%;
  max-width: 520px;
  z-index: 1;
}
.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}
.contact-modal-close:hover { color: #fff; }
.contact-modal-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 8px;
}
.contact-modal-title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-field { margin-bottom: 12px; }
.contact-field input,
.contact-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-primary);
  padding: 13px 16px;
  font-size: 0.82rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
  resize: none;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.contact-field input:focus,
.contact-field textarea:focus { outline: none; border-color: rgba(212,175,55,0.5); }
.btn-contact-submit {
  width: 100%;
  background: var(--gold);
  color: #000;
  border: none;
  padding: 15px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-contact-submit:hover { background: #c9a82e; }
.contact-status {
  margin-top: 14px;
  font-size: 0.78rem;
  text-align: center;
  min-height: 18px;
  color: var(--gold);
}
.contact-status.error { color: #ff6b7a; }
@media (max-width: 600px) {
  .contact-modal-box { padding: 36px 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION HIDDEN (ADMIN)
   ========================================================= */
.section-hidden { display: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }

  .credentials-grid,
  .who-grid,
  .solution-grid,
  .results-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .credentials-photo { order: -1; aspect-ratio: 4/3; }
  .who-image { position: static; aspect-ratio: 4/3; }
  .solution-photo { position: static; aspect-ratio: 4/3; }
  .results-photo { aspect-ratio: unset; width: 100%; }
  .results-photo img { width: 100%; height: auto; object-fit: unset; display: block; }
  .why-photo { position: static; aspect-ratio: unset; width: 100%; }
  .why-photo img { width: 100%; height: auto; object-fit: unset; display: block; }

  .transformation-large { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  #nav { padding: 18px 24px; }
  #nav.scrolled { padding: 14px 24px; }
  .nav-cta { display: none; }

  .hero-content { padding: 0 24px; }
  #hero-headline { font-size: 2.2rem; }
}

@media (max-width: 600px) {
  :root { --section-pad: 60px; }
  .transformation-small { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .strategy-btns .btn { width: 100%; text-align: center; }
}
