/* ================================================
   DESIGN TOKENS — edit these to retheme the site
   ================================================ */
:root {
  --bg:         #0f0f0f;
  --bg-2:       #141414;
  --bg-3:       #1a1a1a;
  --text:       #f3efe8;
  --text-muted: #9d9690;
  --accent:     #c9a96e;          /* warm gold — change this one value to retheme */
  --accent-dim: rgba(201,169,110,0.12);
  --green:      #2d7a4f;
  --green-dim:  rgba(45,122,79,0.12);
  --green-glow: rgba(45,122,79,0.18);
  --border:     rgba(243,239,232,0.08);
  --border-med: rgba(243,239,232,0.14);
  --radius:     6px;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-w:      1120px;
  --section-gap: 120px;
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
ul { list-style: none; }
details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
}

em {
  font-style: italic;
  color: var(--accent);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

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

/* ================================================
   LAYOUT
   ================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding: var(--section-gap) 0;
}

.section-intro {
  max-width: 580px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1.25rem;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0f0f0f;
}
.btn-primary:hover {
  background: #dabb85;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-med);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}

.wordmark {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
}

.wm-first {
  color: var(--text);
}

.wm-dot {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.9;
}

.wm-last {
  color: var(--accent);
  letter-spacing: 0.02em;
}

.wordmark:hover .wm-last {
  opacity: 0.8;
}

.primary-nav {
  display: flex;
  flex: 1;
}

.primary-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.primary-nav a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.primary-nav a:hover { color: var(--text); }

.nav-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.2s;
}

.mobile-nav {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-size: 1rem;
  color: var(--text-muted);
  display: block;
  padding: 0.25rem 0;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .btn { width: 100%; margin-top: 0.5rem; }

/* ================================================
   HERO
   ================================================ */
/* ── Sticky stacking: hero sits behind, gap slides over it ── */
.hero {
  position: sticky;
  top: 0;
  z-index: 1;
}

.gap-section {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 -6px 32px rgba(0,0,0,0.5);
}

/* Everything after the stack scrolls over it normally */
/* Semi-transparent so the ambient gradient bleeds through at reduced strength */
#process   { position: relative; z-index: 20; background: rgba(15,15,15,0.82); }
#proof     { position: relative; z-index: 20; background: rgba(15,15,15,0.88); }
#portfolio { position: relative; z-index: 20; background: rgba(15,15,15,0.80); }
#pricing   { position: relative; z-index: 20; background: rgba(15,15,15,0.88); }
#about     { position: relative; z-index: 20; background: rgba(15,15,15,0.85); }
#faq       { position: relative; z-index: 20; background: rgba(15,15,15,0.90); }
#contact   { position: relative; z-index: 20; background: rgba(15,15,15,0.82); }

/* ─────────────────────────────────────────── */

.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 80px);
  object-fit: cover;
  filter: blur(28px) brightness(0.28) saturate(1.4);
  transform: scale(1.05);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0.5rem 0 1.25rem;
  max-width: 800px;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 580px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.trust-strip strong { color: var(--text); font-weight: 500; }
.trust-strip .divider {
  margin: 0 1rem;
  color: var(--border-med);
}

/* ================================================
   COMPARISON TABLE
   ================================================ */
.gap-section { border-bottom: 1px solid var(--border); }
.gap-section h2 { margin-bottom: 2.5rem; }

.comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comp-row {
  display: grid;
  grid-template-columns: 160px repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }

.comp-cell {
  padding: 1.1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.comp-cell small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}

.comp-header .comp-cell {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  padding-bottom: 1.25rem;
}
.comp-header small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
}

.label-cell {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.highlight-col {
  background: var(--accent-dim);
  border-left: 1px solid rgba(201,169,110,0.2);
  border-right: 1px solid rgba(201,169,110,0.2);
}
.comp-header .highlight-col {
  border-top: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px 4px 0 0;
}
.comp-row:last-child .highlight-col {
  border-radius: 0 0 4px 4px;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

/* ================================================
   PROCESS
   ================================================ */
.process-section { border-bottom: 1px solid var(--border); }
.process-section h2 { margin-bottom: 3.5rem; }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--border); }

.step-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.1rem;
  letter-spacing: -0.03em;
}

.step-content h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}
.step-content p { color: var(--text-muted); font-size: 0.95rem; max-width: 620px; }

