/* =========================================================
   Nine and Shine — 2026 Dark Luxury Redesign
   Deep forest × warm gold × cinematic photography
   ========================================================= */

:root {
  /* Palette */
  --bg-0:      #050f0c;   /* deepest — page base */
  --bg-1:      #071812;   /* body */
  --bg-2:      #0b241d;   /* section alt */
  --bg-3:      #0f3229;   /* elevated card */
  --bg-4:      #164a3e;   /* strong emerald */

  --gold-200:  #f0dcaa;
  --gold-300:  #e8c78a;
  --gold-400:  #d9b16a;
  --gold-500:  #cc9a49;
  --gold-600:  #b58335;
  --gold-700:  #8f6620;

  --ivory-100: #fbf2dc;
  --ivory-200: #f2e7cc;
  --ivory-300: #dcceac;
  --ivory-400: #b2a889;
  --ivory-500: #857e66;

  --wa:        #25d366;
  --wa-dark:   #128c7e;

  --line:        rgba(240, 220, 170, 0.12);
  --line-strong: rgba(240, 220, 170, 0.24);
  --line-soft:   rgba(240, 220, 170, 0.06);
  --line-dark:   rgba(0, 0, 0, 0.35);

  --shadow-glow-gold:  0 20px 60px -12px rgba(204, 154, 73, 0.35);
  --shadow-elev:       0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --shadow-card:       0 20px 50px -12px rgba(0, 0, 0, 0.5);

  /* Type */
  --font-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Layout */
  --page: 1360px;
  --gutter: clamp(1.25rem, 3.5vw, 2.75rem);

  /* Motion */
  --e-fast: .2s cubic-bezier(.4,0,.2,1);
  --e-med:  .45s cubic-bezier(.2,.6,.2,1);
  --e-slow: .8s cubic-bezier(.2,.6,.2,1);
}

/* ================ Reset ================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-1);
}
body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ivory-200);
  background: var(--bg-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--e-fast); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--gold-500); color: var(--bg-0); }

.container {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ================ Ambient glows (page bg) ================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1200px 700px at 90% -10%, rgba(217, 177, 106, 0.10), transparent 55%),
    radial-gradient(900px 700px at 5% 15%, rgba(22, 74, 62, 0.35), transparent 55%),
    radial-gradient(1000px 800px at 60% 90%, rgba(217, 177, 106, 0.08), transparent 60%),
    var(--bg-1);
  pointer-events: none;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold-500); color: var(--bg-0);
  padding: .6rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; border-radius: 4px; }

/* ================ Type ================ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; color: var(--ivory-100); }
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold-400);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-500);
}

.h-section {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory-100);
}
.h-sub {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.15;
  color: var(--ivory-100);
}
.lead {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.65;
  color: var(--ivory-300);
}
.fine {
  font-size: 12.5px;
  letter-spacing: .01em;
  color: var(--ivory-400);
}

/* ================ Marquee top ================ */
.marquee-top {
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(90deg, var(--bg-0), var(--bg-2) 50%, var(--bg-0));
  overflow: hidden;
  font-size: 11.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ivory-400);
}
.marquee-top .track {
  display: inline-flex;
  gap: 2.5rem;
  padding: .65rem 0;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
}
.marquee-top .track em { font-style: normal; color: var(--gold-400); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-top .track { animation: none; }
}

