
/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --bg:         #D9E8C4;
  --bg-2:       #CFE0B6;
  --surface:    #E4EFD4;
  --ivory:      #1E2A16;
  --ivory-2:    #3D4A32;
  --ivory-3:    #6B7A5A;
  --gold:       #8A6D2F;
  --gold-l:     #A8842F;
  --green:      #2E3D22;
  --line:       rgba(30,42,22,0.14);
  --line-s:     rgba(30,42,22,0.08);
  --ease:       cubic-bezier(.16,1,.3,1);
  --ease-in:    cubic-bezier(.7,0,.84,0);
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: -200%;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: multiply;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100%{ transform:translate(0,0); }
  10%{ transform:translate(-5%,-10%); }
  20%{ transform:translate(-15%,5%); }
  30%{ transform:translate(7%,-25%); }
  40%{ transform:translate(-5%,25%); }
  50%{ transform:translate(-15%,10%); }
  60%{ transform:translate(15%,0%); }
  70%{ transform:translate(0%,15%); }
  80%{ transform:translate(3%,35%); }
  90%{ transform:translate(-10%,10%); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(30,42,22,0.4);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .3s, opacity .3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--gold);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: min(1300px, 92%); margin: 0 auto; }
.container-wide { width: min(1500px, 96%); margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 38px;
  border: 1px solid transparent;
  cursor: none;
  transition: background .35s, border-color .35s, color .35s, transform .35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,42,22,0.06);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gold);
  color: #F5F0E1;
}
.btn-primary:hover {
  background: var(--gold-l);
}
.btn-outline {
  border-color: rgba(30,42,22,0.25);
  color: var(--ivory);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.text-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s, gap .3s;
  cursor: none;
}
.text-link:hover { color: var(--ivory); gap: 16px; }
.text-link .arrow { font-size: 0.8rem; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-s);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--ivory-3);
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  width: min(1300px,92%);
  margin: 0 auto;
}
.topbar a { transition: color .2s; cursor: none; }
.topbar a:hover { color: var(--ivory-2); }
.topbar-right { display: flex; gap: 28px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(217,232,196,0.85);
  backdrop-filter: blur(16px);
  border-color: var(--line-s);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  width: min(1300px,92%);
  margin: 0 auto;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: none;
  display: flex;
  align-items: baseline;
  gap: 0;
}
.logo em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 44px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ivory-2);
}
.nav-links a {
  position: relative;
  padding: 3px 0;
  cursor: none;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 14px; align-items: center; }
.menu-toggle { display: none; background: none; border: none; color: var(--ivory); font-size: 1.5rem; cursor: none; }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(217,232,196,0.98);
  z-index: 500;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  gap: 30px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--ivory);
  cursor: none;
  transition: color .3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 28px; right: 32px;
  background: none; border: none;
  color: var(--ivory-2);
  font-size: 1.4rem;
  cursor: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  will-change: transform;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* gradient fade from left */
.hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(217,232,196,0.55) 40%, rgba(217,232,196,0.08) 100%);
  z-index: 1;
}
/* gradient fade from bottom */
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--bg) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  margin-bottom: 30px;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(4.6rem, 8.5vw, 9.5rem);
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 640px;
}
.hero h1 span { display: block; overflow: hidden; }
.hero h1 .word-inner { display: block; }
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ivory-2);
  max-width: 400px;
  margin-bottom: 42px;
  font-weight: 300;
}
.hero-ctas { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  width: min(1300px,92%);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-3);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll-label::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
}
.hero-tag {
  text-align: right;
}
.hero-tag p {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--ivory-3);
  line-height: 1.7;
}
.hero-tag strong {
  color: var(--gold-l);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 3px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: run 36s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ivory-3);
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee-track span::after {
  content: '\2022';
  font-size: 0.5rem;
  color: var(--gold);
  font-style: normal;
}
@keyframes run { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  padding: 50px 50px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-item:first-child { border-left: 1px solid var(--line); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat-num em { font-style: normal; color: var(--gold); }
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-3);
  line-height: 1.7;
}