/* ================================================
   PROOF
   ================================================ */
.proof-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 740px;
  margin: 0 auto;
}

.proof-inner h2 { margin-bottom: 1.5rem; }
.proof-inner p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.25rem; }

.proof-stack {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.proof-stack li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
}
.proof-stack .accent-text { font-size: 0.8rem; }

.proof-close {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text) !important;
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* ================================================
   PORTFOLIO — 3D MACBOOK CAROUSEL (Three.js)
   ================================================ */
.portfolio-section {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding-bottom: 0;
}

.portfolio-header { margin-bottom: 3rem; }

/* ── Phone carousel ── */
.phone-carousel-wrap {
  width: 100%;
  padding: 2rem 0 0;
  overflow: hidden;
}

.phone-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0 2rem;
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
}

/* Slide: each phone card */
.phone-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
  /* width set by JS based on device */
  max-width: 260px;
}

/* Phone frame — CSS-only iPhone shape */
.phone-frame {
  position: relative;
  background: #1c1c1e;
  border-radius: 44px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 1px #444,
    0 0 0 3px #1c1c1e,
    0 0 0 5px #555,
    0 40px 90px rgba(0,0,0,0.7),
    0 0 0 6px rgba(201,169,110,0.15);
  width: 100%;
}

/* Notch / dynamic island */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

/* Side buttons */
.phone-frame::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 80px;
  width: 4px;
  height: 60px;
  background: #2e2e2e;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 70px 0 #2e2e2e;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 34px;
  overflow: hidden;
  background: #000;
}

.phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  display: block;
}

.phone-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  transition: color 0.2s;
}

/* Clickable phone slides */
.phone-cta-slide { cursor: pointer; }
.phone-cta-slide:hover .phone-label { color: var(--accent); }

.phone-cta-slide .phone-frame { transition: box-shadow 0.25s, transform 0.25s; }
.phone-cta-slide:hover .phone-frame {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px #666,
    0 0 0 3px #1c1c1e,
    0 0 0 5px rgba(201,169,110,0.6),
    0 50px 100px rgba(0,0,0,0.8),
    0 0 0 6px rgba(201,169,110,0.3);
}

/* Hover overlay on the screen */
.phone-cta-overlay {
  position: absolute;
  inset: 14px 10px;
  border-radius: 34px;
  background: rgba(10,10,10,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 3;
}
.phone-cta-slide:hover .phone-cta-overlay {
  opacity: 1;
  visibility: visible;
}

.phone-cta-overlay span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.5;
}

/* Controls */
.phone-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0 3rem;
}

.phone-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-med);
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-btn:hover { border-color: var(--accent); color: var(--accent); }
.phone-btn:disabled { opacity: 0.25; cursor: default; }

.phone-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.phone-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-med);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.phone-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ================================================
   PRICING
   ================================================ */
.pricing-section { border-bottom: 1px solid var(--border); }
.pricing-section h2 { margin-bottom: 0.75rem; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}
.price-card:hover { border-color: var(--border-med); }

.price-card.featured {
  border-color: rgba(201,169,110,0.4);
  background: linear-gradient(160deg, rgba(201,169,110,0.06) 0%, var(--bg-2) 60%);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0f0f0f;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}

