/* =============================================================
   1. Tokens
   ============================================================= */
@property --mesh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@property --mesh-x     { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y     { syntax: "<percentage>"; inherits: false; initial-value: 40%; }
@property --angle      { syntax: "<angle>"; inherits: false; initial-value: 0deg; }

:root {
  --bg:        #0D0B08;
  --bg-2:      #16120C;
  --bg-3:      #201A11;
  --cream:     #F3ECDD;
  --cream-2:   #DED0B4;
  --cream-3:   #948565;
  --accent:    #C9A961;
  --accent-2:  #8B6F3E;
  --emerald:   #3F5C4A;
  --line:      rgba(243,236,221,.14);
  --line-soft: rgba(243,236,221,.08);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans:  "Manrope", -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; color: var(--cream); }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--accent); color: var(--bg);
  border-radius: 6px; font-weight: 600; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: min(1240px, 92%); margin-inline: auto; }
.container-narrow { width: min(760px, 92%); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow .hallmark-dot { font-size: .95em; }
.section-head { max-width: 640px; margin-bottom: 3.2rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: .8rem; }
.section-head p { margin-top: 1rem; color: var(--cream-3); font-size: 1.02rem; max-width: 52ch; }
.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-alt { background: var(--bg-2); }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background .3s, color .3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14100A;
  box-shadow: 0 10px 30px -8px rgba(201,169,97,.5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -10px rgba(201,169,97,.65); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-ghost {
  border: 1px solid var(--line); color: var(--cream);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-sm { padding: .7rem 1.3rem; font-size: .82rem; }
.btn-block { width: 100%; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 500;
  padding-block: 1.3rem;
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(13,11,8,0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--line);
  padding-block: .85rem;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand-mark { display: flex; align-items: center; gap: .65rem; }
.brand-mark .hallmark {
  height: 30px; width: auto; flex-shrink: 0; display: block;
}
.brand-mark .brand-name { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); letter-spacing: .01em; }
.brand-mark .brand-name em { font-style: italic; color: var(--accent); }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding: .25rem 0; font-size: .9rem; color: var(--cream-2);
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: .8rem; }
.nav-actions .btn { display: none; }
@media (min-width: 720px) { .nav-actions .btn { display: inline-flex; } }

.hamburger {
  width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%;
}
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger span { position: relative; width: 16px; height: 1px; background: var(--cream); display: block; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 16px; height: 1px; background: var(--cream); transition: transform .3s; }
.hamburger span::before { top: -5px; }
.hamburger span::after { top: 5px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile a { font-family: var(--serif); font-size: 1.7rem; font-style: italic; color: var(--cream-2); }
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .btn { margin-top: 1rem; }

/* =============================================================
   6. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: grid; place-items: center;
  pointer-events: auto;
  transition: opacity .9s, clip-path 1.1s;
  animation: splashSafety .01s 3.6s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-inner { display: grid; place-items: center; gap: 1rem; }
.splash-mark {
  width: 220px; height: auto;
  animation: splashPulse 2.4s var(--ease-soft) infinite;
}
.splash-mark img { width: 100%; height: auto; display: block; }
@keyframes splashPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.splash-line { width: 120px; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.splash-line::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  animation: splashLoad 1.8s var(--ease-out) infinite;
}
@keyframes splashLoad { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: clip; isolation: isolate; padding-top: 6rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  filter: saturate(1.05) contrast(1.02);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13,11,8,.88) 0%, rgba(13,11,8,.62) 32%, rgba(13,11,8,.72) 68%, rgba(13,11,8,.95) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(201,169,97,.14), transparent 60%);
}
.hero-inner { text-align: center; margin-inline: auto; }
.hero-inner .eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: .98;
  text-wrap: balance;
  max-width: 17ch;
  margin-inline: auto;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin: 1.6rem auto 0; max-width: 46ch; color: var(--cream-3); font-size: 1.08rem; font-family: var(--sans);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 2.2rem; justify-content: center;
  margin-top: 3.4rem; padding-top: 2rem; border-top: 1px solid var(--line-soft);
}
.hero-trust-item { text-align: center; }
.hero-trust-item .num { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--accent); font-style: italic; }
.hero-trust-item .lbl { font-size: .74rem; letter-spacing: .06em; color: var(--cream-3); text-transform: uppercase; }
.hero-scrolldown {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--cream-3); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
}
@media (min-width: 720px) and (min-height: 760px) { .hero-scrolldown { display: flex; } }
.hero-scrolldown::after {
  content: ""; width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent);
  animation: scrollHint 2s var(--ease-soft) infinite;
}
@keyframes scrollHint { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* =============================================================
   8. Reveal
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }

/* =============================================================
   9. Story / pillars
   ============================================================= */
.story-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 860px) { .story-grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; } }
.story-num { font-family: var(--serif); font-style: italic; font-size: 4.4rem; color: var(--accent-2); line-height: 1; }
.story-copy p { font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-family: var(--serif); color: var(--cream-2); line-height: 1.5; }
.story-copy p + p { margin-top: 1.4rem; }
.story-copy em { color: var(--accent); font-style: italic; }

.pillars { margin-top: 4.5rem; display: grid; gap: 2.2rem; }
@media (min-width: 720px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .pillars-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-4 { grid-template-columns: repeat(4, 1fr); } }
.pillar { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.pillar h3 { font-size: 1.25rem; margin-bottom: .7rem; }
.pillar p { font-size: .95rem; color: var(--cream-3); }

/* Steps (how it works) */
.steps-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-card {
  padding: 1.8rem; border-radius: 16px; background: var(--bg-3); border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), border-color .5s;
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(201,169,97,.4); }
.step-num { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--accent-2); }
.step-card h3 { font-size: 1.12rem; margin: .7rem 0 .5rem; }
.step-card p { font-size: .9rem; color: var(--cream-3); }
.steps-cta { margin-top: 2.6rem; text-align: center; }