/* ============================================================
   HORIZONTAL SCROLL COLLECTION
   ============================================================ */
.h-section {
  background: var(--bg);
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.h-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.h-left {
  width: 420px;
  min-width: 420px;
  padding: 0 0 0 max(40px, calc((100vw - 1300px) / 2 + 40px));
  flex: none;
  z-index: 2;
}
.h-left .eyebrow { margin-bottom: 30px; }
.h-left h2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.0;
  margin-bottom: 24px;
  max-width: 320px;
}
.h-left h2 em { font-style: italic; color: var(--gold); display: block; }
.h-left p {
  color: var(--ivory-2);
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 36px;
  font-weight: 300;
}
.h-right {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.h-track {
  display: flex;
  gap: 22px;
  padding: 0 80px 0 48px;
  will-change: transform;
  flex: none;
}

/* Product card in horizontal scroll */
.p-card {
  width: 320px;
  flex: none;
  display: block;
  cursor: none;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .4s;
}
.p-card:hover { border-color: rgba(138,109,47,0.5); }
.p-card-img {
  height: 290px;
  overflow: hidden;
  position: relative;
}
.p-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  display: block;
}
.p-card:hover .p-card-img img { transform: scale(1.05); }
.p-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(30,42,22,0.35) 100%);
}
.p-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-l);
  border: 1px solid rgba(138,109,47,0.4);
  padding: 5px 9px;
  background: rgba(228,239,212,0.72);
}
.p-card-body { padding: 22px 24px 28px; }
.p-card-cat {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-3);
  display: block;
  margin-bottom: 8px;
}
.p-card-body h3 {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 16px;
}
.p-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.p-card-price {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--gold-l);
}
.p-card-price small {
  display: block;
  font-size: 0.6rem;
  color: var(--ivory-3);
  margin-top: 2px;
}
.p-card-arrow {
  color: var(--ivory-3);
  font-size: 0.85rem;
  transition: transform .3s, color .3s;
}
.p-card:hover .p-card-arrow { transform: translate(3px,-3px); color: var(--gold); }

/* ============================================================
   INTERLUDE — full-bleed editorial photo
   ============================================================ */
.interlude {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interlude img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.interlude::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,42,22,0.28);
}
.interlude-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 40px;
}
.interlude-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.25;
  color: #F3F6EC;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.interlude-text cite {
  font-style: normal;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0dca2;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 140px 0; }
