/* ============================================================
   NYBO INNOVATION — style.css
   Design system, v5: warm neutral base, gold as the only accent.
   The teal hue that ran through the surface stack, borders, and
   signature gradient competed with the brand gold rather than
   supporting it. Replaced with a warm near-neutral (same family
   as the gold itself, heavily desaturated) so gold has zero hue
   competition anywhere on the page.
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
/* Fonts are loaded via <link> in each page's <head> — see index.html etc.
   Inter (body) · Archivo (headings, UI, and italic accents) */

:root {
  /* ---- Surface stack — warm neutral, no competing hue. Card (kelp) is
     the lightest/most "raised"; recessed (deep) is the most tinted/
     "sunken"; canvas (abyss) sits between — same hierarchy as before,
     just built from a warm gray-cream instead of teal. ---- */
  --color-liquid-abyss: #f5f4f2; /* Primary page canvas background */
  --color-liquid-deep: #ece8e2;  /* Recessed background (footer/deep cards) */
  --color-liquid-kelp: #fcfbfb;  /* Raised surface card background */
  --color-liquid-mist: #fff6e0;  /* Warm pale highlight — reserved for the particle sphere only, not UI */

  /* ---- Neutrals — warm ink instead of cool teal-ink, so text sits in the
     same family as the surfaces and the gold accent ---- */
  --color-platinum: #27211b;     /* Warm charcoal ink — headings, high-contrast text */
  --color-silver-mist: #5e5750;  /* Warm gray — secondary body text */
  --color-ash: #655f58;          /* Warm mid-gray — pull-quotes, testimonial copy */
  --color-slate-deep: #6b645b;   /* Warm-neutral borders, faint text — tuned to clear AA on every surface */

  /* ---- Gold, two tiers ----
     Soft: the everyday accent — icons, labels, checkmarks, hover states.
     Bright: reserved for solid FILLS ONLY (buttons, badges, checkboxes)
     — at full saturation, vivid gold fails contrast as text on a light
     background, so nothing sets it as a text color anymore. */
  --color-champagne: #866013;         /* Soft, everyday accent — deepened for light-bg legibility */
  --color-lavender-phosphor: #F5C200; /* Vivid — fills only, never text, on this theme */

  /* Gradients — signature sweep now stays entirely within the gold family
     (deep bronze → vivid gold → pale gold highlight) instead of pulling in
     teal-cyan, which was the same hue clash the rest of the page had. */
  --gradient-bioluminescent: linear-gradient(90deg, rgb(136, 92, 17) 0%, rgb(245, 194, 0) 100%);
  --gradient-aurora: linear-gradient(90deg, rgb(136, 92, 17) 0%, rgb(245, 194, 0) 55%, rgb(255, 233, 168) 100%);

  /* ---- Tonal depth mapping to override legacy classes ---- */
  --ink:          var(--color-liquid-deep);
  --ink-2:        var(--color-liquid-abyss);
  --ink-3:        var(--color-liquid-abyss); /* Keep page backgrounds on the light stack */
  --ink-border:   rgba(39, 33, 27, 0.08);
  --ink-border-2: rgba(39, 33, 27, 0.14);

  --bone:         var(--color-liquid-abyss);
  --bone-2:       var(--color-liquid-deep);
  --paper:        var(--color-liquid-deep); /* Alternate sections use Deep Recess */
  --bone-border:  rgba(39, 33, 27, 0.08);
  --bone-border-2: rgba(39, 33, 27, 0.14);

  --gold:         var(--color-champagne);
  --gold-soft:    var(--color-champagne);
  --gold-bright:  var(--color-lavender-phosphor);
  --gold-deep:    #885c11;
  --gold-deep-text: #885c11;

  /* ---- Semantic text ---- */
  --text-on-dark:        var(--color-platinum);
  --text-on-dark-muted:  var(--color-silver-mist);
  --text-on-dark-faint:  var(--color-slate-deep);

  --text-on-light:       var(--color-platinum); /* Both surface variants are light now — same dark-ink text either way */
  --text-on-light-muted: var(--color-silver-mist);
  --text-on-light-faint: var(--color-slate-deep);

  /* ---- Typography — 3 fonts, each with one job ----
     Archivo  → headings, nav, buttons, labels, AND accent flourishes (italic)
     Inter    → body copy (neutral, highly legible at small sizes)
     The accent role used to be a separate serif (Fraunces) — dropped in
     favor of italic Archivo so accent text reads as part of the same
     typographic family instead of a mismatched third face. */
  --font-display: 'Archivo', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-accent:  'Archivo', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-arial:   'Archivo', ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Sharper scale: more air between display and body sizes, tighter
     tracking at the top of the scale for a more considered, premium feel. */
  --fs-display: clamp(4.2rem, 9vw, 6.75rem);
  --fs-h1:      clamp(2.6rem, 6.5vw, 4.1rem);
  --fs-h2:      clamp(2.15rem, 5vw, 3.1rem);
  --fs-h3:      clamp(1.2rem, 3vw, 1.5rem);
  --fs-lede:    clamp(1.02rem, 2vw, 1.2rem);

  /* ---- Spacing ---- */
  --sp-1: 12px;
  --sp-2: 16px;
  --sp-3: 20px;
  --sp-4: 28px;
  --sp-5: 48px;
  --sp-6: 80px;
  --sp-7: 120px;
  --sp-8: 160px;

  /* ---- Radius (Auros: Cards 16px, Small/Buttons 6px) ---- */
  --r-xs:   6px;
  --r-sm:   6px;
  --r-md:   6px;
  --r-lg:   16px;
  --r-xl:   16px;
  --r-btn:  6px;
  --r-full: 6px; /* Auros uses 6px radius for buttons, not pill shapes */

  /* ---- Motion ---- */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 0.2s;
  --dur:      0.45s;
  --dur-slow: 0.8s;

  /* ---- Layout ---- */
  --max-w:    1440px;
  --nav-h:    80px;
  --section-y: clamp(4.25rem, 8vw, 8.5rem);

  /* ---- Legacy aliases ---- */
  --bg: var(--color-liquid-abyss);
  --surface: var(--color-liquid-kelp);
  --surface-2: var(--color-liquid-deep);
  --surface-3: var(--color-liquid-abyss);
  --border: var(--ink-border);
  --border-light: var(--ink-border-2);
  --yellow: var(--color-lavender-phosphor);
  --yellow-soft: rgba(245, 194, 0, 0.1);
  --yellow-glow: rgba(245, 194, 0, 0.15);
  --yellow-hover: var(--color-platinum);
  --text: var(--color-platinum);
  --text-muted: var(--color-silver-mist);
  --text-faint: var(--color-slate-deep);
  --dur-fast-legacy: var(--dur-fast);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-dark);
  background-color: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fine film-grain — adds material/tactile quality to flat color fields */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--color-platinum); }

