/* ==========================================================================
   CACAOUS — HOME LUXURY THEME
   Editorial · Dark Earth Tones · Gold Accents
   Scoped to body.home-luxury
   ========================================================================== */

.home-luxury {
  /* Palette */
  --bg: #0D0B0A;
  --bg-soft: #141110;
  --bg-lift: #1A1614;
  --ink: #F8F3ED;
  --ink-dim: rgba(248, 243, 237, 0.62);
  --ink-faint: rgba(248, 243, 237, 0.32);
  --gold: #D4AF37;
  --gold-bright: #E8C25F;
  --gold-deep: #B89325;
  --border-faint: rgba(248, 243, 237, 0.08);
  --border-soft: rgba(248, 243, 237, 0.15);
  --border-gold: rgba(212, 175, 55, 0.25);

  background: var(--bg);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.8;
}

.home-luxury h1, .home-luxury h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.home-luxury p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-dim);
  max-width: 68ch;
}
.home-luxury a { color: inherit; }

/* ---------- Override base header for dark ---------- */
.home-luxury .site-header {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
}
.home-luxury .site-header.scrolled {
  background: rgba(13, 11, 10, 0.8);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom-color: var(--border-faint);
}
.home-luxury .brand img {
  opacity: 0.92;
  height: 18px;
  width: auto;
  max-width: none;
}
.home-luxury .nav .nav-links a { color: var(--ink); }
.home-luxury .nav-links a::after { background: var(--gold); }
.home-luxury .nav-toggle span { background: var(--ink); }
.home-luxury .lang-switch a { color: var(--ink); opacity: .4; }
.home-luxury .lang-switch a:hover,
.home-luxury .lang-switch .lang-active { opacity: 1; }
.home-luxury .lang-divider { background: rgba(255, 255, 255, 0.2); }

/* Push body down since header is fixed */
.home-luxury main, .home-luxury > section:first-of-type { padding-top: 0; }

/* ---------- Custom cursor ---------- */
.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(-200px, -200px, 0) scale(0);
  opacity: 0;
  transition: opacity .3s var(--ease), scale .3s var(--ease);
  will-change: transform;
}
.cursor-follower.is-active {
  opacity: 1;
  scale: 1;
}
.cursor-follower .cursor-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
@media (hover: none) { .cursor-follower { display: none; } }

/* ---------- Shared eyebrows & typography ---------- */
.home-luxury .gold-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 28px;
}

.home-luxury .editorial-xl {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.home-luxury .editorial-xl em,
.home-luxury .editorial-lg em,
.home-luxury .hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.home-luxury .editorial-lg {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.home-luxury .lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 56ch;
  margin-top: 40px;
}

/* ---------- Buttons ---------- */
.home-luxury .btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all .4s var(--ease);
  line-height: 1;
}
.home-luxury .btn .arrow { transition: transform .3s var(--ease); }
.home-luxury .btn:hover .arrow { transform: translateX(5px); }

.home-luxury .btn-gold {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 40%, var(--gold-bright) 70%, var(--gold) 100%);
  color: #0D0B0A;
  border-color: transparent;
  position: relative;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}
.home-luxury .btn-gold:hover {
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

.home-luxury .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-soft);
}
.home-luxury .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.home-luxury .btn-ivory {
  background: rgba(248, 243, 237, 0.12);
  color: var(--ink);
  border: 1px solid rgba(248, 243, 237, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.home-luxury .btn-ivory:hover {
  background: rgba(248, 243, 237, 0.22);
  border-color: var(--ink);
  box-shadow: 0 0 36px rgba(248, 243, 237, 0.15), 0 0 80px rgba(248, 243, 237, 0.08);
  transform: translateY(-2px);
}

.home-luxury .gold-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 0;
  transition: border-color .3s, color .3s;
}
.home-luxury .gold-link:hover { color: var(--gold-bright); border-bottom-color: var(--gold); }
.home-luxury .gold-link .arrow { transition: transform .3s var(--ease); display: inline-block; }
.home-luxury .gold-link:hover .arrow { transform: translateX(5px); }

.home-luxury .ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 14px 0;
  transition: color .3s;
}
.home-luxury .ghost-link:hover { color: var(--gold); }
.home-luxury .ghost-link .arrow { transition: transform .3s var(--ease); display: inline-block; }
.home-luxury .ghost-link:hover .arrow { transform: translateX(5px); }

