@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Manrope:wght@400;500;700;800&display=swap");

/* ─── Variables ───────────────────────────────────────────── */
:root {
  --bg:           #080604;
  --surface:      rgba(14, 11, 6, 0.96);
  --gold:         #d4a843;
  --gold-bright:  #f0d882;
  --gold-dim:     rgba(212, 168, 67, 0.26);
  --gold-glow:    rgba(212, 168, 67, 0.13);
  --text:         #f0e8d6;
  --muted:        #8a7d6a;
  --line:         rgba(212, 168, 67, 0.24);
  --r-card:       4px;
  --r-pill:       999px;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

/* ─── Body ────────────────────────────────────────────────── */
body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 90px;
}

/* Warm ambient vignette */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 72%, rgba(160, 100, 10, 0.1), transparent 68%),
    radial-gradient(ellipse 55% 38% at 18% 22%, rgba(130, 75, 0, 0.07), transparent 58%),
    radial-gradient(ellipse 48% 32% at 82% 80%, rgba(110, 65, 0, 0.06), transparent 52%);
  animation: warmPulse 14s ease-in-out infinite;
}

/* Grain texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Scroll Progress Bar ─────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(212, 168, 67, 0.4),
    var(--gold),
    var(--gold-bright),
    var(--gold)
  );
  z-index: 100;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.65), 0 0 20px rgba(212, 168, 67, 0.28);
}

/* ─── Ember Field ─────────────────────────────────────────── */
.ember-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.ember {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  will-change: transform, opacity;
  animation: emberRise linear infinite;
}

/* ─── Layout ──────────────────────────────────────────────── */
main, .topbar {
  width: min(720px, calc(100% - 20px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ─── Gold Divider ────────────────────────────────────────── */
.gold-divider {
  width: min(720px, calc(100% - 20px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  position: relative;
  z-index: 2;
}

.gold-divider::before,
.gold-divider::after {
  content: "";
  flex: 1;
  height: 1px;
}

.gold-divider::before {
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.28));
}

.gold-divider::after {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.28), transparent);
}

.gold-divider span {
  color: var(--gold);
  font-size: 9px;
  opacity: 0.5;
  flex-shrink: 0;
  letter-spacing: 0.06em;
}

/* ─── Topbar ──────────────────────────────────────────────── */
.topbar {
  margin-top: 18px;
  padding: 48px 22px 42px;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  isolation: isolate;
  z-index: 2;
  /* Scattered micro-stars as background detail */
  background-image:
    radial-gradient(circle 1px at 14% 28%, rgba(212, 168, 67, 0.35) 0%, transparent 1px),
    radial-gradient(circle 1px at 86% 22%, rgba(212, 168, 67, 0.28) 0%, transparent 1px),
    radial-gradient(circle 1px at 71% 72%, rgba(212, 168, 67, 0.22) 0%, transparent 1px),
    radial-gradient(circle 1px at 28% 78%, rgba(212, 168, 67, 0.2)  0%, transparent 1px),
    radial-gradient(circle 1px at 91% 58%, rgba(212, 168, 67, 0.18) 0%, transparent 1px),
    radial-gradient(circle 1px at  8% 62%, rgba(212, 168, 67, 0.18) 0%, transparent 1px),
    radial-gradient(circle 1px at 54% 88%, rgba(212, 168, 67, 0.15) 0%, transparent 1px);
}

/* Atmospheric gold radial glow behind name */
.topbar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92%;
  height: 86%;
  background: radial-gradient(ellipse 80% 65% at 50% 48%,
    rgba(212, 168, 67, 0.12) 0%,
    rgba(180, 130, 18, 0.05) 44%,
    transparent 70%
  );
  filter: blur(26px);
  pointer-events: none;
  z-index: 0;
  animation: warmPulse 7s ease-in-out infinite;
}

/* Subtle bottom fade line */
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent);
  pointer-events: none;
}