.card-tier {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.currency {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 0.1rem;
  color: var(--accent);
}

.card-best {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 2.2em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

.card-features {
  flex: 1;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.card-features li {
  font-size: 0.875rem;
  padding-left: 1.2rem;
  position: relative;
}

/* Included feature */
.feat-in {
  color: var(--text-muted);
}
.feat-in::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* New in this tier — brighter */
.feat-new {
  color: var(--text) !important;
}
.feat-new::before {
  color: var(--accent) !important;
}

/* Not included — greyed with dash */
.feat-out {
  color: rgba(157,150,144,0.4);
  text-decoration: none;
}
.feat-out::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(157,150,144,0.3);
  font-size: 0.75rem;
}

/* Upgrade nudge strip */
.upgrade-nudge {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(243,239,232,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.upgrade-nudge strong { color: var(--text); }
.upgrade-nudge span { opacity: 0.7; }

.upgrade-nudge--gold {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.2);
  color: var(--accent);
}
.upgrade-nudge--gold strong { color: var(--accent); }

/* "Full package" callout on Premium */
.card-top-value {
  font-size: 0.78rem;
  color: var(--accent);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  margin-bottom: 1.25rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.card-cta { width: 100%; }

/* Add-ons */
.addons {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.addons h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.addon-item {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.addon-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 300;
}

/* Maintenance */
.maintenance {
  margin-top: 1.5rem;
  padding: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.maintenance-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.maintenance-text { flex: 1; }
.maintenance-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.maintenance-text p { font-size: 0.9rem; color: var(--text-muted); }
.maintenance-price {
  text-align: center;
  flex-shrink: 0;
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}
.price-big {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.price-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.maintenance-price p { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================
   ABOUT
   ================================================ */
.about-section { border-bottom: 1px solid var(--border); }

.about-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.photo-placeholder {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.will-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-story {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.about-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.about-text em { font-style: italic; color: var(--accent); }

.mission-statement {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.mission-statement p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text) !important;
  line-height: 1.65;
  margin: 0;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); }

/* ================================================
   FAQ
   ================================================ */
.faq-section { border-bottom: 1px solid var(--border); }
.faq-section h2 { margin-bottom: 3rem; }

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent); }

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 0 1.5rem;
}
.faq-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ================================================
   CONTACT / FINAL CTA
   ================================================ */
.cta-section { border-bottom: 1px solid var(--border); }

.cta-banner {
  max-width: 640px;
  margin-bottom: 3.5rem;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-form {
  max-width: 680px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.optional { font-weight: 300; }

input, textarea, select {
  background: var(--bg-2);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
}

textarea { resize: vertical; min-height: 130px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239d9690' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--bg-2); }

.budget-group { max-width: 320px; }

.btn-submit {
  margin-top: 0.5rem;
  padding: 0.95rem 2.25rem;
  font-size: 0.9rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer-brand .wordmark { font-size: 1.1rem; display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.footer-brand a { transition: color 0.2s; }
.footer-brand a:hover { color: var(--accent); }

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text); }

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-social a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--text); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--text); }

/* ── Gold accent touches ─────────────────────── */

/* Eyebrow: small gold pip before each label */
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.55rem;
  vertical-align: middle;
  opacity: 0.75;
}

/* Hero border-bottom: faint gold tint */
.hero { border-bottom-color: rgba(201,169,110,0.2); }

/* Trust strip top rule: gold tint */
.trust-strip { border-top-color: rgba(201,169,110,0.15); }

/* Step numbers: gold */
.step-num { color: var(--accent); }

/* CTA button hover glow */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(201,169,110,0.25);
}

/* Section separating borders: very faint gold */
.gap-section,
.process-section,
.about-section { border-bottom-color: rgba(201,169,110,0.1); }

/* Footer top rule: gold tint */
.site-footer { border-top-color: rgba(201,169,110,0.15); }

/* ── Back to carousel link ───────────────────── */
.back-to-carousel {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.back-to-carousel:hover { opacity: 1; }
.back-to-carousel[hidden] { display: none; }

/* ── Compare trigger ─────────────────────────── */
.compare-trigger {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
}

/* ================================================
   PRICING COMPARE MODAL
   ================================================ */
.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.compare-modal.is-open { display: flex; }

.compare-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.compare-panel {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--border-med);
  border-radius: 16px;
  width: 100%;
  max-width: 880px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  animation: compareIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes compareIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.compare-header h2 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
}

.compare-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.compare-close:hover { border-color: var(--accent); color: var(--accent); }

.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 1.5rem;
}

.compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table thead tr {
  border-bottom: 1px solid var(--border);
}

.col-feature {
  width: 40%;
  padding: 1.5rem 2rem 1rem;
  text-align: left;
  vertical-align: bottom;
}
.col-tier {
  width: 20%;
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  vertical-align: bottom;
}
.col-featured {
  background: rgba(201,169,110,0.05);
  border-left: 1px solid rgba(201,169,110,0.2);
  border-right: 1px solid rgba(201,169,110,0.2);
}

.ct-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f0f0f;
  background: var(--accent);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.ct-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.col-featured .ct-name { color: var(--accent); }
.ct-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 1rem;
}
.ct-price span { font-size: 1rem; color: var(--accent); vertical-align: super; }
.ct-cta { font-size: 0.78rem; padding: 0.5rem 1rem; white-space: nowrap; }

/* Table body */
.compare-table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  text-align: center;
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  text-align: left;
  padding-left: 2rem;
  color: var(--text);
}
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

