/* ============================================================
   NOWOLY — Obsidian Editorial Design System
   ============================================================ */

/* ============================================================
   1. RESET + CSS VARIABLES
   ============================================================ */

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

:root {
  --black:         #030303;
  --surface:       #0D0D0D;
  --surface-2:     #161616;
  --border:        rgba(201, 168, 76, 0.15);
  --border-hover:  rgba(201, 168, 76, 0.45);
  --gold:          #C9A84C;
  --gold-light:    #E8D5A3;
  --cream:         #F0EBE1;
  --cream-dim:     rgba(240, 235, 225, 0.6);
  --teal:          #00C896;
  --white:         #FAFAF8;

  --nav-height:    72px;
  --max-width:     1200px;
  --section-pad:   clamp(80px, 10vw, 140px);
}

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

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ============================================================
   2. TYPOGRAPHY BASE
   ============================================================ */

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

h1 { font-size: clamp(3.5rem, 9vw, 9rem); }
h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }

p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.75;
}

.text-gold        { color: var(--gold); }
.text-gold-italic { color: var(--gold); font-style: italic; }
.text-cream       { color: var(--cream); }
.text-dim         { color: var(--cream-dim); }

.gold-rule {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}

.gold-rule--center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}

/* ============================================================
   3. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: rgba(3, 3, 3, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.3s ease;
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: rgba(3, 3, 3, 0.96);
  border-color: var(--border);
  height: 60px;
}

.nav__inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__logo-text span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__links a:hover       { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active       { color: var(--gold); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(3, 3, 3, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  z-index: 899;
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dim);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
  letter-spacing: 0.04em;
}

.nav__mobile a:hover         { color: var(--gold); }
.nav__mobile a:last-child     { border-bottom: none; }

/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: #000;
  padding: 0.875rem 2rem;
}

.btn--primary:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  padding: 0.875rem 2rem;
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 0.875rem 0;
  letter-spacing: 0.06em;
}

.btn--ghost:hover          { color: var(--gold-light); }
.btn--ghost .btn-arrow     { transition: transform 0.2s ease; }
.btn--ghost:hover .btn-arrow { transform: translateX(4px); }

.btn--large {
  font-size: 0.8125rem;
  padding: 1.1rem 2.5rem;
}

/* ============================================================
   5. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(0, 200, 150, 0.025) 0%, transparent 55%);
  animation: heroPulse 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.08); }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

/* Hero split layout */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-height);
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100svh;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1s ease both;
  animation-delay: 0.5s;
}

.hero__visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 0.75rem;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.hero__visual::after {
  content: '';
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 60%;
  background: linear-gradient(to right, var(--black), transparent);
  pointer-events: none;
}

.hero__eyebrow  { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero__headline { animation: fadeUp 0.8s ease both; animation-delay: 0.25s; margin-bottom: 1.75rem; }
.hero__sub      { animation: fadeUp 0.8s ease both; animation-delay: 0.4s; font-size: clamp(1.125rem, 1.5vw, 1.25rem); max-width: 560px; margin-bottom: 2.75rem; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.55s;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.7s;
}

.hero__trust-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s ease both;
  animation-delay: 1s;
}

.hero__scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;   }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-bottom: clamp(40px, 6vw, 80px);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 30% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  z-index: 0;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: calc(var(--nav-height) + 3rem);
  width: 100%;
}

.page-hero h1              { animation: fadeUp 0.8s ease both; animation-delay: 0.15s; }
.page-hero .page-hero__sub { animation: fadeUp 0.8s ease both; animation-delay: 0.3s; font-size: clamp(1.125rem, 1.4vw, 1.2rem); max-width: 560px; margin-top: 1.25rem; }

/* ============================================================
   6. SECTION SYSTEM
   ============================================================ */

.section {
  padding: var(--section-pad) 2rem;
}

.section--dark      { background: var(--black); }
.section--surface   { background: var(--surface); }
.section--surface-2 { background: var(--surface-2); }

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__header {
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section__header--center {
  text-align: center;
}

.section__header p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  max-width: 580px;
  margin-top: 1.25rem;
}

.section__header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   7. SERVICES CARDS
   ============================================================ */

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(2rem, 3.5vw, 3rem);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.75rem;
}

.card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3      { margin-bottom: 0.875rem; font-size: clamp(1.25rem, 2vw, 1.875rem); }
.card p       { font-size: 1.0625rem; margin-bottom: 1.5rem; }
.card__price  { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--gold); margin-bottom: 1.5rem; }