/* Skip link — keyboard accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 1000;
  background: var(--gold);
  color: var(--color-platinum);
  padding: 0.75rem 1.2rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.875rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.skip-link:focus {
  left: 1rem;
}

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

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

.section {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}

.section-dark { background-color: var(--ink); color: var(--text-on-dark); }
.section:not(.section-dark) { background-color: var(--paper); color: var(--text-on-light); }

/* ============================================================
   4. TYPOGRAPHY HELPERS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-dark .section-label { color: var(--gold-soft); }
.section:not(.section-dark) .section-label { color: var(--gold-deep-text); }

.section-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 1.1rem;
}
.section-dark .section-title { color: var(--text-on-dark); }
.section:not(.section-dark) .section-title { color: var(--text-on-light); }

.section-title em, .section-title .accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}

.section-sub {
  font-size: var(--fs-lede);
  line-height: 1.7;
  max-width: 540px;
}
.section-dark .section-sub { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .section-sub { color: var(--text-on-light-muted); }

.section-sub-left {
  font-size: var(--fs-lede);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.section-dark .section-sub-left { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .section-sub-left { color: var(--text-on-light-muted); }

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-header.center { text-align: left; }

@media (min-width: 640px) {
  .section-header.center { text-align: center; }
  .section-header.center .section-sub,
  .section-header.center .section-sub-left { margin: 0 auto 2rem; }
}

.section-header.center .section-label::before { display: none; }
.section-header.center .section-label { justify-content: flex-start; }
@media (min-width: 640px) {
  .section-header.center .section-label { justify-content: center; }
}

.text-yellow { color: var(--gold-deep); font-family: var(--font-accent); font-style: italic; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-arial), Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur-fast) var(--ease);
  position: relative;
  border: none;
  isolation: isolate;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.965) !important; }

/* Primary CTA Button: Aurora gradient, dark text, 6px radius, no shadow */
.btn-glass {
  background: var(--gradient-aurora);
  background-size: 220% 100%;
  background-position: 0% 50%;
  color: #222222;
  border: none;
  font-weight: 600;
  animation: gradient-flow 6s ease-in-out infinite;
}

.btn-glass:hover {
  background: var(--color-platinum);
  color: var(--color-liquid-kelp);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.btn-glass:active {
  transform: scale(0.965) translateY(0);
}

@keyframes gradient-flow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .btn-glass { animation: none; } }

/* Secondary CTA Button (light Liquid Kelp fill, dark ink text, inverts on hover) */
.btn-solid {
  background: var(--color-liquid-kelp);
  color: var(--color-platinum);
  border: 1px solid rgba(39, 33, 27, 0.15);
  font-weight: 500;
}

.btn-solid:hover {
  background: rgba(32, 68, 62, 0.92);
  color: var(--color-liquid-kelp);
  border-color: rgba(39, 33, 27, 0.35);
  transform: translateY(-2px);
}

.btn-solid:active {
  transform: scale(0.965);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(39, 33, 27, 0.2);
  color: var(--color-silver-mist);
}

.btn-ghost:hover {
  color: var(--color-platinum);
  border-color: var(--color-platinum);
  background: rgba(39, 33, 27, 0.05);
}

.btn-lg { padding: 0.95rem 2.2rem; font-size: 14px; }
.btn-inline { display: inline-flex; }
.btn-full-width { width: 100%; justify-content: center; padding: 1rem; }

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(252, 251, 251, 0.65);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(39,33,27,0.08);
  box-shadow: 0 1px 0 rgba(39,33,27,0.04);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(252, 251, 251, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom-color: var(--ink-border);
  box-shadow: 0 1px 0 rgba(39,33,27,0.04);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo {
  transition: opacity var(--dur-fast) var(--ease);
  padding: 0.6rem 0; /* 44px touch height via line height + padding */
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.logo:hover { opacity: 0.8; }
.logo-img { height: 52px; width: auto; display: block; }
.footer-logo .logo-img { height: 42px; }
@media (min-width: 640px) {
  .logo-img { height: 72px; }
  .footer-logo .logo-img { height: 52px; }
}

.nav-links { display: none; align-items: center; gap: 16px; }

.nav-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-silver-mist);
  position: relative;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
  padding: 0;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.nav-link:hover, .nav-link.active { color: var(--color-platinum); }

.nav-cta {
  display: none;
  padding: 0.5rem 1.2rem;
  font-size: 12px;
  font-family: var(--font-arial), Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: transparent !important;
  border: 1px solid rgba(39, 33, 27, 0.25) !important;
  color: var(--color-platinum) !important;
  box-shadow: none !important;
  border-radius: 6px !important;
}
.nav-cta:hover {
  background: rgba(39, 33, 27, 0.08) !important;
  border-color: rgba(39, 33, 27, 0.6) !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: rgba(252, 251, 251, 0.98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--ink-border);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav ul { margin-bottom: 1.25rem; }

.mobile-nav-link {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  border-bottom: 1px solid var(--ink-border);
  transition: color var(--dur-fast) var(--ease);
  min-height: 56px; /* generous for thumb */
  display: flex; align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold-soft); }
.mobile-nav-cta { width: 100%; justify-content: center; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none; }
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--ink-3);
  color: var(--text-on-dark);
}

.hero-grain-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(245,194,0,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 85%, rgba(245,194,0,0.08) 0%, transparent 60%);
}

/* Static hero-grid removed — replaced by cursor-grid.js interactive canvas */
#cursor-grid-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 2rem 0 2.75rem;
  align-items: center;
}
.hero-visual { display: none; }

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: var(--sp-5);
    padding: var(--sp-6) 0 var(--sp-5);
  }
  .hero-visual {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    max-width: 460px;
    margin: 0 auto;
    animation: hero-visual-float 10s ease-in-out infinite;
  }
}
@keyframes hero-visual-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) { .hero-visual { animation: none; } }