.ct-yes { color: var(--accent); font-size: 1rem; font-weight: 500; }
.ct-no  { color: rgba(157,150,144,0.3); }

.compare-group-row td {
  padding: 1rem 2rem 0.4rem !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  background: rgba(201,169,110,0.04) !important;
  border-bottom: none !important;
  text-align: left !important;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  :root { --section-gap: 80px; }

  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .comp-row {
    grid-template-columns: 120px repeat(4, minmax(130px, 1fr));
    min-width: 700px;
  }

  .pricing-cards {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 1rem;
    max-width: none;
    padding-bottom: 0.5rem;
  }
  .pricing-cards::-webkit-scrollbar { display: none; }
  .price-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: center;
  }
  .price-card.featured { transform: none; box-shadow: 0 0 0 1px rgba(201,169,110,0.35); }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-placeholder { aspect-ratio: 4/3; max-width: 320px; }

  .maintenance-inner { flex-direction: column; gap: 1.5rem; }
  .maintenance-price { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 1.5rem; width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-gap: 60px; }

  h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .trust-strip .divider { display: none; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 0.4rem; }

  .step { grid-template-columns: 50px 1fr; gap: 0 1rem; }
  .step-num { font-size: 1.8rem; }

  .form-row { grid-template-columns: 1fr; }
  .budget-group { max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom p { flex-direction: column; }

  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}

/* ================================================
   PERFORMANCE DETAILS TAB
   ================================================ */
.perf-details {
  margin: 2rem 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.perf-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-3);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}
.perf-summary::-webkit-details-marker { display: none; }
.perf-summary:hover { background: var(--bg-2); }
.perf-details[open] .perf-summary { border-bottom: 1px solid var(--border); }

.perf-summary-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.perf-chevron {
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform 0.25s;
}
.perf-details[open] .perf-chevron { transform: rotate(180deg); }

/* Dial row */
.perf-dials {
  display: flex;
  height: 220px;
}

.perf-dial {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.perf-dial:last-child { border-right: none; }

.perf-dial-svg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.perf-dial-svg svg {
  width: min(88%, 190px);
  height: min(88%, 190px);
  transform: rotate(-90deg);
}

.pd-track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 12;
}
.pd-ring {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
}

.pd-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.pd-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pd-name {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Chip row */
.perf-chips {
  display: flex;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  background: var(--bg-3);
}
.perf-chip {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}
.perf-chip strong { color: var(--accent); font-weight: 500; }
.perf-chip-link {
  color: var(--accent);
  opacity: 0.8;
  transition: opacity 0.2s;
  margin-left: auto;
}
.perf-chip-link:hover { opacity: 1; }

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #e8c97e);
  z-index: 200;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ================================================
   AVAILABLE BADGE
   ================================================ */
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4ade80;
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.available-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.available-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  60%       { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

/* ================================================
   FEATURED PRICING CARD — elevated treatment
   ================================================ */
.price-card.featured {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(201,169,110,0.14), 0 0 0 1px rgba(201,169,110,0.35);
}

/* ================================================
   PROCESS — connecting vertical line
   ================================================ */
.process-steps { position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(201,169,110,0.3) 6%,
    rgba(201,169,110,0.3) 94%,
    transparent 100%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .process-steps::before { left: 24px; }
}

/* ================================================
   INPUT FOCUS GLOW
   ================================================ */
input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

/* ================================================
   TRUST STRIP — chip style
   ================================================ */
.trust-strip span:not(.divider) {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
}

/* ================================================
   ACTIVE NAV LINK
   ================================================ */
.primary-nav a.nav-active { color: var(--accent); }

/* ================================================
   STICKY BOTTOM CTA
   ================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 0.875rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sticky-cta-label strong { color: var(--text); }
.sticky-price { color: var(--accent) !important; }
.sticky-cta-btn {
  flex-shrink: 0;
  padding: 0.65rem 1.5rem;
  font-size: 0.82rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .sticky-cta { flex-direction: column; gap: 0.75rem; text-align: center; }
  .sticky-cta-btn { width: 100%; }
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero-orbs { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .available-badge { opacity: 1 !important; transform: none !important; }
  .available-dot { animation: none; }
}