.card__list { display: flex; flex-direction: column; gap: 0.5rem; }

.card__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.card__list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

/* ============================================================
   8. PROCESS STEPS
   ============================================================ */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 4.5rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process__step {
  padding: 2.5rem 2.5rem 2.5rem 0;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.process__step:nth-child(1) { animation-delay: 0.1s; }
.process__step:nth-child(2) { animation-delay: 0.25s; }
.process__step:nth-child(3) { animation-delay: 0.4s; }

.process__step + .process__step {
  padding-left: 2.5rem;
  border-left: 1px solid var(--border);
}

.process__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.65;
}

.process__step h3 { margin-bottom: 0.75rem; font-size: clamp(1.25rem, 2vw, 1.75rem); }
.process__step p  { font-size: 1.0625rem; }

/* ============================================================
   9. WHY NOWOLY — FEATURE GRID
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.feature {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3.5rem);
  transition: background 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }

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

.feature__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.feature h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); margin-bottom: 0.75rem; }
.feature p  { font-size: 1.0625rem; }

/* ============================================================
   10. CTA SECTION
   ============================================================ */

.cta-section {
  padding: var(--section-pad) 2rem;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2  { margin-bottom: 1.25rem; animation: fadeUp 0.8s ease both; }
.cta-section > .cta-section__inner > p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.15s;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
}

/* ============================================================
   11. PRICING CARDS (services page)
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(2rem, 3.5vw, 3rem);
  position: relative;
  transition: border-color 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card--featured {
  border-top: 2px solid var(--gold);
  background: var(--surface-2);
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.pricing-card:hover         { border-color: var(--border-hover); }
.pricing-card--featured:hover { border-color: var(--gold); }

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 2rem;
  background: var(--gold);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 2px 2px;
}

.pricing-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price span { font-size: 1.5rem; color: var(--cream-dim); }

.pricing-period {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  margin-bottom: 1.75rem;
  display: block;
}

.pricing-desc {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* Add-ons grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.addon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  transition: border-color 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.addon-card:hover { border-color: var(--gold); }

.addon-card:nth-child(1) { animation-delay: 0.1s; }
.addon-card:nth-child(2) { animation-delay: 0.18s; }
.addon-card:nth-child(3) { animation-delay: 0.26s; }
.addon-card:nth-child(4) { animation-delay: 0.34s; }
.addon-card:nth-child(5) { animation-delay: 0.42s; }
.addon-card:nth-child(6) { animation-delay: 0.5s; }

.addon-card h4        { font-size: 1.15rem; margin-bottom: 0.5rem; }
.addon-card p         { font-size: 0.9375rem; margin-bottom: 1rem; }
.addon-price          { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); }

/* ============================================================
   12. ABOUT PAGE — TIMELINE + STATS
   ============================================================ */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.stat {
  background: var(--surface);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  transition: background 0.3s ease;
}

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

.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.375rem;
}

.stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease both;
}

.timeline__item:nth-child(1) { animation-delay: 0.1s; }
.timeline__item:nth-child(2) { animation-delay: 0.2s; }
.timeline__item:nth-child(3) { animation-delay: 0.3s; }
.timeline__item:nth-child(4) { animation-delay: 0.4s; }
.timeline__item:nth-child(5) { animation-delay: 0.5s; }

.timeline__item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.875rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.timeline__year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
  display: block;
}

.timeline__item h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.timeline__item p  { font-size: 1.0625rem; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: border-color 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.value-card:hover            { border-color: var(--gold); }
.value-card:nth-child(1)     { animation-delay: 0.1s; }
.value-card:nth-child(2)     { animation-delay: 0.18s; }
.value-card:nth-child(3)     { animation-delay: 0.26s; }
.value-card:nth-child(4)     { animation-delay: 0.34s; }
.value-card:nth-child(5)     { animation-delay: 0.42s; }
.value-card:nth-child(6)     { animation-delay: 0.5s; }

.value-card h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.value-card p  { font-size: 1rem; }

/* About intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-intro__text h2,
.about-intro__main h2 { margin-bottom: 1.5rem; }
.about-intro__text p,
.about-intro__main p  { font-size: clamp(1rem, 1.2vw, 1.05rem); margin-bottom: 1.25rem; }

.about-intro__aside {
  padding-top: 0.5rem;
}

.about-intro__aside blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 1.75rem;
  margin-bottom: 2rem;
}

.about-intro__aside blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
}

/* ============================================================
   13. CONTACT FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info h3  { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1.25rem; }
.contact-info > p { font-size: 1.0625rem; margin-bottom: 2.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-detail__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail__value { font-size: 1.0625rem; color: var(--cream); }
.contact-detail__value a { color: var(--cream); transition: color 0.2s ease; }
.contact-detail__value a:hover { color: var(--gold); }

.what-happens {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.what-happens h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
}

.what-happens ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.what-happens ol li {
  counter-increment: steps;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  line-height: 1.6;
}

.what-happens ol li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.4;
}

/* Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(2rem, 4vw, 3.5rem);
}

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

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

.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group label .optional {
  color: var(--cream-dim);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.3rem;
  opacity: 0.6;
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 1px;
  padding: 0.875rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group 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='%23C9A84C' 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;
}

.form-group select option { background: var(--surface-2); color: var(--cream); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 235, 225, 0.2);
}

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

.form-honeypot { display: none !important; }

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.form-success.visible { display: block; }

.form-success__icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p  { font-size: 1.0625rem; }

/* FAQ */
.faq-strip {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--border);
}