/* Eyebrow: truncates on smallest phones, expands at 480+ */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--ink-border-2);
  border-radius: var(--r-full);
  padding: 0.38rem 0.85rem;
  background: rgba(243,238,226,0.03);
  margin-bottom: 1.1rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 480px) {
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.75rem;
    white-space: normal;
    overflow: visible;
  }
}

.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-bright); flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(136,92,17,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(136,92,17,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: var(--fs-lede);
  color: var(--text-on-dark);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

/* AI-prompt: 16px font prevents iOS auto-zoom; full width on mobile */
.hero-prompt {
  width: 100%;
  max-width: 560px;
  background: var(--color-liquid-deep);
  border: 1px solid rgba(39, 33, 27, 0.12);
  border-radius: var(--r-lg);
  padding: 1rem 1rem 0.85rem;
  box-shadow: none;
  margin-bottom: 0.9rem;
}
.hero-prompt-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  min-height: 3.2em;
  padding: 0.25rem 0.25rem 0.5rem;
  touch-action: manipulation;
}
.hero-prompt-input::placeholder { color: var(--text-on-dark-faint); }
.hero-prompt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid var(--ink-border);
  padding-top: 0.65rem;
}
.hero-prompt-hint {
  font-size: 0.68rem;
  color: var(--text-on-dark-faint);
  flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.hero-quicklinks {
  font-size: 0.875rem;
  color: var(--text-on-dark-faint);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  display: none; /* hidden on mobile — redundant since they can scroll to sections */
}
@media (min-width: 640px) { .hero-quicklinks { display: block; } }
.hero-quicklinks a {
  color: var(--text-on-dark-muted);
  text-decoration: underline;
  text-decoration-color: var(--ink-border-2);
  text-underline-offset: 3px;
  font-weight: 600;
  touch-action: manipulation;
}
.hero-quicklinks a:hover { text-decoration-color: var(--gold-soft); color: var(--gold-soft); }

/* Trust strip: 3-column pill on mobile */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--ink-border-2);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(243,238,226,0.03);
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0.85rem 0.4rem;
  gap: 0.22rem;
}
.trust-item:not(:last-child) { border-right: 1px solid var(--ink-border); }
.trust-num {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 4.5vw, 1.6rem);
  font-weight: 500; color: var(--gold-deep-text); line-height: 1; font-style: italic;
}
.trust-label {
  font-size: clamp(0.57rem, 1.8vw, 0.72rem);
  color: var(--text-on-dark-faint); font-weight: 500; line-height: 1.3;
}
.trust-divider { display: none; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold-soft));
  animation: scroll-grow 2s ease-in-out infinite; transform-origin: top;
}
@media (min-width: 768px) { .scroll-indicator { bottom: 2.5rem; } .scroll-line { height: 48px; } }
@keyframes scroll-grow {
  0% { transform: scaleY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .scroll-line { animation: none; opacity: 0.4; } }

/* Ambient glow accents — reused across hero & page-hero sections */
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; will-change: transform; filter: blur(70px); }
.glow-1 { width: min(560px, 90vw); height: min(560px, 90vw); background: radial-gradient(circle, rgba(245,194,0,0.14) 0%, transparent 70%); top: -18%; right: -12%; animation: orb-float 11s ease-in-out infinite; }
.glow-2 { width: min(420px, 80vw); height: min(420px, 80vw); background: radial-gradient(circle, rgba(245,194,0,0.09) 0%, transparent 70%); bottom: 0%; left: -10%; animation: orb-float 14s ease-in-out infinite reverse; }
.glow-3 { width: min(300px, 60vw); height: min(300px, 60vw); background: radial-gradient(circle, rgba(245,194,0,0.06) 0%, transparent 70%); top: 45%; left: 40%; animation: orb-float 16s ease-in-out infinite; }
@keyframes orb-float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.04); } }
@media (prefers-reduced-motion: reduce) { .glow-orb { animation: none; } }

