:root {
  --paper: #eff2ed;
  --surface: #ffffff;
  --surface-2: #e6ebe1;
  --ink: #1e2a28;
  --ink-soft: #57645c;
  --ink-faint: #8a9389;
  --line: #d3d9cd;
  --accent: #b96b1f;
  --accent-ink: #7a4614;
  --accent-soft: #f2ddba;
  --teal: #2f6f62;
  --teal-soft: #dbe9e3;
  --shadow: 0 1px 2px rgba(30, 42, 40, 0.06);
  --shadow-lg: 0 12px 32px rgba(30, 42, 40, 0.12);

  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --font-body: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Fixed (non-theme-flipping) tokens for the always-dark hero/contact bands */
  --band-bg: #1e2a28;
  --band-text: #eff2ed;
  --band-text-soft: #b7c2ba;
  --band-line: #3a4841;
  --band-accent: #e3974c;
  --band-accent-ink: #f6d9ae;
  --band-accent-tint: rgba(227, 151, 76, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #131e1a;
    --surface: #1a2622;
    --surface-2: #21302a;
    --ink: #eef1ea;
    --ink-soft: #aab6ac;
    --ink-faint: #74847a;
    --line: #2b3a33;
    --accent: #e3974c;
    --accent-ink: #f6d9ae;
    --accent-soft: rgba(227, 151, 76, 0.16);
    --teal: #7dc2ae;
    --teal-soft: rgba(125, 194, 174, 0.14);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 3px;
  margin: 0 0 18px;
}

.section-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--accent); color: var(--surface); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 19px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}

.logo-mark { width: 22px; height: 22px; }
.logo-mark rect { fill: var(--accent); }

.site-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--ink); }

.nav-cta { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---------- Panels (full-height sections) ---------- */

.panel {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 64px;
  overflow: hidden;
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(227, 151, 76, 0.16), transparent 70%),
    var(--band-bg);
  color: var(--band-text);
  align-items: center;
  text-align: center;
}

.marquee {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6vw;
  opacity: 0.5;
  pointer-events: none;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 6vw, 4.2rem);
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--band-text) 22%, transparent);
}

.row-a { animation: scroll-rtl 34s linear infinite; }
.row-b { animation: scroll-ltr 34s linear infinite; font-size: clamp(1rem, 3vw, 1.8rem); letter-spacing: 0.06em; }