.faq-strip h3 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 2.5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
  animation: fadeUp 0.7s ease both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.faq-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.faq-item p { font-size: 1.0625rem; }

/* ============================================================
   14. FOOTER
   ============================================================ */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 2rem 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand { max-width: 300px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__logo img { height: 28px; width: auto; }
.footer__logo span { color: var(--gold); }

.footer__tagline {
  font-size: 0.9375rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer__contact-link {
  font-size: 0.8125rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer__contact-link:hover { color: var(--gold-light); }

.footer__col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__col ul a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}

.footer__col ul a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  opacity: 0.55;
}

.footer__legal { display: flex; gap: 1.5rem; }

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--cream-dim);
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.footer__legal a:hover { opacity: 0.9; }

/* ============================================================
   15. ANIMATIONS + KEYFRAMES
   ============================================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  padding: 2rem;
  margin: 0;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  padding-top: 1rem;
}

.testimonial-card figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── LOVE WALL — animated infinite scroll ──────────────── */
.love-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  height: 540px;
  overflow: hidden;
  margin-top: 3rem;
  /* Fade cards in/out at top and bottom */
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

/* Pause only the hovered column */
.love-col:hover { animation-play-state: paused; }

.love-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Each column scrolls at a different speed — organic feel */
.love-col--1 { animation: loveScroll 22s linear infinite; }
.love-col--2 { animation: loveScroll 28s linear infinite; animation-delay: -10s; }
.love-col--3 { animation: loveScroll 19s linear infinite; animation-delay: -5s; }

@keyframes loveScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.love-card {
  flex-shrink: 0;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: block;
}
.love-card--gold {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.love-card__stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.love-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
  font-style: italic;
  margin: 0 0 1rem;
}
.love-card blockquote::before { content: '\201C'; }
.love-card blockquote::after  { content: '\201D'; }
.love-card figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .love-col { animation: none; }
  .love-wall {
    height: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .love-card[aria-hidden="true"] { display: none; }
}

@media (max-width: 768px) {
  .love-wall {
    grid-template-columns: 1fr;
    height: 480px;
  }
  .love-col--2,
  .love-col--3 { display: none; }
}

.testimonials-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
}

.link-gold {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s ease;
}
.link-gold:hover { border-color: var(--gold); }

/* ── SERVICES GRID (6-col) ─────────────────────────────── */
.services-grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── SERVICE CARD BADGE ────────────────────────────────── */
.card__badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #000;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.4rem;
  position: relative;
  top: -0.1em;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid--6 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--6 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   15A. MARQUEE TICKER STRIP
   ============================================================ */

.marquee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.875rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-inner span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--gold) !important;
  opacity: 0.6;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
}

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

.marquee-strip:hover .marquee-inner {
  animation-play-state: paused;
}

/* ============================================================
   15B. SCROLL PROGRESS BAR
   ============================================================ */

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
  transform-origin: left;
}

/* ============================================================
   15BB. HERO FLOATING TOASTS
   ============================================================ */

.hero__toasts {
  position: absolute;
  bottom: 5rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  pointer-events: none;
}

.activity-toast {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(13, 13, 13, 0.85);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.55rem 0.875rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both,
             toastOut 0.4s ease forwards;
  max-width: 280px;
  min-width: 200px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px) translateY(4px); }
  to   { opacity: 1; transform: none; }
}