/* Ornamental rows above and below brand */
.topbar-crest,
.topbar-rule {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.topbar-crest { margin-bottom: 22px; }
.topbar-rule  { margin: 16px 0 20px; }

.topbar-crest span,
.topbar-rule span { flex: 1; height: 1px; }

.topbar-crest span:first-child { background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.55)); }
.topbar-crest span:last-child  { background: linear-gradient(90deg, rgba(212, 168, 67, 0.55), transparent); }
.topbar-rule  span:first-child { background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.36)); }
.topbar-rule  span:last-child  { background: linear-gradient(90deg, rgba(212, 168, 67, 0.36), transparent); }

/* Tiny gold dot between lines */
.topbar-crest b,
.topbar-rule b {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 5px 1px rgba(212, 168, 67, 0.65);
  animation: dotGlow 3.5s ease-in-out infinite;
}

/* ─── Brand ───────────────────────────────────────────────── */
.brand {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(22px, 6.5vw, 34px);
  letter-spacing: 0.12em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.shimmer {
  background: linear-gradient(110deg,
    #7a5a14 0%,
    var(--gold) 26%,
    var(--gold-bright) 44%,
    var(--gold) 62%,
    #7a5a14 82%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 260% 100%;
  animation: shimmerGold 5.5s linear infinite, candleFlicker 7s ease-in-out infinite;
}

.subtitle {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* ─── Hero Photo ──────────────────────────────────────────── */
.hero-photo {
  margin: 14px 0 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 6%;
  width: 84%;
  height: 78%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 46%,
    rgba(180, 130, 18, 0.42) 0%,
    rgba(160, 110, 10, 0.14) 36%,
    transparent 66%
  );
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
  animation: auraGold 4.5s ease-in-out infinite;
}

.hero-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2%;
  width: 100%;
  height: 36%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 30% 60%, rgba(175, 125, 18, 0.38) 0%, transparent 56%),
    radial-gradient(ellipse at 72% 40%, rgba(155, 108, 8, 0.3) 0%, transparent 50%);
  filter: blur(22px);
  opacity: 0.88;
  z-index: 2;
  pointer-events: none;
  animation: fogDriftGold 6.5s ease-in-out infinite;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: center top;
  position: relative;
  z-index: 1;
  filter: sepia(0.2) saturate(0.88) brightness(0.94)
          drop-shadow(0 0 28px rgba(175, 125, 18, 0.38));
}

/* ─── Section base ────────────────────────────────────────── */
.hero,
.section,
.final-cta {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--surface);
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 168, 67, 0.05) inset;
}

/* Top gold shimmer line */
.hero::before,
.section::before,
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.38), transparent);
  pointer-events: none;
}

/* Bottom-right corner ornament */
.hero::after,
.section::after,
.final-cta::after {
  content: "";
  position: absolute;
  bottom: 7px;
  right: 7px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(212, 168, 67, 0.4);
  border-bottom: 1px solid rgba(212, 168, 67, 0.4);
  pointer-events: none;
  z-index: 1;
}

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

h1 {
  font-size: clamp(30px, 9.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 700;
}

h2 {
  font-size: clamp(22px, 6.5vw, 34px);
  margin-bottom: 14px;
}

h3 { font-size: 19px; margin-bottom: 8px; }

.section-lead {
  margin: -4px 0 14px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--gold);
  opacity: 0.75;
}

/* ─── Hero Section ────────────────────────────────────────── */
.hero-copy p { margin: 0; color: var(--muted); line-height: 1.6; }

.utp-badge {
  margin: 0 0 14px;
  padding: 13px 15px;
  border-radius: var(--r-card);
  border: 1px solid rgba(212, 168, 67, 0.32);
  background: linear-gradient(165deg, rgba(18, 13, 4, 0.97), rgba(12, 9, 3, 0.97));
  box-shadow: inset 0 0 18px rgba(212, 168, 67, 0.05), 0 0 20px rgba(212, 168, 67, 0.07);
  position: relative;
}