/* ================ Header ================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 24, 18, 0.55);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--e-med), border-color var(--e-med);
}
.site-header.scrolled {
  background: rgba(5, 15, 12, 0.85);
  border-bottom-color: var(--line-soft);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex; align-items: center; gap: .9rem;
  color: var(--ivory-100);
}
.brand-mark {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ivory-100), var(--gold-200));
  padding: 4px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.5), 0 0 0 1px rgba(240,220,170,.08);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--ivory-100);
  letter-spacing: .005em;
}
.brand-title em { color: var(--gold-400); font-style: italic; font-weight: 400; }
.brand-sub {
  margin-top: .35rem;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.menu {
  display: flex; gap: 2.2rem; justify-self: center;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu a {
  position: relative;
  padding: .4rem 0;
  color: var(--ivory-300);
  font-weight: 500;
}
.menu a::after {
  content: "";
  position: absolute; left: 0; right: 100%;
  bottom: -2px; height: 1px;
  background: var(--gold-400);
  transition: right var(--e-med);
}
.menu a:hover { color: var(--ivory-100); }
.menu a:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: .9rem; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span {
  width: 22px; height: 1.5px; background: var(--ivory-100);
  transition: transform var(--e-fast), opacity var(--e-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ================ Buttons ================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background var(--e-fast), color var(--e-fast), border-color var(--e-fast), transform var(--e-fast), box-shadow var(--e-fast);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--bg-0);
  box-shadow: 0 10px 30px -8px rgba(204, 154, 73, 0.5);
}
.btn-gold:hover {
  transform: translateY(-2px);
  color: var(--bg-0);
  box-shadow: 0 18px 40px -8px rgba(217, 177, 106, .65);
}
.btn-outline {
  background: transparent;
  color: var(--ivory-100);
  border-color: rgba(240, 220, 170, 0.35);
}
.btn-outline:hover {
  background: rgba(240, 220, 170, 0.08);
  border-color: var(--gold-400);
  color: var(--ivory-100);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: .55rem 1rem;
  background: rgba(240, 220, 170, .06);
  color: var(--ivory-100);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(240, 220, 170, .12); border-color: var(--line-strong); }

.btn-wa-mini {
  padding: .7rem 1.15rem;
  font-size: 12px;
}
.btn-wa-mini svg { color: var(--wa); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold-600);
  transition: gap var(--e-fast), color var(--e-fast), border-color var(--e-fast);
}
.link-arrow:hover { gap: 1rem; color: var(--gold-300); border-color: var(--gold-300); }

/* ================ Hero ================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.72) saturate(.95) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,15,12,0.35) 0%, rgba(5,15,12,0.15) 30%, rgba(5,15,12,0.85) 100%),
    linear-gradient(90deg, rgba(5,15,12,0.7) 0%, rgba(5,15,12,0.05) 45%, rgba(5,15,12,0.25) 100%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(600px 400px at 80% 30%, rgba(217, 177, 106, 0.22), transparent 60%),
    radial-gradient(500px 350px at 15% 80%, rgba(22, 74, 62, 0.4), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}
.hero-copy {
  max-width: 900px;
}
.hero .eyebrow { margin-bottom: 1.5rem; }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: .96;
  letter-spacing: -0.03em;
  color: var(--ivory-100);
  margin-bottom: 1.75rem;
  text-shadow: 0 4px 40px rgba(0,0,0,.35);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
  display: inline;
  font-weight: 400;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ivory-300);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Hero trust bar (glass) */
.hero-trust {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 900px;
}
.hero-trust > div {
  padding: 1.4rem 1.5rem;
  background: rgba(11, 36, 29, 0.55);
  display: flex; flex-direction: column; gap: .35rem;
}
.hero-trust small {
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
}
.hero-trust strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory-100);
  line-height: 1.15;
}
.hero-trust .stars { display: inline-flex; gap: 2px; color: var(--gold-400); font-size: 1rem; letter-spacing: 1px; }

@media (max-width: 900px) {
  .hero-trust { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .hero-trust { grid-template-columns: 1fr; }
}

/* Big watermark logo on hero */
.hero-watermark {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: min(52vw, 640px);
  aspect-ratio: 1;
  z-index: 1;
  opacity: .09;
  pointer-events: none;
  background: url("/images/logo.png") no-repeat center/contain;
  filter: brightness(1.3);
}
@media (max-width: 720px) { .hero-watermark { right: -20%; top: 62%; width: 90vw; opacity: .07; } }

/* ================ Stat strip ================ */
.stats {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: linear-gradient(180deg, transparent, rgba(11, 36, 29, .4), transparent);
}
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat {
  padding: 0 1.5rem;
  border-right: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: .5rem;
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-400);
  letter-spacing: -0.02em;
}
.stat-num em { font-style: italic; color: var(--gold-300); }
.stat-label {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory-300);
}
.stat-sub { font-size: 13px; color: var(--ivory-400); line-height: 1.5; }

@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; gap: 2rem 0; } .stat { border-right: 0; } }
@media (max-width: 520px) { .stat-grid { grid-template-columns: 1fr; } }

/* ================ Sections ================ */
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.section-alt { background: var(--bg-0); }
.section-luxe { background: linear-gradient(180deg, var(--bg-2), var(--bg-1)); }

