/* ========== Tokens ========== */
:root {
  --bg: #0a0807;
  --bg-2: #110e0a;
  --bg-3: #1a1510;
  --line: rgba(201, 169, 97, 0.18);
  --line-strong: rgba(201, 169, 97, 0.4);
  --ivory: #f5f1e8;
  --ivory-dim: #c8c2b3;
  --ivory-faint: #7a7468;
  --gold-1: #b8870e;
  --gold-2: #c9a961;
  --gold-3: #f4d57a;
  --gold-grad: linear-gradient(135deg, #b8870e 0%, #c9a961 30%, #f4d57a 55%, #c9a961 80%, #8c6515 100%);
  --gold-grad-soft: linear-gradient(135deg, #c9a961 0%, #f4d57a 50%, #b8870e 100%);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --display: "Cinzel", "Cormorant Garamond", Georgia, serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-gold: 0 0 60px rgba(201, 169, 97, 0.18);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ========== Star field ========== */
.starfield {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 12% 8%, rgba(244, 213, 122, 0.5), transparent 50%),
    radial-gradient(1px 1px at 27% 31%, rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(1.2px 1.2px at 67% 19%, rgba(244, 213, 122, 0.45), transparent 50%),
    radial-gradient(1px 1px at 81% 62%, rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 45% 76%, rgba(244, 213, 122, 0.4), transparent 50%),
    radial-gradient(1px 1px at 91% 89%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(1px 1px at 9% 67%, rgba(244, 213, 122, 0.3), transparent 50%),
    radial-gradient(1.5px 1.5px at 54% 14%, rgba(255, 255, 255, 0.3), transparent 50%);
  background-size: 600px 600px;
  animation: drift 90s linear infinite;
}
@keyframes drift {
  0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 600px 600px, -600px 600px, 600px -600px, -600px -600px, 300px 600px, 600px 300px, -300px 600px, 600px -300px; }
}

.gold-fog {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 15%, rgba(184, 135, 14, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 70%, rgba(201, 169, 97, 0.08), transparent 60%);
}

main { position: relative; z-index: 1; }

/* ========== Top bar ========== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  letter-spacing: 0.16em;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.brand-name { font-size: 13px; line-height: 1.1; }
.brand-name b { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; font-weight: 600; }
.brand-name span { color: var(--ivory-dim); font-size: 10px; letter-spacing: 0.3em; }
.topbar nav { display: flex; gap: 28px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory-dim); }
.topbar nav a { transition: color 0.2s; }
.topbar nav a:hover { color: var(--gold-3); }
.topbar .cta-mini { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: 0.06em; padding: 9px 16px; border: 1px solid var(--line-strong); border-radius: 999px; transition: all 0.25s; }
.topbar .cta-mini:hover { background: var(--gold-grad); color: #0a0807; border-color: transparent; }
.cta-mini svg { width: 14px; height: 14px; }
@media (max-width: 880px) { .topbar nav { display: none; } }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 28px 100px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: translate(-50%, -50%) scale(1.05);
  animation: slowZoom 22s ease-in-out infinite alternate;
  filter: saturate(1.05) contrast(1.05);
}
@keyframes slowZoom {
  0%   { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1.15); }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(10,8,7,0.55) 0%, rgba(10,8,7,0.85) 90%),
    linear-gradient(180deg, rgba(10,8,7,0.6) 0%, rgba(10,8,7,0.35) 25%, rgba(10,8,7,0.55) 70%, rgba(10,8,7,0.95) 100%);
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 90vw); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(244, 213, 122, 0.10) 0%, rgba(184, 135, 14, 0.04) 35%, transparent 70%);
  filter: blur(40px);
  animation: pulse 6s ease-in-out infinite;
  z-index: 1; pointer-events: none;
}
@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-inner { position: relative; z-index: 2; max-width: 940px; }
.hero-inner * { text-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5); }
.eyebrow {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 28px;
  display: inline-flex; align-items: center; gap: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(38px, 6.2vw, 78px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0;
}
.hero p.lead {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--ivory-dim);
  max-width: 660px;
  margin: 0 auto 44px;
  line-height: 1.5;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--gold-grad);
  color: #0a0807;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 10px 40px -10px rgba(244, 213, 122, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-gold::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.7s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 50px -8px rgba(244, 213, 122, 0.55), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-gold:hover::after { transform: translateX(110%); }
.btn-gold svg { width: 18px; height: 18px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--gold-2); color: var(--gold-3); }

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 820px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.hero-stat { text-align: center; padding: 6px 8px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--line); }
.hero-stat .num { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); background: var(--gold-grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat .lab { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ivory-faint); margin-top: 4px; }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(3) { border-left: none; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; }
}

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ivory-faint);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.scroll-hint::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold-2), transparent);
  animation: trickle 2.4s ease-in-out infinite;
}
@keyframes trickle {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ========== Sections ========== */
section { position: relative; padding: 120px 28px; }
.container { max-width: 1180px; margin: 0 auto; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.kicker {
  font-family: var(--display);
  font-size: 11px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 14px;
}
.kicker::before, .kicker::after {
  content: ""; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.section-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  background: var(--gold-grad-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ivory-dim);
  line-height: 1.55;
}

/* ========== Pain section ========== */
.pain { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 30%, transparent); }
.pain-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.pain-quote {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.6), rgba(10, 8, 7, 0.3));
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.pain-quote:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.pain-quote::before {
  content: "❝";
  font-family: var(--display);
  position: absolute;
  top: 12px; left: 18px;
  font-size: 48px; line-height: 1;
  color: var(--gold-2);
  opacity: 0.4;
}
.pain-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  padding-top: 22px;
}
.pain-cta {
  text-align: center;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--ivory);
  margin-top: 24px;
  line-height: 1.5;
}
.pain-cta b {
  display: block; margin-top: 12px;
  font-style: normal;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-grad-soft);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ========== About ========== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #1a1510, #0a0807);
  display: grid; place-items: center;
  border-radius: 2px;
  overflow: hidden;
}
.about-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 28% 40%;
  filter: contrast(1.06) saturate(1.08) brightness(1.04);
}
.about-portrait::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(10,8,7,0.7), transparent 60%),
    linear-gradient(180deg, transparent 40%, rgba(10,8,7,0.5) 100%),
    linear-gradient(135deg, rgba(184, 135, 14, 0.08), transparent 50%);
  pointer-events: none;
}
.about-portrait::before {
  content: ""; position: absolute; inset: -1px;
  border: 1px solid transparent;
  background: var(--gold-grad) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.about-portrait .placeholder-label {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--ivory-faint);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}