.utp-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22%;
  right: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.48), transparent);
}

.utp-badge strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
}

.utp-badge span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.utp-strip {
  margin-top: 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212, 168, 67, 0.32);
  background: linear-gradient(90deg, rgba(14, 10, 3, 0.98), rgba(22, 16, 4, 0.96));
  color: var(--gold-bright);
  text-align: center;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.1);
  animation: goldPulse 3.8s ease-in-out infinite;
}

/* ─── Quick Actions / Buttons ─────────────────────────────── */
.quick-actions {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 14px;
  border-radius: var(--r-card);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1px solid rgba(212, 168, 67, 0.26);
  background: rgba(12, 9, 4, 0.97);
  position: relative;
  overflow: hidden;
  transition: border-color 0.26s ease, box-shadow 0.26s ease, transform 0.2s ease;
}

/* Shimmer fill on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(212, 168, 67, 0.09) 50%,
    transparent 100%
  );
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.btn:hover::before { transform: translateX(110%); }

.btn:hover {
  border-color: rgba(212, 168, 67, 0.58);
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.18), inset 0 0 18px rgba(212, 168, 67, 0.05);
  transform: translateY(-2px);
}

.btn-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.28);
  flex-shrink: 0;
}

.btn-ico img {
  width: 12px; height: 12px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
}

.btn-ico-brand img,
.btn-ico-max img {
  width: 16px; height: 16px;
  filter: none;
}

.btn-call { border-color: rgba(212, 168, 67, 0.38); }
.btn-wa   { border-color: rgba(75, 150, 100, 0.32); }
.btn-tg   { border-color: rgba(80, 130, 200, 0.32); }
.btn-max  { border-color: rgba(140, 100, 200, 0.32); }

.pulse-shell { animation: pulseShell 3.2s ease-in-out infinite; }

/* ─── Grid utility ────────────────────────────────────────── */
.grid { display: grid; gap: 10px; }

/* ─── Card base ───────────────────────────────────────────── */
.card,
.review,
.faq {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 14px;
  background: rgba(12, 9, 4, 0.82);
  transition: border-color 0.26s ease, box-shadow 0.26s ease;
}

.card p,
.review p { margin: 0; color: var(--muted); line-height: 1.55; }

/* ─── Request Cards ───────────────────────────────────────── */
.req-list {
  grid-template-columns: 1fr !important;
  gap: 10px;
}

.req-card {
  position: relative;
  overflow: hidden;
  background: rgba(11, 8, 3, 0.88);
  border-color: rgba(212, 168, 67, 0.2);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.46s ease, transform 0.46s ease,
              border-color 0.26s ease, box-shadow 0.26s ease;
}

.req-card:hover {
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 22px rgba(212, 168, 67, 0.1);
}

/* Gold left accent line */
.req-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(212, 168, 67, 0) 0%,
    var(--gold) 28%,
    var(--gold) 72%,
    rgba(212, 168, 67, 0) 100%
  );
  opacity: 0.65;
}

.req-card h3 { display: flex; align-items: center; gap: 10px; }
.req-icon { color: var(--gold); font-size: 12px; opacity: 0.78; }

/* Stagger reveal */
.section.in-view .req-card                    { opacity: 1; transform: translateY(0); }
.section.in-view .req-card:nth-child(1)       { transition-delay: 0.28s; }
.section.in-view .req-card:nth-child(2)       { transition-delay: 0.36s; }
.section.in-view .req-card:nth-child(3)       { transition-delay: 0.44s; }
.section.in-view .req-card:nth-child(4)       { transition-delay: 0.52s; }
.section.in-view .req-card:nth-child(5)       { transition-delay: 0.60s; }
.section.in-view .req-card:nth-child(6)       { transition-delay: 0.68s; }

/* ─── Formats Road ────────────────────────────────────────── */
.formats-road { position: relative; overflow: hidden; }

