/* =========================================================
   Rally Reel Media — Revamp
   Linear/Vercel-style minimal. Navy + Cream + one accent.
   ========================================================= */

:root {
  /* Palette — refined, monochrome with a single vivid accent */
  --bone:        #F4EFE3;   /* primary canvas */
  --bone-2:      #ECE6D6;   /* slightly deeper section bg */
  --paper:       #FBF8F0;   /* lifted surface */
  --ink:         #0A1628;   /* deep navy, primary text */
  --ink-2:       #1A2742;   /* secondary navy */
  --ink-3:       #2E3A52;
  --mute:        #5C6577;   /* body / muted text */
  --mute-2:      #8A8F9C;
  --line:        rgba(10, 22, 40, 0.10);
  --line-soft:   rgba(10, 22, 40, 0.05);

  /* Single vivid accent — amber */
  --accent:      #E8A93C;
  --accent-hi:   #F5C04A;
  --accent-soft: rgba(232, 169, 60, 0.14);

  /* Type */
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans:  'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max: 1280px;
  --pad: 40px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bone); }

/* =========================================================
   Reusable atoms
   ========================================================= */

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.eyebrow--gold { color: var(--accent); }
.eyebrow--gold::before { background: var(--accent); }
.eyebrow--cream { color: var(--bone); }
.eyebrow--cream::before { background: var(--accent); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hairline {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  background: none;
}

.btn--primary {
  background: var(--ink);
  color: var(--bone);
}
.btn--primary:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: var(--ink);
}
.btn--accent:hover {
  background: var(--accent-hi);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(232, 169, 60, 0.55);
}

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

.btn--invert {
  background: var(--bone);
  color: var(--ink);
}
.btn--invert:hover {
  background: var(--accent);
}

.btn .arr {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arr { transform: translateX(3px); }

.btn--sm { padding: 9px 16px; font-size: 13px; }

/* Disabled / loading state — used by the contact form while submitting */
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}
.btn.is-loading { cursor: progress; }

.btn__spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 8px;
  animation: btnSpin 0.7s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
/* Static fallback for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn__spinner { animation: none; border-right-color: currentColor; }
}

/* =========================================================
   Navigation
   ========================================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(244, 239, 227, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.012em;
  cursor: pointer;
  line-height: 1;
}
.brand__mark {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.brand__text { display: inline-flex; align-items: baseline; gap: 4px; }
.brand__llc {
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 2px;
  position: relative;
  top: -1px;
}
.brand em {
  font-style: italic;
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 4px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.04);
  border: 1px solid var(--line-soft);
}
.nav__links a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__links a.is-active {
  background: var(--bone);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(10,22,40,0.06);
}
.nav__cta {
  background: var(--ink) !important;
  color: var(--bone) !important;
  padding: 0 18px !important;
  height: 36px !important;
}
.nav__cta:hover {
  background: var(--accent) !important;
  color: var(--ink) !important;
}

.nav__burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}
.nav__burger span::before { top: -5px; }
.nav__burger span::after  { top: 5px; }

/* =========================================================
   Pages
   ========================================================= */

.page {
  display: none;
  padding-top: var(--nav-h);
  min-height: 100vh;
}
.page.is-active { display: block; }

section {
  padding: 120px 0;
  position: relative;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 50% at 50% 0%, var(--accent-soft) 0%, transparent 60%),
    linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
  z-index: -1;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 22, 40, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 22, 40, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 30%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  text-align: center;
  padding: 40px 0 64px;
}

.hero__eyebrow-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 8.5vw, 124px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  position: relative;
}

.hero__sub {
  font-size: 18px;
  color: var(--mute);
  max-width: 540px;
  margin: 36px auto 0;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Hero visual stage */
.hero__stage {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 64px auto 0;
  aspect-ratio: 16/9;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232,169,60,0.18), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, #060F1F 100%);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 60px 120px -40px rgba(10,22,40,0.45),
    0 20px 40px -20px rgba(10,22,40,0.3);
  border: 1px solid rgba(232,169,60,0.18);
}
.hero__stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero__viewfinder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__viewfinder svg { width: 100%; height: 100%; }