.section-head {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 3fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.section-head .eyebrow { padding-top: .5rem; align-self: start; }
.section-head .h-section { grid-column: 2; }
.section-head .aside {
  grid-column: 2;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.section-head .aside .lead { max-width: 40ch; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 1rem; }
  .section-head .h-section, .section-head .eyebrow, .section-head .aside { grid-column: 1; }
}

/* ================ Signature Bento ================ */
.signatures { background: var(--bg-0); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 14px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  padding: 2rem;
  transition: transform var(--e-med), border-color var(--e-med), box-shadow var(--e-med);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 260px;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-glow-gold);
}
.bento-card .b-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-400);
  font-size: 1.1rem;
}
.bento-card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  color: var(--ivory-100);
  margin-bottom: .5rem;
}
.bento-card p {
  color: var(--ivory-300);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 34ch;
  margin-bottom: 1rem;
}
.bento-card .b-meta {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-400);
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
  margin-top: auto;
}

/* Feature card (photo) */
.bento-feature {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 540px;
  padding: 0;
}
.bento-feature .b-photo {
  position: absolute; inset: 0;
}
.bento-feature .b-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.85) saturate(1.05);
  transition: transform 6s ease;
}
.bento-feature:hover .b-photo img { transform: scale(1.05); }
.bento-feature .b-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,15,12,0) 30%, rgba(5,15,12,.95) 100%);
}
.bento-feature .b-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
}
.bento-feature .b-tag {
  display: inline-block;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(240,220,170,.16);
  border: 1px solid var(--line);
  color: var(--gold-300);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bento-feature h3 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.bento-feature p {
  color: var(--ivory-200);
  font-size: 15.5px;
  max-width: 42ch;
}

.bento-small  { grid-column: span 3; }
.bento-mid    { grid-column: span 2; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-feature { grid-column: span 2; grid-row: auto; min-height: 460px; }
  .bento-small, .bento-mid { grid-column: span 1; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-feature, .bento-small, .bento-mid { grid-column: span 1; }
}

/* ================ Ritual (split image + steps) ================ */
.ritual {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}
.ritual-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.ritual-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-elev);
}
.ritual-image::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(240,220,170,.3), transparent 30%, rgba(240,220,170,.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.ritual-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.9) saturate(.95);
}
.ritual-image .badge-quote {
  position: absolute;
  left: -1.5rem; bottom: 2rem;
  max-width: 260px;
  padding: 1.25rem 1.4rem;
  background: rgba(5, 15, 12, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ivory-200);
  z-index: 2;
}
.ritual-image .badge-quote::before {
  content: "";
  display: block;
  width: 22px; height: 1px;
  background: var(--gold-400);
  margin-bottom: .6rem;
}

.ritual-copy .h-section { margin: 1rem 0 2rem; }
.ritual-list { margin-top: 2rem; display: flex; flex-direction: column; }
.ritual-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.ritual-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.ritual-list li > .step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
}
.ritual-list h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory-100);
  margin-bottom: .35rem;
}
.ritual-list p { color: var(--ivory-300); font-size: 15px; max-width: 44ch; }

@media (max-width: 900px) {
  .ritual-inner { grid-template-columns: 1fr; }
  .ritual-image { max-width: 480px; margin: 0 auto; }
}

/* ================ Testimonials ================ */
.testimonials { background: var(--bg-0); }
.big-quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.25;
  color: var(--ivory-100);
  max-width: 880px;
  margin: 0 auto 4rem;
  text-align: center;
}
.big-quote em { color: var(--gold-400); font-style: italic; }
.big-quote::before {
  content: "\201C";
  display: block;
  font-size: 4rem;
  color: var(--gold-500);
  line-height: .5;
  margin-bottom: 1.5rem;
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.tst {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(11, 36, 29, .8), rgba(15, 50, 41, .4));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  transition: transform var(--e-med), border-color var(--e-med), box-shadow var(--e-med);
}
.tst:hover {
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}
.tst .stars {
  color: var(--gold-400);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.tst blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ivory-100);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.tst-attribution {
  display: flex; align-items: center; gap: .85rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}
.tst-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--bg-4));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-0);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
}
.tst-meta strong {
  display: block;
  color: var(--ivory-100);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
}
.tst-meta small {
  color: var(--ivory-400);
  font-size: 12px;
  letter-spacing: .1em;
}

@media (max-width: 900px) { .tst-grid { grid-template-columns: 1fr; } }