@keyframes toastOut {
  0%,  80% { opacity: 1; }
  100%      { opacity: 0; transform: translateY(-8px); }
}

.activity-toast__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 200, 150, 0.12);
  border: 1px solid rgba(0, 200, 150, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.activity-toast__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.activity-toast__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  white-space: nowrap;
}

.activity-toast__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  color: var(--cream-dim);
}

.activity-toast__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00C896;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0, 200, 150, 0.7);
  animation: liveGlow 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero__toasts { display: none; }
}

/* ============================================================
   15BC. ANIMATED PROCESS CONNECTOR
   ============================================================ */

.process--animated::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.process--animated.connector-visible::before {
  transform: scaleX(1);
}

/* ============================================================
   15BD. CTA AMBIENT ORBS
   ============================================================ */

.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 150, 0.04) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
  animation: orbDrift 8s ease-in-out infinite alternate;
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, -20px) scale(1.1); }
}

/* ============================================================
   15C. GRAIN TEXTURE OVERLAY
   ============================================================ */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9998;
}

/* ============================================================
   15D. SCROLL REVEAL SYSTEM
   ============================================================ */

.reveal-target {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   15E. CUSTOM CURSOR DOT
   ============================================================ */

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
  mix-blend-mode: normal;
}

.cursor-dot--hover {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid var(--gold);
  mix-blend-mode: normal;
}

@media (pointer: coarse) {
  .cursor-dot { display: none; }
}

/* ============================================================
   16AA. PRODUCT CARD SCREENS (Option B+C)
   Animated mini-UI inside each product card
   ============================================================ */

/* Screen container — bleeds to card edges */
.card-screen {
  height: 130px;
  margin: calc(-1 * clamp(2rem, 3.5vw, 3rem));
  margin-bottom: 1.75rem;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* Gradient scene backgrounds (Option C) */
.card-screen--chat  { background: linear-gradient(135deg, #071409 0%, #0d2010 100%); }
.card-screen--crm   { background: linear-gradient(135deg, #0d0814 0%, #180d28 100%); }
.card-screen--voice { background: linear-gradient(135deg, #050e0d 0%, #081a17 100%); }

/* Shared inner layout */
.card-screen__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.75rem;
  gap: 0.35rem;
}

/* ── Chat animation ── */
.chat-bubble {
  border-radius: 10px 10px 10px 2px;
  padding: 0.3rem 0.6rem;
  font-size: 0.72rem;
  max-width: 85%;
  line-height: 1.3;
  animation: bubbleFadeIn 0.4s ease both;
}

.chat-bubble--in {
  background: rgba(0, 200, 150, 0.14);
  color: #7ee8c8;
  align-self: flex-start;
  border-radius: 10px 10px 10px 2px;
}

.chat-bubble--out {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  align-self: flex-end;
  border-radius: 10px 10px 2px 10px;
}

.chat-bubble:nth-child(1) { animation-delay: 0.1s; }
.chat-bubble:nth-child(2) { animation-delay: 0.6s; }
.chat-bubble:nth-child(3) { animation-delay: 1.1s; }
.chat-bubble:nth-child(4) { animation-delay: 1.6s; }

@keyframes bubbleFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.chat-typing {
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 0.35rem 0.6rem;
  background: rgba(0, 200, 150, 0.09);
  border-radius: 10px;
  width: fit-content;
  animation: bubbleFadeIn 0.4s ease 2.1s both;
}

.chat-typing span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00C896;
  animation: typingDot 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%            { opacity: 1;   transform: scale(1); }
}

/* Top label bar */
.card-screen__label {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 200, 150, 0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-screen__label::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00C896;
  box-shadow: 0 0 6px rgba(0, 200, 150, 0.8);
  animation: liveGlow 2s ease-in-out infinite;
}

@keyframes liveGlow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

/* ── CRM animation ── */
.crm-screen {
  padding: 0.5rem 0.75rem;
}

.crm-screen__header {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.crm-screen__header::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.8);
  animation: liveGlow 2s ease-in-out infinite;
}

.crm-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  animation: bubbleFadeIn 0.4s ease both;
}

.crm-row:nth-child(2) { animation-delay: 0.1s; }
.crm-row:nth-child(3) { animation-delay: 0.25s; }
.crm-row:nth-child(4) { animation-delay: 0.4s; }
.crm-row:nth-child(5) { animation-delay: 0.55s; }

.crm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.crm-dot--hot  { background: #00C896; box-shadow: 0 0 4px rgba(0,200,150,0.6); }
.crm-dot--warm { background: var(--gold); box-shadow: 0 0 4px rgba(201,168,76,0.6); }
.crm-dot--cold { background: rgba(201,168,76,0.25); }

.crm-name {
  font-size: 0.75rem;
  color: var(--cream);
  flex: 1;
}

.crm-pct {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
}

.crm-bar {
  height: 2px;
  background: rgba(201,168,76,0.1);
  border-radius: 2px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.crm-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #00C896);
  border-radius: 2px;
  animation: barGrow 1.5s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}

@keyframes barGrow {
  from { width: 0; }
  to   { width: 74%; }
}

/* ── Voice animation ── */
.voice-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 100%;
}

.voice-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 200, 150, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.voice-ring::before,
.voice-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 150, 0.15);
  animation: voiceRipple 2.5s ease-out infinite;
}

.voice-ring::before { inset: -10px; animation-delay: 0s; }
.voice-ring::after  { inset: -20px; animation-delay: 0.7s; }

@keyframes voiceRipple {
  0%   { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.3); }
}