.about-portrait .frame-corners { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.about-portrait .frame-corners span {
  position: absolute; width: 24px; height: 24px;
  border: 1px solid var(--gold-2);
}
.frame-corners span:nth-child(1) { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.frame-corners span:nth-child(2) { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.frame-corners span:nth-child(3) { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.frame-corners span:nth-child(4) { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.about-body h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-body h2 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  background: var(--gold-grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-body p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ivory-dim);
  margin-bottom: 18px;
}
.about-body p strong { color: var(--ivory); font-weight: 500; }
.about-credentials {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.cred {
  border-left: 1px solid var(--gold-2);
  padding: 4px 0 4px 16px;
}
.cred .v { font-family: var(--display); font-size: 22px; background: var(--gold-grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cred .k { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ivory-faint); margin-top: 4px; }
.about-signature {
  margin-top: 36px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 32px;
  color: var(--gold-3);
}

/* ========== Services ========== */
.services { background: linear-gradient(180deg, transparent, rgba(20,17,13,0.4) 50%, transparent); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service {
  position: relative;
  padding: 40px 32px 36px;
  background: linear-gradient(180deg, rgba(26, 21, 16, 0.7), rgba(10, 8, 7, 0.4));
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.35s;
  overflow: hidden;
}
.service::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.service:hover { border-color: var(--line-strong); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service:hover::before { opacity: 1; }
.service.featured {
  border-color: var(--gold-2);
  background: linear-gradient(180deg, rgba(42, 33, 18, 0.5), rgba(10, 8, 7, 0.5));
}
.service.featured::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  margin-bottom: 24px;
  color: var(--gold-3);
}
.service h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.service p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ivory-dim);
  line-height: 1.55;
}
.service-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #0a0807;
}

/* ========== Featured CTA strip ========== */
.featured-strip {
  margin: 80px auto 0;
  max-width: 1180px;
  padding: 56px 48px;
  border: 1px solid var(--gold-2);
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(244, 213, 122, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(26, 21, 16, 0.85), rgba(10, 8, 7, 0.85));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.featured-strip h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  margin-bottom: 16px;
}
.featured-strip h3 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  background: var(--gold-grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.featured-strip p {
  font-family: var(--serif); font-size: 19px; color: var(--ivory-dim);
  max-width: 580px; margin: 0 auto 28px;
}

/* ========== Process ========== */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-list::before {
  content: ""; position: absolute;
  top: 34px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2) 15%, var(--gold-2) 85%, transparent);
}
.step {
  padding: 0 18px;
  text-align: center;
  position: relative;
}
.step .step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-family: var(--display);
  font-size: 22px;
  background: var(--bg);
  border: 1px solid var(--gold-2);
  color: var(--gold-3);
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.step:hover .step-num { background: var(--gold-grad); color: var(--bg); }
.step h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.step p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ivory-dim);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .process-list { grid-template-columns: 1fr; gap: 40px; }
  .process-list::before { display: none; }
}

/* ========== Testimonials ========== */
.testimonials { background: linear-gradient(180deg, transparent, rgba(20, 17, 13, 0.5) 50%, transparent); }
.testimonial-carousel {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.testimonial-card {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(26, 21, 16, 0.7), rgba(10, 8, 7, 0.5));
  padding: 48px 56px 40px;
  border-radius: 4px;
  position: relative;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (max-width: 640px) { .testimonial-card { padding: 36px 24px 28px; min-height: 420px; } }
.testimonial-card::before {
  content: "❝";
  position: absolute; top: 18px; left: 28px;
  font-family: var(--display); font-size: 80px; line-height: 1;
  color: var(--gold-2); opacity: 0.25;
}
.tstars { display: flex; gap: 4px; margin-bottom: 18px; color: var(--gold-3); }
.tstars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card .tquote {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 28px;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.tavatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 17px;
  background: var(--gold-grad);
  color: var(--bg);
}
.testimonial-meta .name { font-family: var(--display); font-size: 16px; letter-spacing: 0.04em; }
.testimonial-meta .loc { font-size: 12px; color: var(--ivory-faint); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.testimonial-meta .badge {
  margin-left: auto;
  font-family: var(--display); font-size: 11px; letter-spacing: 0.18em;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--gold-2); color: var(--gold-3);
}

.carousel-nav {
  display: flex; justify-content: center; align-items: center; gap: 24px;
  margin-top: 32px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%; border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ivory-dim);
  transition: all 0.25s;
}
.carousel-btn:hover:not(:disabled) { border-color: var(--gold-2); color: var(--gold-3); }
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-btn svg { width: 16px; height: 16px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--line-strong); transition: all 0.25s;
}
.carousel-dots button.active { background: var(--gold-2); width: 24px; border-radius: 4px; }

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item button {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  padding: 28px 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ivory);
  transition: color 0.25s;
}
.faq-item button:hover { color: var(--gold-3); }
.faq-item .icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all 0.3s;
}
.faq-item.open .icon { background: var(--gold-grad); color: var(--bg); border-color: transparent; transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}
.faq-item.open .faq-body { max-height: 800px; padding-bottom: 28px; }
.faq-body p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ivory-dim);
}