.section-glow { position: absolute; width: 680px; height: 680px; background: radial-gradient(circle, rgba(245,194,0,0.07) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.section-glow-r { left: 75%; top: 20%; }
.glow-contact { position: absolute; width: 680px; height: 480px; background: radial-gradient(ellipse, rgba(245,194,0,0.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; filter: blur(60px); border-radius: 50%; }

/* ============================================================
   8. MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
  background: var(--ink-2);
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark-faint);
  white-space: nowrap;
}
.m-dot { color: var(--gold-soft) !important; font-style: normal !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 60s; } }

/* ============================================================
   9. CARDS (YDELSER)
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; } }

.card {
  background: var(--ink-2);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-lg);
  padding: 2.1rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.section:not(.section-dark) .card { background: var(--paper); border-color: var(--bone-border); }

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, 0.35); box-shadow: none; }
.section:not(.section-dark) .card:hover { box-shadow: none; }
.card:hover::before { opacity: 1; }

.card-featured { border-color: rgba(201, 162, 39, 0.35); background: linear-gradient(160deg, var(--color-liquid-kelp) 55%, rgba(201, 162, 39, 0.05) 100%); }
.section:not(.section-dark) .card-featured { background: linear-gradient(160deg, var(--color-liquid-kelp) 55%, rgba(201, 162, 39, 0.05) 100%); }

.card-badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-platinum);
  background: var(--gold-bright);
  border-radius: var(--r-full);
  padding: 0.25rem 0.7rem;
}

.card-icon {
  width: 46px; height: 46px;
  border: 1px solid rgba(245,194,0,0.3);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.section-dark .card-icon { color: var(--gold-soft); }
.section:not(.section-dark) .card-icon { color: var(--gold-deep-text); border-color: rgba(156,117,34,0.35); }
.card:hover .card-icon { transform: scale(1.06) rotate(-3deg); }
.section-dark .card:hover .card-icon { border-color: var(--gold-soft); }
.section:not(.section-dark) .card:hover .card-icon { border-color: var(--gold-deep-text); }

.card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.7rem; line-height: 1.3; }
.section-dark .card-title { color: var(--text-on-dark); }
.section:not(.section-dark) .card-title { color: var(--text-on-light); }

.card-text { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.4rem; }
.section-dark .card-text { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .card-text { color: var(--text-on-light-muted); }

.card-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.03em;
  border-radius: var(--r-full);
  padding: 0.25rem 0.65rem;
  transition: border-color var(--dur-fast) var(--ease);
}
.section-dark .tag { color: var(--text-on-dark-faint); border: 1px solid var(--ink-border); }
.section:not(.section-dark) .tag { color: var(--text-on-light-faint); border: 1px solid var(--bone-border-2); }
.card:hover .tag { border-color: rgba(245,194,0,0.4); }

/* ============================================================
   10. PROCESS — STEP ROWS
   ============================================================ */
/* Mobile-first: single column, no visual, just text */
.step-rows { display: flex; flex-direction: column; gap: clamp(2rem, 5vw, 4.5rem); max-width: 1020px; margin: 0 auto; }

.step-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.step-row-visual { display: none; } /* hide decorative SVG panels on mobile */

@media (min-width: 760px) {
  .step-row { grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
  .step-row:nth-child(even) .step-row-text { order: 2; }
  .step-row:nth-child(even) .step-row-visual { order: 1; }
  .step-row-visual {
    display: flex;
    aspect-ratio: 4/3.1;
    border-radius: var(--r-lg);
    border: 1px solid var(--ink-border);
    background: var(--ink-2);
    align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--sp-4);
  }
  .step-row-visual svg { width: 100%; height: 100%; max-width: 220px; }
}

.step-row-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}
.step-row-eyebrow::before { content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.7; }

.step-row-title { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; color: var(--text-on-dark); margin-bottom: 1rem; line-height: 1.25; }

.step-checklist { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.25rem; }
.step-checklist li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.92rem; color: var(--text-on-dark-muted); line-height: 1.55; }
.step-checklist li svg { flex-shrink: 0; margin-top: 4px; color: var(--gold-soft); }

.step-link {
  font-size: 0.9rem; font-weight: 700; color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 0.4rem;
  min-height: 44px; /* touch target */
  padding: 0.25rem 0;
  touch-action: manipulation;
}
.step-link:hover { text-decoration: underline; }

/* ============================================================
   11. TWO-COLUMN (FEATURES)
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1.05fr; gap: var(--sp-6); } }

.features-list { display: flex; flex-direction: column; }
.feature-item { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1.15rem 0; transition: padding-left var(--dur-fast) var(--ease); }
.section-dark .feature-item { border-bottom: 1px solid var(--ink-border); }
.section:not(.section-dark) .feature-item { border-bottom: 1px solid var(--bone-border); }
.feature-item:first-child { border-top: 1px solid; border-top-color: inherit; }
.section-dark .feature-item:first-child { border-top-color: var(--ink-border); }
.section:not(.section-dark) .feature-item:first-child { border-top-color: var(--bone-border); }
.feature-item:hover { padding-left: 0.4rem; }

.feature-check {
  width: 26px; height: 26px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  background: rgba(245,194,0,0.12);
}
.section-dark .feature-check { color: var(--gold-soft); }
.section:not(.section-dark) .feature-check { color: var(--gold-deep-text); }

.feature-title { font-size: 0.92rem; font-weight: 600; margin-bottom: 0.2rem; }
.section-dark .feature-title { color: var(--text-on-dark); }
.section:not(.section-dark) .feature-title { color: var(--text-on-light); }
.feature-sub { font-size: 0.82rem; }
.section-dark .feature-sub { color: var(--text-on-dark-faint); }
.section:not(.section-dark) .feature-sub { color: var(--text-on-light-faint); }

/* ============================================================
   11b. PRISBEREGNER (PRICE CALCULATOR)
   ============================================================ */
.calc-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); align-items: start; max-width: var(--max-w); margin: 0 auto; }
@media (min-width: 900px) { .calc-grid { grid-template-columns: 1.5fr 1fr; gap: var(--sp-6); } }

.calc-inputs { display: flex; flex-direction: column; gap: var(--sp-5); }
.calc-group { display: flex; flex-direction: column; gap: 1.1rem; }
.calc-group-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  padding-bottom: 0.6rem;
}
.section-dark .calc-group-title { color: var(--text-on-dark); border-bottom: 1px solid var(--ink-border); }
.section:not(.section-dark) .calc-group-title { color: var(--text-on-light); border-bottom: 1px solid var(--bone-border-2); }

.calc-options { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 600px) { .calc-options { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }

.calc-card {
  border-radius: var(--r-md);
  padding: 1.4rem 1.2rem;
  cursor: pointer;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur-fast) var(--ease);
}
.section-dark .calc-card { background: var(--ink-2); border: 1px solid var(--ink-border); color: var(--text-on-dark); }
.section:not(.section-dark) .calc-card { background: var(--paper); border: 1px solid var(--bone-border); color: var(--text-on-light); }
.calc-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.calc-card:hover { transform: translateY(-3px); border-color: rgba(245,194,0,0.4); }
.calc-card.active { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.section-dark .calc-card.active { background: var(--ink-3); }
.section:not(.section-dark) .calc-card.active { background: var(--bone-2); }

.calc-card-title { font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; margin-bottom: 0.4rem; }
.calc-card-desc { font-size: 0.78rem; line-height: 1.5; margin-bottom: 1.25rem; flex-grow: 1; }
.section-dark .calc-card-desc { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .calc-card-desc { color: var(--text-on-light-muted); }
.calc-card-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--gold-deep-text); }

.calc-card-price-row { display: flex; align-items: baseline; gap: 0.55rem; flex-wrap: wrap; }
.calc-card-price-old {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 500;
  text-decoration: line-through; text-decoration-thickness: 1px; opacity: 0.65;
}
.section-dark .calc-card-price-old { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .calc-card-price-old { color: var(--text-on-light-muted); }

.campaign-banner {
  display: flex; align-items: center; gap: 0.6rem;
  border-radius: var(--r-full);
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem; font-weight: 600;
  background: rgba(245,194,0,0.12); border: 1px solid rgba(245,194,0,0.3);
  color: var(--gold-deep-text);
  width: fit-content;
  margin-top: 1.1rem;
}
.campaign-banner-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); flex-shrink: 0; }