.format-track {
  position: absolute;
  right: 40px;
  top: 122px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(212, 168, 67, 0) 0%,
    rgba(212, 168, 67, 0.5) 14%,
    rgba(212, 168, 67, 0.42) 86%,
    rgba(212, 168, 67, 0) 100%
  );
  animation: trackGlow 4.2s ease-in-out infinite;
}

.format-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.format-item:first-of-type { margin-top: 8px; }

.fi-dot {
  order: 2;
  justify-self: center;
  align-self: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(240, 216, 130, 0.5);
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.42);
  z-index: 1;
  animation: dotGlow 3s ease-in-out infinite;
}

.fi-body {
  order: 1;
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: var(--r-card);
  padding: 14px;
  background: rgba(12, 9, 4, 0.9);
  transition: border-color 0.26s ease, box-shadow 0.26s ease;
}

.fi-body:hover {
  border-color: rgba(212, 168, 67, 0.48);
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.09);
}

.fi-body h3 { font-size: 19px; }

.fi-meta {
  margin: 5px 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  opacity: 0.72;
}

.fi-body p { margin: 0; color: var(--muted); line-height: 1.55; }

.fi-2 .fi-body {
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.06);
}

.fi-3 .fi-dot {
  background: linear-gradient(145deg, #edd06a, #c49030);
}

/* ─── Workflow Arc ────────────────────────────────────────── */
.workflow-arc { position: relative; overflow: hidden; }

.workflow-line {
  position: absolute;
  left: 43px;
  top: 130px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(212, 168, 67, 0) 0%,
    rgba(212, 168, 67, 0.48) 12%,
    rgba(212, 168, 67, 0.38) 88%,
    rgba(212, 168, 67, 0) 100%
  );
  z-index: 0;
}

.wf-step { position: relative; margin-top: 12px; }
.wf-step:first-of-type { margin-top: 10px; }

.wf-card {
  position: relative;
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: var(--r-card);
  padding: 12px 14px 12px 56px;
  background: rgba(12, 9, 4, 0.9);
  transition: border-color 0.26s ease, box-shadow 0.26s ease;
}

.wf-card:hover {
  border-color: rgba(212, 168, 67, 0.48);
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.08);
}

.wf-kicker {
  margin: 0 0 3px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.68;
}

.wf-card h3 { font-size: 19px; line-height: 1.1; }
.wf-card p  { margin: 8px 0 0; color: var(--muted); line-height: 1.45; }

.wf-mark {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(240, 216, 130, 0.5);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.38);
  z-index: 1;
}

/* ─── Quote Rotator ───────────────────────────────────────── */
.quote {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(16, 12, 5, 0.97), rgba(10, 8, 3, 0.97));
}

/* Large decorative opening mark */
.quote-shell {
  min-height: 240px;
  position: relative;
  padding: 8px 4px 4px;
}

.quote-shell::before {
  content: "\00AB";
  position: absolute;
  top: -18px;
  left: -6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 148px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.055;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-slide {
  position: absolute;
  inset: 8px 4px auto;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--text);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.quote-slide.is-active { opacity: 1; transform: translateY(0); }

.quote-label {
  margin: 0;
  position: absolute;
  left: 4px; right: 4px;
  bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote-author {
  margin: 0;
  position: absolute;
  left: 4px; right: 4px;
  bottom: 2px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  opacity: 0.72;
}

.quote-dots {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.quote-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.28);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-dots span.is-active {
  transform: scale(1.5);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.55);
}

/* Corner ornaments */
.quote::before,
.quote::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-color: rgba(212, 168, 67, 0.38);
  border-style: solid;
  pointer-events: none;
}

.quote::before { top: 10px;    left: 10px;  border-width: 1px 0 0 1px; }
.quote::after  { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

/* ─── Toolkit Chips ───────────────────────────────────────── */
.toolkit { position: relative; overflow: hidden; }

.tool-group + .tool-group { margin-top: 14px; }

.tool-group-title {
  margin: 0 0 9px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.68;
}

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

.chip-list-magic .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212, 168, 67, 0.26);
  background: rgba(12, 9, 4, 0.92);
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.2s ease;
}