/* =============================================================
   10. Showcase pinned horizontal
   ============================================================= */
.showcase { position: relative; }
.showcase.is-pinned { overflow: clip; }
.showcase-head { padding-inline: max(4vw, calc((100% - 1240px) / 2 + 4px)); }
.showcase-track {
  display: flex; flex-wrap: nowrap; gap: 1.4rem;
  padding: 1rem max(4vw, calc((100% - 1240px) / 2)) 3rem;
  will-change: transform;
}
.showcase:not(.is-pinned) .showcase-track { overflow-x: auto; overflow-y: visible; scroll-snap-type: x proximity; }
.showcase:not(.is-pinned) .showcase-track .sc-card { scroll-snap-align: start; }

.sc-card {
  flex: 0 0 auto; width: min(300px, 78vw);
  border-radius: 18px; overflow: hidden;
  background: var(--bg-3); border: 1px solid var(--line);
  transition: box-shadow .5s var(--ease-soft), border-color .5s;
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.sc-card:hover { border-color: rgba(201,169,97,.4); }
.sc-media {
  aspect-ratio: 4/5; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #241c11 0%, #171209 100%);
}
.sc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-soft), filter .55s;
}
.sc-card:hover .sc-media img { transform: scale(1.08); filter: saturate(1.1) brightness(1.04); }
.sc-tag {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  font-family: var(--mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 999px; background: rgba(13,11,8,.7); border: 1px solid var(--line); color: var(--accent);
}
.sc-body { padding: 1.3rem 1.3rem 1.5rem; transform: translateZ(30px); }
.sc-body h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.sc-body p { font-size: .82rem; color: var(--cream-3); }
.sc-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; font-size: .8rem; color: var(--accent); }
.sc-link::after { content: "→"; transition: transform .3s var(--ease-out); }
.sc-card:hover .sc-link::after { transform: translateX(4px); }

/* =============================================================
   11. Services
   ============================================================= */