.calc-checkboxes { display: flex; flex-direction: column; gap: 0.75rem; }
.calc-checkbox-card {
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; gap: 1rem;
  position: relative;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.section-dark .calc-checkbox-card { background: var(--ink-2); border: 1px solid var(--ink-border); color: var(--text-on-dark); }
.section:not(.section-dark) .calc-checkbox-card { background: var(--paper); border: 1px solid var(--bone-border); color: var(--text-on-light); }
.calc-checkbox-card input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.calc-checkbox-card:hover { border-color: rgba(245,194,0,0.35); }
.calc-checkbox-card.active { border-color: var(--gold); }
.section-dark .calc-checkbox-card.active { background: var(--ink-3); }
.section:not(.section-dark) .calc-checkbox-card.active { background: var(--bone-2); }
.calc-checkbox-card input[disabled] + .checkbox-custom { background: rgba(245,194,0,0.18); border-color: rgba(245,194,0,0.4); color: var(--gold-deep); opacity: 0.85; }

.checkbox-custom {
  width: 20px; height: 20px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: transparent;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease);
}
.section-dark .checkbox-custom { border: 1px solid var(--ink-border-2); background: rgba(0,0,0,0.08); }
.section:not(.section-dark) .checkbox-custom { border: 1px solid var(--bone-border-2); background: rgba(0,0,0,0.04); }
.calc-checkbox-card.active .checkbox-custom { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--color-platinum); }

.checkbox-info { display: flex; flex-direction: column; gap: 0.15rem; flex-grow: 1; }
.checkbox-title { font-size: 0.875rem; font-weight: 600; }
.checkbox-desc { font-size: 0.75rem; line-height: 1.4; }
.section-dark .checkbox-desc { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .checkbox-desc { color: var(--text-on-light-muted); }
.checkbox-price { font-size: 0.85rem; font-weight: 700; color: var(--gold-deep-text); white-space: nowrap; }

.calc-total-card { position: relative; width: 100%; }
.total-sticky {
  border-radius: var(--r-xl);
  padding: 2.4rem 2rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: none;
}
.section-dark .total-sticky { background: var(--color-liquid-deep); border: 1px solid var(--ink-border); color: var(--text-on-dark); }
.section:not(.section-dark) .total-sticky { background: var(--color-liquid-deep); border: 1px solid var(--ink-border); color: var(--text-on-dark); }
@media (min-width: 900px) { .total-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); } }

.total-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-dark-faint); margin-bottom: 0.6rem; }
.total-price { display: flex; align-items: baseline; gap: 0.3rem; font-family: var(--font-accent); font-size: 3.2rem; font-weight: 500; letter-spacing: -0.01em; color: var(--gold-deep); line-height: 1; margin-bottom: 0.5rem; font-style: italic; }
.total-price span { transition: all 0.3s var(--ease); }
.currency { font-size: 1.4rem; font-weight: 500; font-style: normal; }
.vat-note { font-size: 0.72rem; color: var(--text-on-dark-faint); margin-bottom: 1.75rem; }

.total-summary-list { width: 100%; border-top: 1px solid var(--ink-border); border-bottom: 1px solid var(--ink-border); padding: 1.25rem 0; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
.summary-item { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.8rem; }
.summary-label { color: var(--text-on-dark-faint); }
.summary-value { font-weight: 600; color: var(--text-on-dark); }

.calc-disclaimer { font-size: 0.7rem; color: var(--text-on-dark-faint); line-height: 1.5; margin-top: 1rem; }

/* ============================================================
   12. ABOUT
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); align-items: center; }
@media (min-width: 900px) { .about-layout { grid-template-columns: 1fr 1.2fr; gap: var(--sp-6); } }

.about-visual { display: flex; justify-content: center; }
.about-card {
  width: min(300px, 100%);
  aspect-ratio: 1;
  background: var(--ink-3);
  border: 1px solid var(--ink-border-2);
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.about-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(245,194,0,0.1) 0%, transparent 70%); }
.about-card::after { content: ''; position: absolute; bottom: 0; left: 18%; right: 18%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-soft), transparent); }
.about-card:hover { transform: translateY(-5px); border-color: rgba(245,194,0,0.35); }

.about-monogram { font-family: var(--font-accent); font-style: italic; font-size: 4rem; font-weight: 500; letter-spacing: -0.02em; color: var(--gold-soft); line-height: 1; position: relative; z-index: 1; }
.about-sub-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-on-dark-muted); position: relative; z-index: 1; }
.about-line { width: 28px; height: 1px; background: var(--ink-border-2); position: relative; z-index: 1; margin: 0.2rem 0; }
.about-quote { font-family: var(--font-accent); font-style: italic; font-size: 0.95rem; color: var(--text-on-dark-faint); text-align: center; position: relative; z-index: 1; line-height: 1.5; }

.about-body { font-size: 0.98rem; line-height: 1.8; margin-bottom: 1.1rem; }
.section-dark .about-body { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .about-body { color: var(--text-on-light-muted); }

/* ============================================================
   13. CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); max-width: 980px; margin: 0 auto; position: relative; z-index: 1; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.5fr 1fr; gap: var(--sp-6); } }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 580px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.form-group-checkbox { flex-direction: row; align-items: flex-start; gap: 0.75rem; margin-top: 1rem; margin-bottom: 1.4rem; }

.form-checkbox { width: 17px; height: 17px; border-radius: 4px; cursor: pointer; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.section-dark .form-checkbox { border: 1px solid var(--ink-border-2); background: var(--ink-2); }
.section:not(.section-dark) .form-checkbox { border: 1px solid var(--bone-border-2); background: var(--paper); }

.form-label-checkbox { font-size: 0.82rem; line-height: 1.5; cursor: pointer; user-select: none; }
.section-dark .form-label-checkbox { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .form-label-checkbox { color: var(--text-on-light-muted); }

.form-label { font-size: 0.8rem; font-weight: 600; }
.section-dark .form-label { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .form-label { color: var(--text-on-light); }
.label-opt { font-weight: 400; }
.section-dark .label-opt { color: var(--text-on-dark-faint); }
.section:not(.section-dark) .label-opt { color: var(--text-on-light-faint); }

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 1rem; /* >=16px prevents iOS auto-zoom */
  outline: none;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  -webkit-appearance: none;
  min-height: 48px;
  touch-action: manipulation;
}
.section-dark .form-input { background: var(--color-liquid-abyss); border: 1px solid rgba(39, 33, 27, 0.12); color: var(--text-on-dark); border-radius: 6px; }
.section:not(.section-dark) .form-input { background: var(--color-liquid-abyss); border: 1px solid rgba(39, 33, 27, 0.12); color: var(--text-on-light); border-radius: 6px; }
.form-input::placeholder { opacity: 0.5; color: var(--color-silver-mist); }
.form-input:focus { border-color: #885c11; box-shadow: none; outline: none; }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.3rem; }
.btn-submit { min-width: 180px; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--text-on-dark-faint); }
.section:not(.section-dark) .form-note { color: var(--text-on-light-faint); }