/* ==========================================================================
   HERO
   ========================================================================== */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.home-hero-bg .hero-bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: brightness(0.55) saturate(1.05);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.home-hero-bg .hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,11,10,0.4) 0%, rgba(13,11,10,0.1) 35%, rgba(13,11,10,0.7) 90%, var(--bg) 100%),
    radial-gradient(ellipse at top right, transparent, rgba(13,11,10,0.6));
}
.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.home-hero-content .gold-eyebrow { margin-bottom: 48px; }

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3.6rem, 11vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 40px;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  display: inline-block;
  padding: 0 0.05em;
}

/* ---------- Kinetic hero keyword ---------- */
.hero-kinetic {
  min-width: 5ch;
  text-align: left;
  display: inline-block;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-kinetic.is-out {
  opacity: 0;
  transform: translateY(-14px);
}
@media (prefers-reduced-motion: reduce) {
  .hero-kinetic { transition: none; }
}
.hero-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 0 48px;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  background: none;
  color: var(--gold);
  animation: scrollPulse 3s ease-in-out infinite;
}
.hero-scroll-iso {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   PHILOSOPHY
   ========================================================================== */
.home-philosophy {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-philosophy .editorial-xl { margin-top: 16px; }
.home-philosophy .lede { margin-top: 56px; font-size: 1.4rem; max-width: 52ch; }

/* ==========================================================================
   ABOUT — asymmetric
   ========================================================================== */
.home-about {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-soft);
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.ha-text .gold-eyebrow { margin-bottom: 24px; }
.ha-text .editorial-lg { margin: 0 0 36px; }
.ha-text p { font-size: 1.2rem; margin-bottom: 36px; max-width: 46ch; }

.ha-images {
  position: relative;
  aspect-ratio: 1 / 1.1;
  width: 100%;
}
.ha-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transition: transform .7s var(--ease);
  margin: 0;
}
.ha-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}
.ha-img-1 {
  top: 0;
  left: 0;
  width: 58%;
  aspect-ratio: 3 / 4;
  z-index: 2;
}
.ha-img-2 {
  bottom: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 4 / 5;
  z-index: 1;
}
.ha-img:hover { transform: translateY(-6px); }
.ha-img:hover img { transform: scale(1.04); }
[data-cursor-explore] { cursor: none; }
@media (hover: none) { [data-cursor-explore] { cursor: pointer; } }

/* ==========================================================================
   ORIGINS — glassmorphism cards
   ========================================================================== */
.home-origins {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.origins-intro {
  margin-bottom: 72px;
  max-width: 760px;
}
.origins-intro .editorial-lg { margin-top: 16px; }

.origins-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.og-card {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #000;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.og-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.12), inset 0 0 30px rgba(212, 175, 55, 0.05);
}
.og-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .6s;
  display: block;
  filter: brightness(0.72) saturate(1.1);
}
.og-card:hover > img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(1.1);
}
.og-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 11, 10, 0.85) 0%, rgba(13, 11, 10, 0.1) 55%, transparent 90%);
  z-index: 1;
}
.og-core {
  position: absolute;
  left: clamp(28px, 3.5vw, 46px);
  right: clamp(28px, 3.5vw, 46px);
  bottom: clamp(32px, 3.5vw, 44px);
  z-index: 2;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.og-kind {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.og-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1;
  margin: 0;
}
.og-name em { font-style: italic; color: var(--ink); }

.og-notes {
  position: absolute;
  inset: 0;
  padding: clamp(28px, 4vw, 50px);
  background: rgba(13, 11, 10, 0.38);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--border-gold);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}
.og-card:hover .og-notes { opacity: 1; transform: translateY(0); }
.og-card:hover .og-core { opacity: 0; transform: translateY(10px); }
.og-notes .gold-eyebrow { margin-bottom: 14px; }
.og-notes h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  margin: 0 0 20px;
}
.og-notes h3 em { color: var(--gold); font-style: italic; }
.og-notes p {
  color: var(--ink-dim);
  font-size: 1.08rem;
  line-height: 1.5;
  max-width: 42ch;
  margin: 0;
}
.og-link {
  margin-top: 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.origins-more {
  margin-top: 48px;
  text-align: center;
}

/* ==========================================================================
   TRACEABILITY — farm to port
   ========================================================================== */
.home-trace {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--bg-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.trace-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 90px;
}
.trace-head .editorial-lg { margin: 16px 0 32px; }
.trace-head p { margin: 0 auto; color: var(--ink-dim); }

.trace-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trace-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--border-gold) 15%,
    var(--border-gold) 85%,
    transparent 100%);
  z-index: 0;
}
.trace-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.ts-icon {
  width: 88px;
  height: 88px;
  background: var(--bg-soft);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.trace-step:hover .ts-icon {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}
.ts-icon svg { width: 32px; height: 32px; }
.ts-num {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 6px;
}
.trace-step h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 12px;
}
.trace-step p {
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 22ch;
  margin: 0 auto;
}