.services-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card {
  padding: 2.1rem; border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  position: relative; isolation: isolate;
  transition: transform .5s var(--ease-soft), border-color .5s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,169,97,.4); }
.service-card .idx { font-family: var(--mono); font-size: .75rem; color: var(--accent-2); letter-spacing: .1em; }
.service-card h3 { margin: .8rem 0 .7rem; font-size: 1.35rem; }
.service-card p { color: var(--cream-3); font-size: .95rem; margin-bottom: 1.4rem; }

/* =============================================================
   14. Gold value calculator (interactive)
   ============================================================= */
.calc-notice {
  display: flex; gap: .9rem; align-items: flex-start;
  margin-bottom: 2rem; padding: 1.1rem 1.3rem; border-radius: 14px;
  background: rgba(201,169,97,.08); border: 1px solid rgba(201,169,97,.35);
}
.calc-notice-tag {
  flex-shrink: 0; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: #14100A; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: .3rem .6rem; border-radius: 999px;
}
.calc-notice p { font-size: .88rem; color: var(--cream-2); line-height: 1.5; }
.calc-notice strong { color: var(--accent); }
.guide-box {
  border-radius: 22px; border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  padding: clamp(1.6rem, 4vw, 3rem);
  display: grid; gap: 2.4rem;
}
@media (min-width: 860px) { .guide-box { grid-template-columns: 1fr 1fr; align-items: center; } }
.guide-copy h3 { font-size: 1.6rem; margin-bottom: .8rem; }
.guide-copy p { color: var(--cream-3); font-size: .96rem; margin-bottom: 1.3rem; }
.guide-steps { display: grid; gap: .9rem; margin-bottom: 1.6rem; }
.guide-step { display: flex; gap: .9rem; align-items: flex-start; font-size: .92rem; color: var(--cream-2); }
.guide-step .n {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center; font-family: var(--mono); font-size: .74rem; color: var(--accent);
}
.guide-calc { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem; }
.guide-calc label { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--cream-3); display: block; margin-bottom: .6rem; }
.guide-calc input[type="range"] { width: 100%; accent-color: var(--accent); }
.guide-result { margin-top: 1.4rem; display: flex; align-items: baseline; gap: .8rem; }
.guide-result .size-mm { font-family: var(--serif); font-style: italic; font-size: 2.4rem; color: var(--accent); }
.guide-result .size-pt { font-size: .9rem; color: var(--cream-3); }

/* Karat tabs + calculator disclaimer */
.karat-tabs { display: flex; gap: .6rem; }
.karat-tab {
  flex: 1; padding: .75rem 0; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg-3); color: var(--cream-2); font-weight: 700; font-family: var(--mono); font-size: .95rem;
  transition: border-color .3s, color .3s, background .3s;
}
.karat-tab:hover { border-color: rgba(201,169,97,.5); }
.karat-tab.is-active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #14100A; border-color: transparent; }
.field-select-label-mt { margin-top: 1.5rem; }
.calc-disclaimer { margin-top: 1.3rem; font-size: .78rem; color: var(--cream-3); line-height: 1.5; }

/* Services price table */
.price-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--line); }
.price-table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 420px; }
.price-table th, .price-table td { padding: .9rem 1.3rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table th { font-family: var(--sans); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); background: var(--bg-3); }
.price-table td:first-child { color: var(--cream-2); }
.price-table td:last-child { color: var(--accent); font-weight: 600; text-align: right; }
.price-table tr:last-child td { border-bottom: 0; }

/* Trust section */
.trust-grid { display: grid; gap: 2.6rem; align-items: center; }
@media (min-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
.trust-text p { color: var(--cream-3); margin-top: 1rem; max-width: 46ch; }
.trust-list { margin-top: 1.6rem; display: grid; gap: .8rem; }
.trust-list li { position: relative; padding-left: 1.5rem; font-size: .93rem; color: var(--cream-2); }
.trust-list li::before { content: "◆"; position: absolute; left: 0; top: .05em; color: var(--accent); font-size: .7em; }
.trust-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.trust-photos img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); }
.trust-photos img:nth-child(2) { margin-top: 2rem; }