.form-msg { display: flex; align-items: center; gap: 0.65rem; padding: 0.9rem 1rem; border-radius: var(--r-md); font-size: 0.85rem; margin-top: 1rem; line-height: 1.5; }
.form-msg--ok { background: rgba(42, 111, 54, 0.08); border: 1px solid rgba(42,111,54,0.3); color: #2a6f36; }
.form-msg--err { background: rgba(166, 48, 48, 0.08); border: 1px solid rgba(166,48,48,0.3); color: #a63030; }

.contact-card { border-radius: var(--r-xl); padding: 2rem; }
.section-dark .contact-card { background: var(--ink-2); border: 1px solid var(--ink-border); }
.section:not(.section-dark) .contact-card { background: var(--ink); color: var(--text-on-dark); }

.contact-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text-on-dark); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--ink-border); }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.9rem; }
.contact-icon { width: 30px; height: 30px; background: rgba(245,194,0,0.12); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-soft); }
.contact-link { font-size: 0.875rem; color: var(--text-on-dark-muted); transition: color var(--dur-fast) var(--ease); }
.contact-link:hover { color: var(--gold-soft); }
.contact-text { font-size: 0.875rem; color: var(--text-on-dark-muted); }

.promises { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--ink-border); display: flex; flex-direction: column; gap: 0.7rem; }
.promise { display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: var(--text-on-dark-muted); }
.promise-ico { color: var(--gold-soft); flex-shrink: 0; display: flex; align-items: center; }

/* ============================================================
   13b. FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }

.faq-item { border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--dur) var(--ease); }
.section-dark .faq-item { background: var(--ink-2); border: 1px solid var(--ink-border); }
.section:not(.section-dark) .faq-item { background: var(--paper); border: 1px solid var(--bone-border); }
.faq-item:hover { border-color: rgba(245,194,0,0.3); }
.faq-item[open] { border-color: rgba(245,194,0,0.4); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.section-dark .faq-question { color: var(--text-on-dark); }
.section:not(.section-dark) .faq-question { color: var(--text-on-light); }
.faq-question::-webkit-details-marker { display: none; }

.faq-chevron { flex-shrink: 0; transition: transform var(--dur) var(--ease); }
.section-dark .faq-chevron { color: var(--gold-soft); }
.section:not(.section-dark) .faq-chevron { color: var(--gold-deep-text); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer { padding: 0 1.6rem 1.6rem; font-size: 0.92rem; line-height: 1.75; }
.section-dark .faq-answer { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .faq-answer { color: var(--text-on-light-muted); }
.faq-answer .contact-link { color: var(--gold-soft); text-decoration: underline; }
.section:not(.section-dark) .faq-answer .contact-link { color: var(--gold-deep-text); }

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--ink-border); background: var(--ink); padding: var(--sp-5) 0 var(--sp-4); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; text-align: center; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; } }

.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-logo { display: inline-flex; align-items: center; padding: 0.55rem 0; min-height: 44px; touch-action: manipulation; }
.footer-tagline { font-size: 0.78rem; color: var(--text-on-dark-faint); }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem 1.25rem; }
.footer-link { font-size: 0.82rem; color: var(--text-on-dark-faint); transition: color var(--dur-fast) var(--ease); min-height: 44px; display: inline-flex; align-items: center; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.footer-link:hover { color: var(--gold-soft); }
.footer-copy { font-size: 0.76rem; color: var(--text-on-dark-faint); }

/* ============================================================
   7b. BREADCRUMB
   ============================================================ */
.breadcrumb { font-size: 0.78rem; margin-bottom: 1.75rem; }
.section-dark .breadcrumb { color: var(--text-on-dark-faint); }
.section:not(.section-dark) .breadcrumb { color: var(--text-on-light-faint); }
.breadcrumb a { transition: color var(--dur-fast) var(--ease); }
.section-dark .breadcrumb a { color: var(--text-on-dark-faint); }
.section:not(.section-dark) .breadcrumb a { color: var(--text-on-light-faint); }
.section-dark .breadcrumb a:hover { color: var(--gold-soft); }
.section:not(.section-dark) .breadcrumb a:hover { color: var(--gold-deep-text); }
.breadcrumb span[aria-current] { font-weight: 600; }
.section-dark .breadcrumb span[aria-current] { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .breadcrumb span[aria-current] { color: var(--text-on-light-muted); }
.breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }

/* ============================================================
   7c. PAGE HERO (sub-pages)
   ============================================================ */
.page-hero { padding: calc(var(--nav-h) + var(--sp-5)) 0 var(--sp-2); position: relative; overflow: hidden; }
.page-hero .section-header { margin-bottom: 2.5rem; max-width: 720px; }

/* ============================================================
   7d. CROSS-LINK BANNER
   ============================================================ */
.link-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; border-radius: var(--r-lg); padding: 1.5rem 1.75rem; margin-top: 1rem; }
.section-dark .link-banner { background: var(--ink-2); border: 1px solid var(--ink-border); }
.section:not(.section-dark) .link-banner { background: var(--paper); border: 1px solid var(--bone-border); }
.link-banner-text { font-size: 0.92rem; line-height: 1.6; }
.section-dark .link-banner-text { color: var(--text-on-dark-muted); }
.section:not(.section-dark) .link-banner-text { color: var(--text-on-light-muted); }
.link-banner-text strong { }
.section-dark .link-banner-text strong { color: var(--text-on-dark); }
.section:not(.section-dark) .link-banner-text strong { color: var(--text-on-light); }
.link-banner-cta { font-weight: 700; font-size: 0.9rem; white-space: nowrap; flex-shrink: 0; color: var(--gold-soft); }
.section:not(.section-dark) .link-banner-cta { color: var(--gold-deep-text); }
.link-banner-cta:hover { text-decoration: underline; }