.voice-core {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00C896;
  box-shadow: 0 0 12px rgba(0, 200, 150, 0.7);
  animation: corePulse 1.8s ease-in-out infinite;
}

@keyframes corePulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 12px rgba(0,200,150,0.7); }
  50%       { transform: scale(1.15); box-shadow: 0 0 20px rgba(0,200,150,0.9); }
}

.voice-waves {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 18px;
}

.voice-waves span {
  display: block;
  width: 3px;
  background: rgba(0, 200, 150, 0.6);
  border-radius: 3px;
  animation: voiceBar 1.2s ease-in-out infinite;
}

.voice-waves span:nth-child(1) { height: 5px;  animation-delay: 0s; }
.voice-waves span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.voice-waves span:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.voice-waves span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.voice-waves span:nth-child(5) { height: 5px;  animation-delay: 0.4s; }

@keyframes voiceBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

.voice-label {
  font-size: 0.6rem;
  color: rgba(0, 200, 150, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Founder photo slot (Option C) ── */
.founder-photo-slot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #1a1208, #0a1210);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--cream-dim);
  text-align: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.founder-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── Pricing card screens (services.html) ── */
.pricing-card .card-screen {
  margin: calc(-1 * clamp(2rem, 3.5vw, 3rem));
  margin-bottom: 1.5rem;
  height: 110px;
}

/* ============================================================
   16A. DUAL TRACK — Two-column Quick Start vs Bespoke split
   ============================================================ */

.dual-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-top: 3rem;
}

.dual-track__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(2.5rem, 5vw, 4rem);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
}

.dual-track__card:nth-child(1) { animation-delay: 0.1s; }
.dual-track__card:nth-child(2) { animation-delay: 0.25s; }

.dual-track__card:hover {
  border-color: var(--border-hover);
}

.dual-track__card--featured {
  border-top: 2px solid var(--gold);
  background: var(--surface);
}

.dual-track__card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.dual-track__card h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.dual-track__card p {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 380px;
}

/* ============================================================
   16B. PRODUCT CARDS — 3-column Quick Start product grid
   ============================================================ */

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: clamp(2rem, 3.5vw, 3rem);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s ease both;
  display: flex;
  flex-direction: column;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.22s; }
.product-card:nth-child(3) { animation-delay: 0.34s; }

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

.product-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.875rem);
  margin-bottom: 0.875rem;
  margin-top: 1.5rem;
}