.chip-list-magic .chip:hover {
  border-color: rgba(212, 168, 67, 0.58);
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.14);
  transform: translateY(-1px);
}

.chip-list-magic .chip i {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(240, 216, 130, 0.4);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.32);
  flex-shrink: 0;
}

/* ─── Client Results ──────────────────────────────────────── */
.client-results .section-lead { margin-bottom: 10px; }

.reviews-track {
  --scroll-shift: 0px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 82%);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.reviews-dots {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.reviews-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.28);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.reviews-dots span.is-active {
  transform: scale(1.5);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.55);
}

.reviews-track .review {
  scroll-snap-align: start;
  min-height: 100%;
  border-color: rgba(212, 168, 67, 0.22);
  background: rgba(12, 9, 4, 0.9);
  transform: translateY(calc(var(--scroll-shift) * var(--parallax-factor, 1)));
  transition: transform 0.2s linear;
}

.review b {
  display: block;
  margin-top: 8px;
  color: var(--gold-bright);
  opacity: 0.82;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials-list { display: grid; gap: 10px; }

.testimonial { position: relative; padding-bottom: 12px; }

.testimonial-text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  line-height: 1.6;
  color: var(--muted);
}

.testimonial:not(.is-open)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 46px;
  height: 32px;
  background: linear-gradient(180deg, rgba(12, 9, 4, 0), rgba(12, 9, 4, 0.96));
  pointer-events: none;
}

.testimonial.is-open .testimonial-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-more {
  margin-top: 10px;
  border: 1px solid rgba(212, 168, 67, 0.28);
  border-radius: var(--r-pill);
  background: rgba(12, 9, 4, 0.88);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.review-more:hover {
  border-color: rgba(212, 168, 67, 0.58);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.18);
  background: rgba(20, 15, 5, 0.96);
}

.review-more:active { transform: translateY(1px); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq {
  margin-bottom: 8px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--r-card);
  background: rgba(12, 9, 4, 0.9);
  overflow: hidden;
  transition: border-color 0.26s ease;
}

.faq:hover { border-color: rgba(212, 168, 67, 0.44); }

.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  padding: 14px 50px 14px 14px;
  position: relative;
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq summary::-webkit-details-marker { display: none; }

.faq[open] summary { color: var(--gold-bright); }

.faq summary::after {
  content: "✦";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  color: var(--bg);
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.38);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.faq[open] summary::after {
  content: "✧";
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.55);
}

.faq p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Final CTA ───────────────────────────────────────────── */
.final-cta {
  margin-bottom: 18px;
  background: linear-gradient(165deg, rgba(20, 15, 5, 0.98), rgba(12, 9, 3, 0.98));
  border-color: rgba(212, 168, 67, 0.36);
  animation: ctaGlow 3.8s ease-in-out infinite;
}

.final-cta p { margin: 10px 0 0; color: var(--muted); }

/* ─── Dock ────────────────────────────────────────────────── */
.dock {
  position: fixed;
  left: 8px; right: 8px; bottom: 8px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: rgba(6, 4, 2, 0.97);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 6px;
  padding: 7px;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(212, 168, 67, 0.05) inset;
}

/* Gold top line */
.dock::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 14%; right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.58), transparent);
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.38);
}

.dock a {
  border-radius: 4px;
  min-height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  text-decoration: none;
  border: 1px solid rgba(212, 168, 67, 0.14);
  background: rgba(14, 11, 5, 0.92);
  overflow: hidden;
  position: relative;
  transition: border-color 0.22s ease, box-shadow 0.22s ease,
              transform 0.18s ease, background 0.22s ease;
}

.dock a:hover {
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 14px rgba(212, 168, 67, 0.22), inset 0 0 14px rgba(212, 168, 67, 0.06);
  background: rgba(22, 17, 7, 0.96);
}