/* ============================================================
   7e. PRICING NOTE
   ============================================================ */
.pricing-note { border-radius: var(--r-md); padding: 1rem 1.25rem; font-size: 0.85rem; line-height: 1.6; margin-top: 1.5rem; }
.section-dark .pricing-note { background: rgba(245,194,0,0.08); border: 1px solid rgba(245,194,0,0.25); color: var(--text-on-dark-muted); }
.section:not(.section-dark) .pricing-note { background: rgba(245,194,0,0.07); border: 1px solid rgba(245,194,0,0.25); color: var(--text-on-light-muted); }
.pricing-note strong { }
.section-dark .pricing-note strong { color: var(--text-on-dark); }
.section:not(.section-dark) .pricing-note strong { color: var(--text-on-light); }

/* ============================================================
   15. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

.cards-grid > .reveal:nth-child(1) { transition-delay: 0ms; }
.cards-grid > .reveal:nth-child(2) { transition-delay: 80ms; }
.cards-grid > .reveal:nth-child(3) { transition-delay: 160ms; }

.step-rows > .reveal:nth-child(1) { transition-delay: 0ms; }
.step-rows > .reveal:nth-child(2) { transition-delay: 100ms; }
.step-rows > .reveal:nth-child(3) { transition-delay: 200ms; }

/* ============================================================
   16. UTILITIES
   ============================================================ */
.hidden { display: none !important; }
.spinner { animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   17. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* ============================================================
   18. PORTFOLIO — BEFORE/AFTER SLIDER
   ============================================================ */
.compare-wrap { max-width: 880px; margin: 0 auto; }

.compare-slider {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-border-2);
  background: var(--color-liquid-deep);
  cursor: ew-resize;
  user-select: none;
  box-shadow: none;
}

.compare-image { position: absolute; inset: 0; }
.compare-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.compare-before { clip-path: inset(0 50% 0 0); will-change: clip-path; }

.compare-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}
.compare-placeholder svg { color: var(--gold-soft); opacity: 0.7; }
.compare-placeholder span { font-size: 0.85rem; color: var(--text-on-dark-faint); max-width: 26ch; }
.compare-after .compare-placeholder { background: linear-gradient(160deg, var(--ink-3), var(--ink-2)); }
.compare-before .compare-placeholder { background: var(--ink); filter: grayscale(0.6) brightness(0.8); }

.compare-tag {
  position: absolute;
  top: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-platinum);
  background: var(--bone);
  border-radius: var(--r-full);
  padding: 0.3rem 0.85rem;
  z-index: 3;
  pointer-events: none;
}
.compare-tag-before { left: 1rem; }
.compare-tag-after { right: 1rem; }

.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--color-liquid-mist);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  box-shadow: none;
}
.compare-handle-grip {
  position: absolute;
  top: 50%; left: 50%;
  width: 42px; height: 42px;
  transform: translate(-50%, -50%);
  background: var(--color-liquid-kelp);
  border: 1px solid rgba(39, 33, 27, 0.2);
  border-radius: 6px; /* Auros buttons and handles are 6px */
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  color: var(--color-platinum);
  box-shadow: none;
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  touch-action: none; /* allow custom drag */
  font-size: 1rem; /* ≥16px */
}

.compare-caption { text-align: center; font-size: 0.82rem; margin-top: 1.1rem; }
.section-dark .compare-caption { color: var(--text-on-dark-faint); }
.section:not(.section-dark) .compare-caption { color: var(--text-on-light-faint); }

/* ============================================================
   19. PORTFOLIO — CAROUSEL
   ============================================================ */
.carousel-wrap { position: relative; }

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0.25rem 1.25rem;
  margin: 0 -0.25rem;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { height: 6px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--ink-border-2); border-radius: var(--r-full); }
.carousel-track::-webkit-scrollbar-track { background: transparent; }

.carousel-card {
  flex: 0 0 auto;
  width: min(78vw, 340px);
  scroll-snap-align: start;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ink-border);
  background: var(--ink-2);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.section:not(.section-dark) .carousel-card { background: var(--paper); border-color: var(--bone-border); }
.carousel-card:hover { transform: translateY(-4px); border-color: rgba(245,194,0,0.35); }

.carousel-card-bar {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--ink-border);
}
.section:not(.section-dark) .carousel-card-bar { border-bottom-color: var(--bone-border); }
.carousel-card-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(39,33,27,0.18); }
.section:not(.section-dark) .carousel-card-dot { background: rgba(0,0,0,0.15); }
.carousel-card-url {
  margin-left: 0.5rem;
  font-size: 0.65rem;
  border-radius: var(--r-full);
  padding: 0.15rem 0.7rem;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.section-dark .carousel-card-url { color: var(--text-on-dark-faint); background: rgba(0,0,0,0.06); }
.section:not(.section-dark) .carousel-card-url { color: var(--text-on-light-faint); background: rgba(0,0,0,0.04); }
.section-dark .carousel-card-url:hover { color: var(--gold-soft); background: rgba(0,0,0,0.10); }
.section:not(.section-dark) .carousel-card-url:hover { color: var(--gold-deep-text); background: rgba(0,0,0,0.08); }

.carousel-card-media {
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem;
  text-align: center;
  background: repeating-linear-gradient(135deg, rgba(245,194,0,0.05) 0 10px, transparent 10px 20px);
}
.carousel-card-media svg { color: var(--gold-soft); opacity: 0.6; }
.section:not(.section-dark) .carousel-card-media svg { color: var(--gold-deep-text); opacity: 0.7; }
.carousel-card-media span { font-size: 0.78rem; }
.section-dark .carousel-card-media span { color: var(--text-on-dark-faint); }
.section:not(.section-dark) .carousel-card-media span { color: var(--text-on-light-faint); }
.carousel-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.carousel-card-body { padding: 1.1rem 1.25rem 1.3rem; }
.carousel-card-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
}
.section:not(.section-dark) .carousel-card-tag { color: var(--gold-deep-text); }
.carousel-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.section-dark .carousel-card-title { color: var(--text-on-dark); }
.section:not(.section-dark) .carousel-card-title { color: var(--text-on-light); }