/* ========== Urgency CTA ========== */
.urgency {
  padding: 140px 28px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(244, 213, 122, 0.1), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.urgency::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 135, 14, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(244, 213, 122, 0.06), transparent 40%);
  pointer-events: none;
}
.urgency-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.urgency h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.urgency h2 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  background: var(--gold-grad-soft); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.urgency p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory-dim);
  line-height: 1.55;
  margin-bottom: 40px;
}
.urgency-meta {
  margin-top: 36px;
  display: inline-flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ivory-faint);
}
.urgency-meta span { display: inline-flex; align-items: center; gap: 8px; }
.urgency-meta span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-3);
  box-shadow: 0 0 12px var(--gold-3);
}

/* ========== Footer ========== */
footer {
  padding: 60px 28px 36px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--ivory-faint);
  background: var(--bg-2);
}
footer .ornate {
  display: inline-block;
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  margin: 0 auto 24px;
}
footer .brand-name { display: inline-block; margin-bottom: 16px; }
footer .legal { margin-top: 18px; font-size: 12px; color: var(--ivory-faint); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ========== Floating WhatsApp ========== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 18px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5), 0 0 0 4px rgba(37, 211, 102, 0.18); }
.wa-float svg { width: 22px; height: 22px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 32px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 16px; }
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ========== Ornament ========== */
.divider-ornament {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 0 auto;
  color: var(--gold-2);
}
.divider-ornament::before, .divider-ornament::after {
  content: ""; height: 1px; flex: 1; max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}
.divider-ornament svg { width: 24px; height: 24px; }