@keyframes scroll-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-ltr {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content .eyebrow {
  background: var(--band-accent-tint);
  color: var(--band-accent-ink);
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.accent-text { color: var(--band-accent); }

.hero-lead {
  margin: 24px 0 32px;
  font-size: 16.5px;
  color: var(--band-text-soft);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-primary {
  background: var(--band-accent);
  color: #1a1105;
}
.hero .btn-primary:hover { background: var(--band-text); color: var(--band-bg); }

.hero .btn-ghost {
  border-color: color-mix(in srgb, var(--band-text) 35%, transparent);
  color: var(--band-text);
}
.hero .btn-ghost:hover { border-color: var(--band-text); }

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: none;
  border: none;
  color: color-mix(in srgb, var(--band-text) 65%, transparent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.scroll-cue-dot {
  width: 1px;
  height: 26px;
  background: currentColor;
  animation: cue-move 1.8s ease-in-out infinite;
}

@keyframes cue-move {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ---------- Services ---------- */

.services { background: var(--paper); }

.services .section-inner {
  text-align: center;
  margin-bottom: 44px;
}
.services .eyebrow { margin-left: auto; margin-right: auto; }

.section-lead {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 52ch;
  margin: 14px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  list-style: none;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -14px rgba(227, 151, 76, 0.3), var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.card.signature,
.card.flagship {
  padding-top: 30px;
  overflow: hidden;
}
.card.signature::before,
.card.flagship::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.card.signature::before { background: linear-gradient(90deg, var(--accent), #f6d9ae); }
.card.flagship::before { background: linear-gradient(90deg, var(--teal), var(--accent)); }

.card.signature {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(165deg, var(--surface) 70%, var(--accent-soft) 150%);
}
.card.signature:hover {
  box-shadow: 0 24px 48px -14px rgba(227, 151, 76, 0.45), var(--shadow-lg);
}

.card.flagship {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(165deg, var(--surface) 70%, var(--teal-soft) 150%);
}
.card.flagship:hover {
  box-shadow: 0 24px 48px -14px rgba(47, 111, 98, 0.4), var(--shadow-lg);
  border-color: var(--teal);
}

.card-tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 3px 9px;
  border-radius: 20px;
}

.card.signature .card-tag { color: var(--accent-ink); background: var(--accent-soft); }
.card.flagship .card-tag { color: var(--teal); background: var(--surface); border: 1px solid var(--teal); }

.card h3 { font-size: 19px; }

.card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.card-detail-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  align-self: flex-start;
}

.business-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 30px 36px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 12px;
}

.business-banner-text { max-width: 640px; }
.business-banner-text h3 { font-size: 19px; margin: 10px 0 8px; }
.business-banner-text p { font-size: 14px; color: var(--ink-soft); margin: 0 0 10px; }

.business-banner-action {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.business-banner-action .card-price { border-top: none; padding-top: 0; }
.business-banner-action .card-pay-btn { white-space: nowrap; }

@media (max-width: 700px) {
  .business-banner { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
  .business-banner-action { align-items: flex-start; width: 100%; }
  .business-banner-action .card-pay-btn { width: 100%; }
}
.card-detail-link:hover { text-decoration: underline; }

.card-price {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 600;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.card-price span { font-size: 13px; font-weight: 400; color: var(--ink-faint); }

.card-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease;
}
.card-pay-btn:hover { background: var(--accent); color: var(--surface); }
.card.signature .card-pay-btn { background: var(--accent); color: var(--surface); }
.card.signature .card-pay-btn:hover { background: var(--ink); color: var(--paper); }
.card.flagship .card-pay-btn { background: var(--teal); color: var(--surface); }
.card.flagship .card-pay-btn:hover { background: var(--ink); color: var(--paper); }

/* ---------- Reviews ---------- */

.reviews { background: var(--paper); }

.review-grid {
  columns: 4 260px;
  column-gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.review-card {
  position: relative;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(227, 151, 76, 0.35), var(--shadow-lg);
}

.review-card img {
  display: block;
  width: 100%;
  height: auto;
}

.review-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: none;
}
.review-card:hover .review-card-overlay { background: rgba(15, 20, 18, 0.3); }

.review-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.review-card:hover .review-card-icon { opacity: 1; transform: scale(1); }
.review-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
}

.review-badge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 26px 16px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 16, 15, 0.88), transparent);
}

.review-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4dabf7;
  flex: none;
}

/* ---------- Success Stories ---------- */

.success-stories { background: var(--surface-2); }

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.success-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.success-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 56px -16px rgba(227, 151, 76, 0.4);
}

.success-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Review lightbox ---------- */

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.review-lightbox[hidden] { display: none; }

.review-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.75);
  backdrop-filter: blur(3px);
}

.review-lightbox-panel {
  position: relative;
  max-width: min(560px, 100%);
  max-height: 90vh;
  display: flex;
}

.review-lightbox-panel img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.review-lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-lightbox-close:hover { background: var(--accent); color: var(--surface); }

/* ---------- Watch ---------- */

.watch { background: var(--surface-2); align-items: center; }

.watch-inner {
  text-align: center;
  margin-bottom: 32px;
}
.watch-inner .eyebrow { margin-left: auto; margin-right: auto; }