.process-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.process-section .section-head h2 {
  font-size: clamp(2.4rem,3.5vw,3.8rem);
  max-width: 500px;
  line-height: 1.05;
}
.process-section .section-head p {
  color: var(--ivory-2);
  max-width: 340px;
  font-size: 0.93rem;
  line-height: 1.75;
  font-weight: 300;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-item {
  padding: 52px 44px 52px 0;
  border-right: 1px solid var(--line);
  padding-right: 44px;
}
.process-item:last-child { border-right: none; padding-right: 0; }
.process-item:not(:first-child) { padding-left: 44px; }
.process-step-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}
.process-item h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.15;
}
.process-item p {
  color: var(--ivory-2);
  font-size: 0.88rem;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { padding: 0 0 140px; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.why-img {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}
.why-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.why-img:hover img { transform: scale(1.03); }
.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,42,22,0.05), rgba(228,239,212,0.72));
  z-index: 1;
}
.why-badge {
  position: absolute;
  bottom: 36px; left: 36px;
  z-index: 2;
  background: var(--gold);
  color: #F5F0E1;
  padding: 26px;
  font-family: 'Cormorant Garamond', serif;
}
.why-badge .num {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  display: block;
}
.why-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  display: block;
  margin-top: 6px;
  opacity: 0.85;
}
.why-content {
  padding: 70px 70px 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-content .eyebrow { margin-bottom: 28px; }
.why-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 50px;
  max-width: 380px;
}
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.why-item:last-child { border-bottom: 1px solid var(--line); }
.why-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 4px;
  flex: none;
  width: 24px;
}
.why-item h4 { font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; }
.why-item p { color: var(--ivory-2); font-size: 0.86rem; line-height: 1.7; font-weight: 300; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  text-align: center;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.28;
  color: var(--ivory);
  max-width: 900px;
  margin: 0 auto 36px;
  letter-spacing: -0.01em;
}
.testimonial-cite {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.t-nav button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: none;
  transition: background .3s, transform .3s;
}
.t-nav button.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243,246,236,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243,246,236,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-text .eyebrow { margin-bottom: 26px; color: rgba(243,246,236,0.8); }
.cta-text .eyebrow::before { background: rgba(243,246,236,0.8); }
.cta-text h2 {
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  line-height: 1.0;
  max-width: 580px;
  color: #F3F6EC;
}
.cta-text h2 em { font-style: italic; color: var(--gold-l); }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex: none;
  min-width: 220px;
}
.btn-wa {
  background: #25D366;
  color: #0a1a0f;
  font-size: 0.82rem;
}
.btn-wa:hover { background: #2ee072; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 90px 0 34px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 18px;
  cursor: none;
}
.footer-logo em { font-style: italic; color: var(--gold); font-weight: 300; }
.footer-brand p {
  color: var(--ivory-3);
  font-size: 0.86rem;
  line-height: 1.75;
  max-width: 260px;
  font-weight: 300;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory-3);
  font-size: 0.8rem;
  cursor: none;
  transition: border-color .3s, color .3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: var(--ivory-3);
  font-size: 0.86rem;
  cursor: none;
  transition: color .25s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--ivory-3);
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 300;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #0a1a0f;
  box-shadow: 0 10px 30px rgba(30,42,22,0.18);
  cursor: none;
  transition: transform .35s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid #25D366;
  opacity: 0.35;
  animation: wa-ring 2.4s ease-out infinite;
}
@keyframes wa-ring {
  0%{transform:scale(1);opacity:0.35;}
  100%{transform:scale(1.5);opacity:0;}
}

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stats-grid .stat-item:nth-child(3) { border-top: 1px solid var(--line); }
  .stats-grid .stat-item:nth-child(4) { border-top: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-top: 1px solid var(--line); }
  .process-item:nth-child(4) { border-top: 1px solid var(--line); }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: row; }
  .h-left { width: 300px; min-width: 300px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .hero-img { width: 100%; }
  .hero-img::before {
    background: linear-gradient(90deg, rgba(217,232,196,0.95) 0%, rgba(217,232,196,0.7) 55%, rgba(217,232,196,0.4) 100%);
  }
  .hero h1 { font-size: clamp(3.2rem, 12vw, 5rem); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 36px 26px; }
  .stat-num { font-size: 3.2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-item { border-right: none; border-top: 1px solid var(--line); padding: 36px 0; }
  .process-item:first-child { border-top: none; }
  .process-item:not(:first-child) { padding-left: 0; }
  .why-content { padding: 50px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .topbar-right { display: none; }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: auto; }
  .h-section { height: auto; padding: 90px 0; overflow: visible; }
  .h-inner { flex-direction: column; gap: 50px; align-items: flex-start; }
  .h-left { width: 100%; min-width: 0; padding: 0 4%; }
  .h-right { overflow-x: auto; width: 100%; }
  .h-track { padding: 0 4%; }
  .p-card { width: 260px; }
  .testimonial-quote { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .interlude { height: 60vh; }
  .interlude-text blockquote { font-size: clamp(1.5rem, 6vw, 2.4rem); }
  .cta-band { padding: 90px 0; }
  .cta-actions {
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-actions .text-link { align-self: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, body::after { animation: none !important; transition: none !important; }
}