/* Scanning sweep across the stage */
.hero__scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 48%,
    rgba(232,169,60,0.14) 49.5%,
    rgba(232,169,60,0.28) 50%,
    rgba(232,169,60,0.14) 50.5%,
    transparent 52%,
    transparent 100%);
  mix-blend-mode: screen;
  animation: scanSweep 6.5s linear infinite;
  opacity: 0.7;
}
@keyframes scanSweep {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Subject puck animation when idle */
#subject circle:nth-child(1) { animation: subjectPulseOuter 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
#subject circle:nth-child(2) { animation: subjectPulseInner 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes subjectPulseOuter {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50%     { transform: scale(1.25); opacity: 0.7; }
}
@keyframes subjectPulseInner {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%     { transform: scale(1.15); opacity: 1; }
}

/* Reticle slow rotation on outer ring — done via JS class */
#reticle { transition: transform 0.18s var(--ease-out); }
#subject { transition: none; }

/* Hint pill */
.hero__hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.85);
  background: rgba(10,22,40,0.55);
  border: 1px solid rgba(232,169,60,0.25);
  backdrop-filter: blur(8px);
  padding: 9px 16px;
  border-radius: 999px;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.hero__hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,169,60,0.18);
  animation: pulse 2s ease-in-out infinite;
}
.hero__hint.is-hidden { opacity: 0; }

.hero__stage { cursor: crosshair; }

@media (max-width: 720px) {
  .hero__hint { font-size: 9.5px; padding: 7px 12px; bottom: 14px; }
}

.hero__badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,22,40,0.6);
  border: 1px solid rgba(232,169,60,0.3);
  backdrop-filter: blur(8px);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero__badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,169,60,0.2);
  animation: pulse 2s ease-in-out infinite;
}
.hero__badge--tl { top: 24px; left: 24px; }
.hero__badge--tr { top: 24px; right: 24px; }
.hero__badge--bl { bottom: 24px; left: 24px; }
.hero__badge--br { bottom: 24px; right: 24px; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(232,169,60,0.2); }
  50%     { box-shadow: 0 0 0 8px rgba(232,169,60,0); }
}

/* Hero caption removed — replaced by interactive hint */

/* Sport ticker beneath hero */
.ticker {
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  background: var(--bone);
}
.ticker__track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.ticker__item em {
  font-style: italic;
  color: var(--accent);
}
.ticker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   Section title block
   ========================================================= */

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: italic;
  color: var(--accent);
}
.sec-head__meta {
  padding-bottom: 6px;
}
.sec-head__meta p {
  font-size: 16px;
  color: var(--mute);
  line-height: 1.55;
  max-width: 460px;
  margin-top: 16px;
}

/* =========================================================
   PILLARS
   ========================================================= */

.pillars {
  background: var(--ink);
  color: var(--bone);
}
.pillars .sec-head h2 { color: var(--bone); }
.pillars .sec-head__meta p { color: rgba(244,239,227,0.65); }

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pillar {
  position: relative;
  padding: 40px;
  border-radius: 16px;
  background: rgba(244,239,227,0.03);
  border: 1px solid rgba(244,239,227,0.08);
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}
.pillar:hover {
  background: rgba(244,239,227,0.06);
  border-color: rgba(232,169,60,0.3);
  transform: translateY(-2px);
}
.pillar__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 24px;
}
.pillar__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 32px;
  color: var(--accent);
}
.pillar__icon svg { width: 100%; height: 100%; }

.pillar h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 380px;
}
.pillar p {
  color: rgba(244,239,227,0.72);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 480px;
}
.pillar__list {
  list-style: none;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,239,227,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(244,239,227,0.65);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.pillar__list li::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process {
  padding: 140px 0;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--line) 0%,
    var(--line) 80%,
    transparent 100%
  );
}
.process__step {
  position: relative;
  padding-top: 0;
}
.process__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--ease);
}
.process__step:hover .process__num {
  background: var(--accent);
  border-color: var(--accent);
}
.process__step h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 10px;
}
.process__step p {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.6;
  max-width: 240px;
}

/* =========================================================
   STAT STRIP
   ========================================================= */

.stats {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  padding: 0 24px;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}
.stat__num em {
  font-style: italic;
  color: var(--accent);
}
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* =========================================================
   FEATURE SPOTLIGHT (HOME)
   ========================================================= */