.carousel-controls { display: flex; justify-content: flex-end; gap: 0.6rem; margin-bottom: 1.5rem; }
.carousel-btn {
  width: 48px; height: 48px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.section-dark .carousel-btn { border: 1px solid var(--ink-border-2); color: var(--text-on-dark); }
.section-dark .carousel-btn:hover { background: rgba(39,33,27,0.05); border-color: var(--gold-soft); }
.section:not(.section-dark) .carousel-btn { border: 1px solid var(--bone-border-2); color: var(--text-on-light); }
.section:not(.section-dark) .carousel-btn:hover { background: rgba(0,0,0,0.03); border-color: var(--gold); }
.carousel-btn:active { transform: scale(0.92); }

@media (max-width: 600px) {
  .carousel-controls { display: none; }
}

/* ============================================================
   20. MOBILE-FIRST LAYOUT OVERRIDES (390px baseline)
   ============================================================ */

/* ---- Cards: full breathing room on mobile ---- */
@media (max-width: 767px) {
  .card { padding: 1.6rem 1.35rem; }
  .cards-grid { gap: 0.85rem; }

  /* Two-column: always stacks on mobile, left-aligned */
  .two-col { gap: 2rem; }
  .section-sub-left { max-width: 100%; }

  /* About: visual card smaller on mobile */
  .about-layout { gap: 2rem; }
  .about-card { width: min(240px, 85%); }

  /* Features list: comfortable tap spacing */
  .feature-item { padding: 1rem 0; gap: 0.75rem; }
  .feature-item:hover { padding-left: 0; } /* no hover shift on touch */

  /* Section header: tighter on small screens */
  .section-header { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }

  /* Contact layout: stacked, card second */
  .contact-layout { gap: 2rem; }
  .contact-card { padding: 1.5rem; }

  /* Link banner: stack vertically */
  .link-banner { flex-direction: column; align-items: flex-start; gap: 0.75rem; padding: 1.25rem; }

  /* Page hero: compact */
  .page-hero { padding: calc(var(--nav-h) + 1.5rem) 0 0.5rem; }

  /* Section label: hide the line decoration (too wide on tight layouts) */
  .section-label::before { display: none; }
}

/* ---- Calculator: mobile-first, total panel stays in flow ---- */
@media (max-width: 899px) {
  .calc-group-title { font-size: 1rem; }
  .calc-card { padding: 1.15rem 1rem; }
  .calc-card-title { font-size: 0.9rem; }
  .total-sticky {
    position: static;
    margin-top: 0;
    padding: 1.75rem 1.5rem;
  }
  .total-price { font-size: 2.6rem; }
  .calc-grid { gap: 2rem; }

  /* Invert order on mobile: total panel ABOVE options so user sees it update as they tap */
  .calc-grid { display: flex; flex-direction: column-reverse; }
}

/* ---- Portfolio section: mobile ---- */
@media (max-width: 767px) {
  .carousel-card { width: min(82vw, 300px); }
  .compare-handle-grip { width: 36px; height: 36px; }
  .compare-tag { font-size: 0.6rem; padding: 0.25rem 0.65rem; }
}

/* ---- Nav: hamburger zone stays safe from notch ---- */
@media (max-width: 767px) {
  .nav-inner { padding: 0 1.1rem; }
  .hamburger { width: 44px; height: 44px; padding: 6px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
}

/* ---- Bottom safe area: iPhone home indicator ---- */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: calc(var(--sp-4) + env(safe-area-inset-bottom, 0px)); }
}

/* ---- Prevent overscroll glow on iOS ---- */
html { background: var(--bone); }

/* ---- Larger touch target for compare slider on mobile ---- */
@media (max-width: 767px) {
  .compare-handle-grip {
    width: 44px; height: 44px;
  }
}

/* ---- Form: select element baseline ---- */
select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235e6e66' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
  -webkit-appearance: none;
  appearance: none;
}


/* ============================================================
   21. MOBILE STICKY CTA BAR
   Floating bottom action for phone visitors — the primary
   conversion path when 85% arrive on mobile.
   ============================================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 859px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: 0.75rem 1.1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(252, 251, 251, 0.94);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-top: 1px solid var(--ink-border);
    gap: 0.6rem;
    align-items: center;
    box-shadow: none;
    /* Start hidden, fade in after scroll */
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
    pointer-events: none;
  }
  .mobile-cta-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-cta-bar-text {
    font-size: 0.8rem;
    color: var(--text-on-dark-faint);
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* Push footer up so bar doesn't overlap last content */
  .footer {
    padding-bottom: calc(var(--sp-4) + 76px + env(safe-area-inset-bottom, 0px));
  }
}

/* Hero on light-grey background */
.hero .hero-eyebrow { color: var(--text-on-light-muted); border-color: var(--bone-border-2); background: rgba(0,0,0,0.04); }
.hero .hero-headline { color: var(--text-on-light); }
.hero .hero-headline .accent { color: var(--gold-deep); font-family: var(--font-accent); font-style: italic; font-weight: 500; }
.hero .hero-sub { color: var(--text-on-dark-muted); }
.hero .hero-prompt { background: rgba(200, 200, 200, 0.22); border-color: rgba(39,33,27,0.55); }
.hero .hero-prompt-input { color: var(--text-on-light); }
.hero .hero-prompt-input::placeholder { color: var(--text-on-light-faint); }
.hero .hero-prompt-row { border-top-color: var(--bone-border); }
.hero .hero-prompt-hint { color: var(--text-on-light-faint); }
.hero .hero-quicklinks { color: var(--text-on-light-faint); }
.hero .hero-quicklinks a { color: var(--text-on-light-muted); text-decoration-color: var(--bone-border-2); }
.hero .trust-item { border-right-color: var(--bone-border); }
.hero .trust-label { color: var(--text-on-light-muted); }
.hero-trust { border-color: var(--bone-border-2); background: rgba(0,0,0,0.03); }
.hero .eyebrow-dot { background: var(--gold); }
.hero .scroll-line { background: linear-gradient(to bottom, transparent, var(--gold)); }
.hero .hero-grain-glow { opacity: 0.6; filter: hue-rotate(0deg); }