/* ================ Coverage ================ */
.coverage {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-1) 60%);
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 500px at 80% 30%, rgba(217, 177, 106, .18), transparent 55%);
  pointer-events: none;
}
.coverage-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
}
.coverage h2 {
  margin: 1.5rem 0 2rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory-100);
}
.coverage h2 em { color: var(--gold-400); font-style: italic; display: block; }
.coverage > .container > .coverage-inner > .coverage-copy > p {
  color: var(--ivory-200);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 55ch;
  margin-bottom: 1.5rem;
}
.coverage .fine { color: var(--ivory-400); max-width: 55ch; margin-top: 1.5rem; }
.coverage .btn-gold { margin-top: 1rem; }

.coverage-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(5, 15, 12, .7);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(20px);
}
.coverage-badge {
  display: inline-block;
  padding: .4rem .9rem;
  background: var(--gold-500);
  color: var(--bg-0);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.coverage-map {
  height: 180px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  position: relative;
  background:
    radial-gradient(circle at 32% 55%, rgba(217, 177, 106, .35), transparent 40%),
    radial-gradient(circle at 65% 40%, rgba(217, 177, 106, .25), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(240, 220, 170, .15), transparent 40%),
    linear-gradient(135deg, rgba(240,220,170,.05), rgba(0,0,0,.2));
  border: 1px solid var(--line-soft);
}
.coverage-map::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold-400); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(217, 177, 106, .18), 0 0 0 18px rgba(217, 177, 106, .08);
  animation: pulse-pin 2.5s infinite;
}
@keyframes pulse-pin {
  0%,100% { box-shadow: 0 0 0 8px rgba(217, 177, 106, .18), 0 0 0 18px rgba(217, 177, 106, .08); }
  50%     { box-shadow: 0 0 0 12px rgba(217, 177, 106, .12), 0 0 0 24px rgba(217, 177, 106, .04); }
}

.coverage-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem 1.2rem;
  font-size: 14px; color: var(--ivory-300);
}
.coverage-list li { display: flex; align-items: flex-start; gap: .5rem; }
.coverage-list li::before { content: "✦"; color: var(--gold-400); font-size: 11px; }

@media (max-width: 900px) {
  .coverage-inner { grid-template-columns: 1fr; }
}

/* ================ Add-ons ================ */
.addons { background: var(--bg-0); }
.addon-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.addon-chip {
  padding: 1.35rem 1.5rem;
  background: linear-gradient(180deg, rgba(11, 36, 29, .8), rgba(15, 50, 41, .4));
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: .6rem;
  transition: transform var(--e-fast), border-color var(--e-fast), background var(--e-fast);
}
.addon-chip:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
  background: linear-gradient(180deg, rgba(15, 50, 41, .8), rgba(22, 74, 62, .4));
}
.addon-chip .a-num {
  font-family: var(--font-serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--gold-400);
}
.addon-chip h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ivory-100);
}
.addon-chip .a-tag {
  margin-top: auto;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ================ FAQ ================ */
.faq { background: linear-gradient(180deg, var(--bg-1), var(--bg-2)); }
.faq-list { border-top: 1px solid var(--line-soft); }
.faq-item {
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--e-fast);
}
.faq-item:hover { background: rgba(240, 220, 170, 0.02); }
.faq-item[open] { background: rgba(240, 220, 170, 0.04); }
.faq-item summary {
  cursor: pointer;
  padding: 1.8rem 0;
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  color: var(--ivory-100);
  transition: color var(--e-fast);
}
.faq-item summary:hover { color: var(--gold-300); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .q-idx {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-400);
  font-weight: 400;
}
.faq-item .q-toggle {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-500);
  transition: transform var(--e-fast), color var(--e-fast);
}
.faq-item[open] .q-toggle { transform: rotate(45deg); color: var(--gold-300); }
.faq-item .answer {
  padding: 0 0 2rem 84px;
  color: var(--ivory-300);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 65ch;
}
@media (max-width: 720px) {
  .faq-item summary { grid-template-columns: 30px 1fr auto; gap: 1rem; font-size: 1.1rem; }
  .faq-item .answer { padding-left: 42px; }
}