.spotlight {
  padding: 140px 0;
  background: var(--bone-2);
}
.spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spotlight__copy h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 24px 0 24px;
  max-width: 520px;
}
.spotlight__copy h3 em { font-style: italic; color: var(--accent); }
.spotlight__copy p {
  font-size: 16px;
  color: var(--mute);
  line-height: 1.65;
  max-width: 460px;
}
.spotlight__features {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}
.spotlight__features li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.spotlight__features li:last-child { border-bottom: 1px solid var(--line); }
.spotlight__features li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.spotlight__visual {
  position: relative;
  aspect-ratio: 1/1.1;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 32px;
}
.spotlight__visual svg { display: block; }

/* =========================================================
   FINAL CTA
   ========================================================= */

.cta-end {
  padding: 140px 0;
  text-align: center;
}
.cta-end__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta-end__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(232,169,60,0.25), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(232,169,60,0.15), transparent 50%);
  pointer-events: none;
}
.cta-end__inner > * { position: relative; }
.cta-end h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 28px 0 20px;
}
.cta-end h2 em { font-style: italic; color: var(--accent); }
.cta-end p {
  color: rgba(244,239,227,0.7);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-end__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, var(--accent-soft), transparent 60%);
  z-index: -1;
}
.about-hero__inner {
  padding: 80px 0 100px;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 28px;
  color: var(--ink);
}
.about-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.about-hero__sub {
  font-size: 18px;
  color: var(--mute);
  max-width: 580px;
  margin: 32px auto 0;
}

.about-body {
  padding: 100px 0 140px;
}
.about-body__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.about-body__side {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.about-quote {
  padding: 40px;
  border-radius: 20px;
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.about-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232,169,60,0.18), transparent 60%);
}
.about-quote__mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 24px;
}
.about-quote p {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--bone);
}
.about-quote__author {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 32px;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.about-text h2 em { font-style: italic; color: var(--accent); }
.about-text p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-text p.lead {
  font-size: 19px;
  color: var(--ink);
}
.about-text p.lead::first-letter {
  font-family: var(--serif);
  font-size: 56px;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--accent);
}

.about-values {
  margin-top: 56px;
  display: grid;
  gap: 0;
}
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.value-item:last-child { border-bottom: 1px solid var(--line); }
.value-item__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 4px;
}
.value-item h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.value-item p {
  font-size: 15px;
  color: var(--mute);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   PACKAGES
   ========================================================= */

.pkg-hero {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.pkg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, var(--accent-soft), transparent 60%);
  z-index: -1;
}
.pkg-hero__inner {
  padding: 80px 0 80px;
  text-align: center;
}
.pkg-hero h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 28px;
  color: var(--ink);
}
.pkg-hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.pkg-hero__sub {
  font-size: 18px;
  color: var(--mute);
  max-width: 580px;
  margin: 32px auto 0;
}

.pkg-body {
  padding: 60px 0 140px;
}
.pkg-group { margin-bottom: 80px; }
.pkg-group:last-child { margin-bottom: 0; }

.pkg-group__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.pkg-group__head h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pkg-group__head h3 em {
  font-style: italic;
  color: var(--accent);
}
.pkg-group__head .eyebrow { padding-bottom: 8px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.pkg-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink-3);
  box-shadow: 0 30px 60px -30px rgba(10,22,40,0.18);
}
.pkg-card--featured {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(232, 169, 60, 0.3);
}
.pkg-card--featured:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 40px 80px -30px rgba(232, 169, 60, 0.35);
}

.pkg-card__tag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.pkg-card__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.pkg-card__desc {
  font-size: 14.5px;
  color: var(--mute);
  line-height: 1.55;
  margin-bottom: 28px;
  min-height: 44px;
}
.pkg-card--featured .pkg-card__desc {
  color: rgba(244,239,227,0.65);
}
.pkg-card__price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 6px;
}
.pkg-card--featured .pkg-card__price { color: var(--bone); }
.pkg-card__unit {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 28px;
}
.pkg-card--featured .pkg-card__unit { color: var(--accent); }

.pkg-card__features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.pkg-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
}
.pkg-card--featured .pkg-card__features li {
  color: rgba(244,239,227,0.78);
  border-color: rgba(244,239,227,0.08);
}
.pkg-card__features li svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}
.pkg-card__cta {
  width: 100%;
  justify-content: center;
}
.pkg-card--featured .pkg-card__cta {
  background: var(--accent);
  color: var(--ink);
}
.pkg-card--featured .pkg-card__cta:hover {
  background: var(--accent-hi);
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  padding: 80px 0 140px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 96px;
  align-items: start;
  padding-top: 64px;
}
.contact__info h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 28px 0 28px;
}
.contact__info h1 em { font-style: italic; color: var(--accent); }
.contact__intro {
  color: var(--mute);
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 48px;
}
.contact__details {
  display: flex;
  flex-direction: column;
}
.contact__detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.contact__detail:last-child { border-bottom: 1px solid var(--line); }
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact__detail-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.contact__detail-value {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}