.reel-grid {
  columns: 3 280px;
  column-gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.reel-placeholder,
.reel-frame {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 24px;
}

.reel-placeholder {
  max-width: 400px;
  min-height: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.reel-placeholder a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.reel-placeholder a:hover { text-decoration: underline; }

.reel-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.reel-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  z-index: 2;
}
.reel-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -14px rgba(227, 151, 76, 0.35), var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.reel-frame iframe,
.reel-frame .instagram-media {
  border-radius: 0 0 18px 18px !important;
}

/* ---------- About ---------- */

.about { background: var(--surface-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-copy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  margin: 0;
  text-wrap: balance;
}

.about-signature {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.stat-block {
  background: var(--surface);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s ease;
}
.stat-block:hover { background: var(--accent-soft); }

.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.process {
  width: 100%;
  max-width: 1080px;
  margin: 64px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.process-step {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.process-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
}

.process-step h4 {
  font-size: 17px;
  margin: 8px 0 6px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq { background: var(--surface-2); }

.faq-list {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 20px;
}

.faq-item summary {
  padding: 16px 28px 16px 0;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-content {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.faq-item[open] .faq-content {
  max-height: 400px;
  opacity: 1;
}

.faq-item p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 64ch;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--band-bg);
  color: var(--band-text);
  text-align: center;
  padding-bottom: 32px;
}

.contact .eyebrow {
  margin-left: auto;
  margin-right: auto;
  background: var(--band-accent-tint);
  color: var(--band-accent-ink);
}

.contact h2 {
  color: var(--band-text);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.contact .section-lead {
  color: var(--band-text-soft);
}

.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact .btn-primary { background: var(--band-accent); color: #1a1105; }
.contact .btn-primary:hover { background: var(--band-text); color: var(--band-bg); }
.contact .btn-ghost {
  border-color: color-mix(in srgb, var(--band-text) 35%, transparent);
  color: var(--band-text);
}

.site-footer {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 12px;
  color: color-mix(in srgb, var(--band-text) 50%, transparent);
}

/* ---------- Reveal-on-scroll ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(-26px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .row-a, .row-b, .scroll-cue-dot { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .card { opacity: 1; transform: none; transition: none; }
}

/* ---------- WhatsApp floating button ---------- */

.whatsapp-fab {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: #ffffff; }

@media (max-width: 480px) {
  .whatsapp-fab { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 25px; height: 25px; }
}

/* ---------- Pay modal ---------- */

.pay-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pay-modal[hidden] { display: none; }

.pay-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 18, 0.6);
  backdrop-filter: blur(3px);
}

.pay-modal-panel {
  position: relative;
  width: min(460px, 100%);
  height: min(680px, 90vh);
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pay-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-modal-close:hover { background: var(--accent); color: var(--surface); }

.pay-modal-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 560px) {
  .pay-modal { padding: 0; }
  .pay-modal-panel { width: 100%; height: 100%; border-radius: 0; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .process { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 760px) {
  .site-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px 32px 24px;
    gap: 16px;
  }

  .panel { padding: 100px 0 56px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .site-footer { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .header-inner { padding: 14px 20px; }
  .section-inner, .process, .site-footer { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 0 20px; }
  .services-grid { padding: 0 20px; grid-template-columns: 1fr; }
}

/* ---------- Detail page (career-clarity-session.html) ---------- */

.detail-hero {
  background: var(--band-bg);
  color: var(--band-text);
  padding: 140px 32px 72px;
  text-align: center;
}

.detail-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.back-link {
  align-self: flex-start;
  color: var(--band-text-soft);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 24px;
}
.back-link:hover { color: var(--band-text); }

.detail-hero .eyebrow {
  background: var(--band-accent-tint);
  color: var(--band-accent-ink);
}

.detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin: 0 0 18px;
  text-wrap: balance;
}

.detail-hero .hero-lead {
  color: var(--band-text-soft);
  max-width: 56ch;
  margin: 0 0 28px;
}

.detail-hero .btn-primary {
  background: var(--band-accent);
  color: #1a1105;
}
.detail-hero .btn-primary:hover { background: var(--band-text); color: var(--band-bg); }

.detail-section {
  padding: 72px 32px;
}
.detail-section-alt { background: var(--surface-2); }

.curriculum-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.curriculum-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 22px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.curriculum-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(227, 151, 76, 0.25);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.curriculum-time {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.curriculum-block h3 { font-size: 17px; margin: 0 0 12px; }

.curriculum-block ul {
  margin: 0;
  padding: 0 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.curriculum-block li { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.deliverables-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.deliverable-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}
.deliverable-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -12px rgba(227, 151, 76, 0.25);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}
.deliverable-item h3 { font-size: 16px; margin: 0 0 8px; color: var(--accent-ink); }
.deliverable-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

.outcome-section { text-align: center; }
.outcome-inner { display: flex; flex-direction: column; align-items: center; }
.outcome-inner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0 0 28px;
  text-wrap: balance;
}

.detail-footer {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--ink-faint);
}
.detail-footer a { color: var(--teal); text-decoration: none; }
.detail-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .detail-hero { padding: 120px 20px 56px; }
  .detail-section { padding: 56px 20px; }
  .detail-footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px 20px; }
}