.dock a:active { transform: translateY(1px); }

.dock-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(212, 168, 67, 0.6);
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.dock-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.dock-ico img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.7)
          sepia(0.4) saturate(2) hue-rotate(8deg);
}

.dock-ico-brand img {
  width: 22px; height: 22px;
  filter: none;
  opacity: 0.88;
}

.dock-call { border-color: rgba(212, 168, 67, 0.24); }
.dock-wa   { border-color: rgba(75, 150, 100, 0.18); }
.dock-tg   { border-color: rgba(80, 130, 200, 0.18); }
.dock-max  { border-color: rgba(140, 100, 200, 0.18); }

/* ─── Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.floaty { animation: floaty 7s ease-in-out infinite; }

/* ─── Tap Glow ────────────────────────────────────────────── */
.tap-glow { position: relative; overflow: hidden; }

.tap-glow::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 12px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 168, 67, 0.65), transparent);
  animation: tapFlashGold 0.5s ease-out forwards;
  pointer-events: none;
}

/* ─── Keyframes ───────────────────────────────────────────── */
@keyframes warmPulse {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1;   }
}

@keyframes shimmerGold {
  from { background-position: 240% 0; }
  to   { background-position: -240% 0; }
}

@keyframes candleFlicker {
  0%,  100% { opacity: 1; }
  7%         { opacity: 0.82; }
  9%         { opacity: 0.97; }
  17%        { opacity: 0.76; }
  19%        { opacity: 1; }
  33%        { opacity: 0.92; }
  65%        { opacity: 1; }
  84%        { opacity: 0.86; }
  86%        { opacity: 1; }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(212, 168, 67, 0.09); }
  50%       { box-shadow: 0 0 26px rgba(212, 168, 67, 0.24); }
}

@keyframes auraGold {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(1);    }
  50%       { opacity: 1;    transform: translateX(-50%) scale(1.07); }
}

@keyframes fogDriftGold {
  0%, 100% { opacity: 0.82; transform: translateX(-50%) translateY(0);    }
  50%       { opacity: 1;    transform: translateX(-48%) translateY(-5px); }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-9px); }
}

@keyframes trackGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(212, 168, 67, 0.2); }
  50%       { box-shadow: 0 0 14px rgba(212, 168, 67, 0.52); }
}

@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 168, 67, 0.38); }
  50%       { box-shadow: 0 0 20px rgba(212, 168, 67, 0.65); transform: scale(1.08); }
}

@keyframes pulseShell {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.012); }
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 22px rgba(212, 168, 67, 0.12);
    border-color: rgba(212, 168, 67, 0.36);
  }
  50% {
    box-shadow: 0 8px 40px rgba(0,0,0,0.55), 0 0 38px rgba(212, 168, 67, 0.28);
    border-color: rgba(212, 168, 67, 0.6);
  }
}

@keyframes tapFlashGold {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(20); }
}

@keyframes emberRise {
  0%   { opacity: 0;    transform: translate(0, 0) scale(1); }
  8%   { opacity: 0.88; }
  42%  { opacity: 0.6;  }
  78%  { opacity: 0.18; }
  100% { opacity: 0;    transform: translate(var(--drift, 20px), -100vh) scale(0.25); }
}

@keyframes quoteFlicker {
  0%   { opacity: 1; }
  18%  { opacity: 0.25; }
  22%  { opacity: 0.85; }
  38%  { opacity: 0.08; }
  100% { opacity: 0; transform: translateY(4px); }
}

/* ─── Small screens ───────────────────────────────────────── */
@media (max-width: 430px) {
  .btn { font-size: 14px; }
  h1 { font-size: clamp(27px, 8.5vw, 36px); }
  .quote-slide { font-size: 20px; }
  .quote-shell { min-height: 200px; }
}

/* ─── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal, .reveal.in-view { opacity: 1; transform: none; }
  .req-card                 { opacity: 1; transform: none; }
}