/* ==========================================================================
   SPLIT — cacao / coffee
   ========================================================================== */
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 60vh, 600px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.split-pane {
  padding: clamp(50px, 7vw, 100px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: background .4s var(--ease);
}
.split-pane[data-type="cacao"] { background: var(--bg); border-right: 1px solid rgba(255, 255, 255, 0.1); }
.split-pane[data-type="coffee"] { background: var(--bg-soft); }
.split-pane:hover {
  background: var(--bg-lift);
  box-shadow: inset 0 0 60px rgba(212, 175, 55, 0.04);
}
.split-pane h2 { margin: 0; }
.split-pane p { max-width: 44ch; font-size: 1.2rem; }
.split-pane .gold-link { align-self: flex-start; margin-top: 10px; }

/* ==========================================================================
   QUOTE
   ========================================================================== */
.home-quote {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto 40px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.home-quote blockquote::before,
.home-quote blockquote::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 36px auto;
}
.home-quote cite {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================================
   CTA — conversion section
   ========================================================================== */
.home-cta {
  padding: clamp(100px, 14vw, 160px) 0;
  background: var(--bg);
  border-top: 1px solid var(--border-faint);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.home-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.home-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.home-cta .editorial-xl { margin: 20px 0 36px; }
.home-cta-lede {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink-dim);
  max-width: 52ch;
  margin: 0 auto 48px;
  line-height: 1.55;
}
.home-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Shine button ---------- */
.btn-shine {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      115deg,
      transparent 0%,
      rgba(255, 250, 240, 0) 30%,
      rgba(255, 250, 240, 0.55) 50%,
      rgba(255, 250, 240, 0) 70%,
      transparent 100%
    );
    animation: shineSweep 4.5s ease-in-out infinite;
    animation-delay: 2s;
    pointer-events: none;
    z-index: 1;
  }
  @keyframes shineSweep {
    0%, 70%, 100% { transform: translateX(0); }
    85% { transform: translateX(300%); }
  }

  .btn-shine.is-breathing {
    animation: buttonBreathe 3s ease-in-out infinite;
  }
  @keyframes buttonBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
  }
}

.btn-shine:hover {
  animation-play-state: paused;
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.55),
              0 0 100px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px) scale(1);
}
.btn-shine:hover::before {
  animation-play-state: paused;
}

/* ==========================================================================
   FOOTER — 4 columns minimal
   ========================================================================== */
.home-footer {
  background: #0A0908;
  color: var(--ink-dim);
  padding: clamp(80px, 10vw, 120px) 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.home-footer .hf-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  padding-bottom: 70px;
}
.hf-brand .hf-logo {
  height: 32px;
  width: auto;
  opacity: 0.92;
  margin-bottom: 26px;
}
.hf-brand p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-faint);
  max-width: 34ch;
  margin: 0;
}
.hf-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
}
.hf-col ul { list-style: none; padding: 0; margin: 0; }
.hf-col li {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--ink-faint);
  font-weight: 300;
}
.hf-col a { color: var(--ink-faint); transition: color .3s; }
.hf-col a:hover { color: var(--gold); }

.hf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.hf-socials { display: flex; gap: 28px; }
.hf-socials a { color: var(--ink-faint); transition: color .3s; }
.hf-socials a:hover { color: var(--gold); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .home-luxury { font-size: 1.1rem; }
  .home-about-grid { grid-template-columns: 1fr; gap: 60px; }
  .ha-images { aspect-ratio: 3 / 4; max-width: 500px; margin: 0 auto; }
  .origins-cards { grid-template-columns: 1fr; }
  .trace-steps { grid-template-columns: 1fr; gap: 44px; }
  .trace-steps::before { display: none; }
  .home-split { grid-template-columns: 1fr; min-height: auto; }
  .split-pane[data-type="cacao"] { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .home-footer .hf-top { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 50px; }
  .hf-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .home-footer .hf-top { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .home-cta-buttons { flex-direction: column; }
  .home-cta-buttons .btn { width: 100%; justify-content: center; }
}