/* Locations */
.locations-grid { display: grid; gap: 1.2rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
.location-card {
  padding: 1.6rem; border-radius: 16px; background: var(--bg-3); border: 1px solid var(--line);
  transition: transform .5s var(--ease-soft), border-color .5s;
}
.location-card:hover { transform: translateY(-4px); border-color: rgba(201,169,97,.4); }
.location-pin { font-size: 1.4rem; }
.location-card h3 { font-size: 1.1rem; margin: .6rem 0 .3rem; }
.location-card p { font-size: .86rem; color: var(--cream-3); }
.storefront-photos { display: grid; gap: 1rem; }
@media (min-width: 720px) { .storefront-photos { grid-template-columns: 1fr 1fr; } }
.storefront-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px; border: 1px solid var(--line); }

/* =============================================================
   15. Contact — hours + field-select-label (still used by calculator)
   ============================================================= */
.hours-table { margin-top: 0; border-top: 1px solid var(--line); padding-top: 1.4rem; text-align: left; }
.hours-row { display: flex; justify-content: space-between; padding: .5rem 0; font-size: .88rem; border-bottom: 1px solid var(--line-soft); }
.hours-row span:first-child { color: var(--cream-3); }
.field-select-label { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); display: block; margin-bottom: .5rem; }
.form-note { margin-top: 1rem; font-size: .76rem; color: var(--cream-3); }

/* =============================================================
   17. FAQ accordion
   ============================================================= */
.faq-list { display: grid; gap: .8rem; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--bg-3); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.4rem; text-align: left; font-family: var(--serif); font-size: 1.08rem; color: var(--cream);
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); transition: transform .35s var(--ease-out); }
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 1px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%); }
.faq-item[data-open="true"] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-soft); }
.faq-a-inner { padding: 0 1.4rem 1.4rem; color: var(--cream-3); font-size: .93rem; max-width: 62ch; }

/* =============================================================
   18. Final CTA + newsletter
   ============================================================= */
.final-cta { position: relative; overflow: clip; text-align: center; border-radius: 26px; padding: clamp(3rem, 8vw, 5.5rem) 1.5rem; }
.final-cta::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(50% 60% at 50% 40%, rgba(201,169,97,.28), transparent 65%), var(--bg-2);
  filter: blur(60px);
}
.final-cta h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 18ch; margin-inline: auto; }
.final-cta p { margin: 1.2rem auto 0; max-width: 44ch; color: var(--cream-3); }
.final-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.contact-meta { margin: 2.4rem auto 0; max-width: 360px; }
.contact-email { margin-top: 1.2rem; font-size: .86rem; color: var(--cream-3); text-align: center; }
.contact-email a:hover { color: var(--accent); }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { padding-block: 4rem 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.6rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr .8fr .8fr 1fr; } }
.footer-brand p { margin-top: 1rem; color: var(--cream-3); font-size: .88rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .65rem; }
.footer-col a { font-size: .9rem; color: var(--cream-2); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .76rem; color: var(--cream-3);
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 2px; }

/* =============================================================
   20. WhatsApp floating button
   ============================================================= */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #0b1a10;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px -6px rgba(37,211,102,.55);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 36px -6px rgba(37,211,102,.65); }
.wa-float svg { width: 28px; height: 28px; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  animation: waPulse 2.4s var(--ease-soft) infinite; z-index: -1;
}
@keyframes waPulse { 0% { opacity: .55; transform: scale(1); } 100% { opacity: 0; transform: scale(1.9); } }
@media (prefers-reduced-motion: reduce) { .wa-pulse { animation: none; opacity: 0; } }

/* =============================================================
   21. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-trust { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; }
}

/* =============================================================
   22. Reduced-motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-scrolldown::after { animation: none; }
  .splash-mark { animation: none; }
  .splash-line::after { animation: none; }
}