.contact__form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px;
}
.contact__form h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 0.3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 14px 18px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--ink);
  font-size: 14px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.form-success.is-show { display: block; }
.form-success.is-error {
  background: rgba(204, 68, 68, 0.10);
  border-color: #CC4444;
  color: var(--ink);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  margin-top: 8px;
}

/* =========================================================
   BOOK / PAY
   ========================================================= */

.book {
  padding: 80px 0 140px;
}
.book__head {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 64px;
}
.book__head h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 28px auto 24px;
  max-width: 800px;
}
.book__head h1 em { font-style: italic; color: var(--accent); }
.book__head p {
  color: var(--mute);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pay-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.pay-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 30px 60px -30px rgba(10,22,40,0.16);
}
.pay-card__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.pay-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.pay-card__desc {
  font-size: 13.5px;
  color: var(--mute);
  line-height: 1.55;
  margin-bottom: 24px;
  flex: 1;
}
.pay-card__price {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.pay-card__price small {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  margin-left: 6px;
  font-weight: 400;
}
.pay-card .btn { justify-content: center; width: 100%; }

.pay-methods {
  margin-top: 80px;
  padding: 56px 48px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
}
.pay-methods h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 16px 0 8px;
}
.pay-methods > p {
  color: var(--mute);
  margin-bottom: 32px;
  font-size: 15px;
}
.pay-methods__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.pay-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--ink);
  color: rgba(244,239,227,0.7);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,169,60,0.15), transparent 50%);
  pointer-events: none;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  position: relative;
}
.footer__brand .brand { color: var(--bone); margin-bottom: 20px; font-size: 22px; }
.footer__brand .brand__mark { height: 44px; filter: drop-shadow(0 0 0 transparent); }
.footer__brand .brand__llc { color: rgba(244,239,227,0.5); }
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}
.footer__about {
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 360px;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  color: rgba(244,239,227,0.65);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(244,239,227,0.08);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(244,239,227,0.5);
  position: relative;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  color: rgba(244,239,227,0.5);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.footer__legal a:hover { color: var(--accent); }

/* =========================================================
   LEGAL pages
   ========================================================= */

.legal {
  padding: 100px 0 120px;
}
.legal__inner { max-width: 760px; margin: 0 auto; padding: 0 var(--pad); }
.legal h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal h1 em { font-style: italic; color: var(--accent); }
.legal__date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
  color: var(--ink);
}
.legal p,
.legal li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.legal ul { margin: 0 0 16px 24px; }
.legal ul li { margin-bottom: 4px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

/* =========================================================
   Scroll reveal
   ========================================================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .process__grid { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .process__grid::before { display: none; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .spotlight__grid,
  .about-body__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-body__side { position: static; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --pad: 22px; --nav-h: 64px; }
  section { padding: 80px 0; }
  .hero { padding: 40px 0 64px; }
  .hero__stage { margin-top: 40px; border-radius: 14px; }
  .hero__badge { font-size: 9.5px; padding: 6px 10px; }
  .hero__badge--tl, .hero__badge--bl { left: 12px; }
  .hero__badge--tr, .hero__badge--br { right: 12px; }
  .hero__badge--tl, .hero__badge--tr { top: 12px; }
  .hero__badge--bl, .hero__badge--br { bottom: 12px; }
  .hero__caption { font-size: 14px; bottom: 50px; }
  .ticker__item { font-size: 22px; }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: var(--pad);
    right: var(--pad);
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 24px 48px -16px rgba(10,22,40,0.18);
    gap: 4px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { width: 100%; height: 44px; padding: 0 16px; }
  .nav__burger { display: inline-flex; }

  .pkg-grid,
  .pay-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }
  .pkg-group__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-end__inner { padding: 48px 28px; }
  .pay-methods { padding: 40px 24px; }
  .about-body__grid,
  .spotlight__grid { gap: 32px; }

  .value-item { grid-template-columns: 1fr; gap: 8px; }
}