/* ================ Contact ================ */
.contact { background: var(--bg-0); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-copy .h-section { margin: 1.5rem 0 2rem; }
.contact-copy > .lead { margin-bottom: 2.5rem; max-width: 42ch; color: var(--ivory-300); }

.contact-details {
  margin: 2rem 0 2rem;
  border-top: 1px solid var(--line-soft);
}
.contact-details dt {
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 1.2rem 0 .3rem;
}
.contact-details dd {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ivory-100);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-soft);
}
.contact-details dd a { color: var(--ivory-100); }
.contact-details dd a:hover { color: var(--gold-300); }
.contact-details dd small { display: block; font-size: 14px; color: var(--ivory-400); font-family: var(--font-sans); margin-top: 4px; }

.socials { display: flex; gap: .55rem; }
.social {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ivory-200);
  background: rgba(240, 220, 170, .04);
  transition: background var(--e-fast), color var(--e-fast), border-color var(--e-fast), transform var(--e-fast);
}
.social:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--bg-0);
  transform: translateY(-2px);
}

/* Contact form (bright card on dark) */
.contact-form {
  background: linear-gradient(180deg, var(--ivory-100), var(--ivory-200));
  color: var(--bg-0);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 24px;
  box-shadow: var(--shadow-elev);
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(217, 177, 106, .7), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--bg-0);
  margin-bottom: .35rem;
}
.contact-form .form-hint { color: #4a3d1c; font-size: 14px; margin-bottom: 1.5rem; }

.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.1rem; }
.field label {
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase;
  color: #4a3d1c;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: 15.5px;
  padding: .85rem 1rem;
  border: 1px solid rgba(74, 61, 28, .2);
  background: rgba(255, 255, 255, .55);
  color: var(--bg-0);
  border-radius: 10px;
  transition: border-color var(--e-fast), background var(--e-fast), box-shadow var(--e-fast);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(204, 154, 73, .16);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(74, 61, 28, .35); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .row { grid-template-columns: 1fr; } }

.contact-form .btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-1));
  color: var(--gold-300);
  border-radius: 12px;
  border: 1px solid var(--bg-3);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--e-fast), box-shadow var(--e-fast);
}
.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
  color: var(--gold-200);
}
.form-note { font-size: 12.5px; color: #4a3d1c; margin-top: .9rem; line-height: 1.5; }
.form-message { margin-top: 1rem; min-height: 1.2rem; font-size: 14px; }
.form-message.success { color: #1a5c3f; }
.form-message.error   { color: #9a3a2a; }

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }

/* ================ Footer ================ */
.footer {
  background: var(--bg-0);
  color: var(--ivory-300);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 90% 10%, rgba(217, 177, 106, .07), transparent 55%);
  pointer-events: none;
}
.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-soft);
}
.footer-brand .brand-mark { width: 68px; height: 68px; margin-bottom: 1.25rem; }
.footer-brand p { color: var(--ivory-400); font-size: 14.5px; max-width: 32ch; margin: 1.25rem 0 1.5rem; }
.footer-brand .socials .social {
  border-color: var(--line-strong);
  color: var(--ivory-300);
  background: rgba(240, 220, 170, .04);
}
.footer-brand .socials .social:hover {
  background: var(--gold-500); border-color: var(--gold-500); color: var(--bg-0);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; font-size: 14.5px; }
.footer-col a { color: var(--ivory-300); }
.footer-col a:hover { color: var(--gold-300); }

.footer-bottom {
  position: relative;
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 2rem;
  flex-wrap: wrap; gap: 1rem;
  font-size: 12.5px;
  color: var(--ivory-500);
}

.footer-wordmark {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 15vw, 12rem);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -0.03em;
  color: rgba(240, 220, 170, .04);
  margin-top: 3rem;
  text-align: center;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}
.footer-wordmark em {
  font-style: italic;
  color: rgba(217, 177, 106, .10);
  font-weight: 400;
}

@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }

/* ================ OFFERS ================ */
.offers {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.offers-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  padding: clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(217, 177, 106, .18), transparent 55%),
    linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.offers-card::before {
  content: "";
  position: absolute; inset: 0;
  background: url("/images/logo.png") no-repeat right -80px top 50%/380px auto;
  opacity: .05;
  pointer-events: none;
}
.offers-copy { position: relative; z-index: 1; }
.offers-copy .h-section { margin: 1rem 0 1.5rem; }
.offers-copy .lead { color: var(--ivory-200); margin-bottom: 2rem; max-width: 46ch; }
.offers-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.offers-copy .fine { color: var(--ivory-500); }