.product-card p {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.product-price span {
  font-size: 1rem;
  color: var(--cream-dim);
}

/* ============================================================
   16C. INDUSTRIES ROW
   ============================================================ */

.industries-row {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: clamp(3rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  text-align: center;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.industries-list span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.industries-list span:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   16. RESPONSIVE — BREAKPOINTS
   ============================================================ */

@media (max-width: 1024px) {
  .cards-grid,
  .pricing-grid,
  .addons-grid,
  .values-grid,
  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__brand {
    grid-column: span 2;
    max-width: 100%;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --section-pad: clamp(60px, 12vw, 100px);
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding-bottom: 4rem;
  }

  .hero__visual {
    display: none;
  }

  .cards-grid,
  .process,
  .pricing-grid,
  .addons-grid,
  .features-grid,
  .values-grid,
  .dual-track,
  .product-cards {
    grid-template-columns: 1fr;
  }

  .process::before { display: none; }

  .process__step + .process__step {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 2rem;
  }

  .pricing-card--featured {
    transform: none;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__trust {
    gap: 1rem;
  }

  .hero__trust-sep {
    display: none;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: clamp(48px, 14vw, 80px);
  }

  .section {
    padding: var(--section-pad) 1.25rem;
  }

  .hero__inner,
  .hero__content,
  .page-hero__content,
  .section__inner,
  .cta-section__inner,
  .footer__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  h1 { font-size: clamp(3rem, 14vw, 5rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.5rem); }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .card,
  .pricing-card,
  .addon-card,
  .contact-form {
    padding: 1.5rem;
  }
}

/* ============================================================
   18. CHAT WIDGET
   ============================================================ */

.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  font-family: 'DM Sans', sans-serif;
}

/* Toggle button */
.chat-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 2;
}
.chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(201,168,76,0.5), 0 2px 12px rgba(0,0,0,0.5);
}
.chat-btn svg { transition: opacity 0.2s ease, transform 0.2s ease; }
.chat-btn .chat-btn__close { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.7); }
.chat-btn.open .chat-btn__open  { opacity: 0; transform: rotate(90deg) scale(0.7); }
.chat-btn.open .chat-btn__close { opacity: 1; transform: rotate(0deg) scale(1); }

/* Notification dot */
.chat-btn__dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
  border: 2px solid var(--black);
  animation: chatDotPulse 2s ease-in-out infinite;
}
.chat-btn.open .chat-btn__dot { display: none; }

@keyframes chatDotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* Panel */
.chat-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
  transform: translateY(12px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(0.23,1,0.32,1), opacity 0.2s ease;
}
.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

/* Panel header */
.chat-header {
  background: linear-gradient(135deg, #1a1608 0%, #111107 100%);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.chat-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8a6a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.chat-header__info { flex: 1; min-width: 0; }
.chat-header__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.chat-header__status {
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
}
.chat-header__status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

/* Messages area */
.chat-messages {
  height: 240px;
  overflow-y: auto;
  padding: 1rem 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.2) transparent;
}

.chat-msg {
  max-width: 82%;
  padding: 0.55rem 0.875rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  animation: chatMsgIn 0.22s ease forwards;
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,0.12);
  color: var(--cream);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg--user {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  text-align: right;
}
.chat-msg--success {
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.25);
  color: var(--teal);
  align-self: flex-start;
  font-size: 0.8rem;
  max-width: 90%;
}

/* Typing indicator */
.chat-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.55rem 0.875rem;
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 5px; height: 5px;
  background: var(--cream-dim);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Input row */
.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.chat-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}
.chat-input::placeholder { color: var(--cream-dim); }
.chat-input:focus { border-color: rgba(201,168,76,0.5); }

.chat-send {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.15s ease;
}
.chat-send:hover { background: var(--gold-light); transform: scale(1.05); }
.chat-send:disabled { background: rgba(201,168,76,0.3); cursor: not-allowed; transform: none; }

/* Powered by line */
.chat-powered {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(240,235,225,0.3);
  padding: 0.4rem 0 0.5rem;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .chat-widget { bottom: 1.25rem; right: 1.25rem; }
  .chat-panel { width: 290px; }
}

/* ============================================================
   19. MISSING CLASSES + POLISH
   ============================================================ */

/* Founder initial avatar */
.founder-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  user-select: none;
}
.founder-photo-slot--sm {
  width: 56px !important;
  height: 56px !important;
  margin-bottom: 0 !important;
}
.founder-photo-slot--sm .founder-initial {
  font-size: 1.5rem;
}

/* section__sub — paragraph inside section header */
.section__sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* Testimonials section — dark bg variant */
.testimonials-section {
  background: var(--black);
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-section .section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 0;
}

/* Star rating display */
.star-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.75rem 0 0.5rem;
}
.star-row__star {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.star-row__label {
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-left: 0.4rem;
  letter-spacing: 0.05em;
}

/* Proactive chat nudge bubble */
.chat-nudge {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-bottom-right-radius: 4px;
  padding: 0.65rem 0.875rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--cream);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  cursor: pointer;
  animation: nudgePop 0.3s cubic-bezier(0.23,1,0.32,1) forwards;
  z-index: 1;
}
.chat-nudge::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 18px;
  width: 10px;
  height: 10px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}
@keyframes nudgePop {
  from { opacity: 0; transform: translateY(6px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   20. FAQ LIST + FOOTER BRAND MEANING
   ============================================================ */

.footer__brand-meaning {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-top: 3rem;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.faq-a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 640px;
}