.offers-badge {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  padding: 2rem;
  background: rgba(5, 15, 12, 0.55);
  border: 1px solid var(--line);
  border-radius: 20px;
  gap: 1rem;
}
.offers-mark {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ivory-100);
  line-height: 1;
}
.offers-mark em { color: var(--gold-400); font-style: italic; font-weight: 400; }
.offers-tag {
  display: inline-block;
  padding: .35rem .8rem;
  background: rgba(217, 177, 106, .12);
  border: 1px solid var(--line);
  color: var(--gold-300);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  border-radius: 999px;
  align-self: flex-start;
}
.offers-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold-500);
  margin: .25rem 0;
}
.offers-detail {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ivory-300);
}

@media (max-width: 900px) {
  .offers-card { grid-template-columns: 1fr; }
}

/* ================ ABOUT ================ */
.about {
  background: var(--bg-0);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about-copy .h-section { margin: 1rem 0 2rem; max-width: 15ch; }
.about-copy .lead {
  color: var(--ivory-200);
  margin-bottom: 1.2rem;
  max-width: 58ch;
}
.about-values {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(11, 36, 29, .8), rgba(15, 50, 41, .4));
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  position: sticky;
  top: 100px;
}
.about-values h3 {
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}
.about-values ul { display: flex; flex-direction: column; gap: 1.15rem; }
.about-values li {
  display: flex; flex-direction: column;
  gap: .3rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line-soft);
}
.about-values li:last-child { border-bottom: 0; padding-bottom: 0; }
.about-values strong {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ivory-100);
  font-size: 1.05rem;
}
.about-values span {
  color: var(--ivory-300);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-values { position: static; }
}

/* ================ LEGAL PAGES ================ */
.legal-page {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
  min-height: 60vh;
}
.legal-head {
  max-width: 780px;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.legal-head .h-section { margin: 1rem 0 1.5rem; }
.legal-head .lead { color: var(--ivory-300); max-width: 58ch; }

.legal-body {
  max-width: 760px;
  font-family: var(--font-sans);
}
.legal-body h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  color: var(--ivory-100);
  margin: 2.5rem 0 .75rem;
}
.legal-body p, .legal-body li {
  color: var(--ivory-300);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: .9rem;
}
.legal-body ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.legal-body ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: .5rem;
}
.legal-body ul li::before {
  content: "✦";
  position: absolute; left: -1rem; top: 0;
  color: var(--gold-500); font-size: 12px;
}
.legal-body strong { color: var(--ivory-100); font-weight: 500; }
.legal-body a { color: var(--gold-300); border-bottom: 1px solid var(--gold-600); padding-bottom: 1px; }
.legal-body a:hover { color: var(--gold-200); border-color: var(--gold-400); }

.legal-back { margin-top: 4rem; }

/* ================ Floating WhatsApp ================ */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, var(--wa), var(--wa-dark));
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 18px 45px -10px rgba(37, 211, 102, .55), 0 0 0 1px rgba(255,255,255,.08) inset;
  transition: transform var(--e-fast), box-shadow var(--e-fast);
}
.fab-wa:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 22px 50px -10px rgba(37, 211, 102, .7), 0 0 0 1px rgba(255,255,255,.12) inset;
}
.fab-wa svg { color: #fff; }
.fab-label { display: inline; }
@media (max-width: 560px) {
  .fab-wa { padding: 1rem; }
  .fab-label { display: none; }
}

/* ================ Reveal ================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--e-slow), transform var(--e-slow); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================ Focus ================ */
:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ================ Responsive nav ================ */
@media (max-width: 1024px) {
  .menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5, 15, 12, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column; gap: 0;
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height var(--e-med), padding var(--e-med);
  }
  .menu.open { max-height: 70vh; padding: 1rem 0; }
  .menu li { padding: 0 var(--gutter); }
  .menu a { display: block; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
  .menu a::after { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .brand-sub { display: none; }
  .brand-mark { width: 54px; height: 54px; }
  .brand-title { font-size: 1.35rem; }
  .hero { min-height: 88vh; padding-top: 4rem; }
  .btn { padding: .9rem 1.3rem; font-size: 12px; }
  .btn-wa-mini span { display: none; }
  .btn-wa-mini { width: 42px; padding: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ================ Print ================ */
@media print {
  .site-header, .marquee-top, .fab-wa { display: none !important; }
  body { background: #fff; color: #000; }
}
