/* ═══════════════════════════════════════════════════════════════
   Rumah Ruthob — editorial luxury theme for fresh wet dates
   Palette: deep burgundy/wine + warm cream
   Fonts: Cormorant (display serif) + Montserrat (sans)
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --burg:   #5C1A2A;        /* deep burgundy/wine */
  --burg-d: #3E0F1C;        /* darkest wine */
  --burg-m: #7A2A3D;        /* mid burgundy */
  --burg-l: #9D4A5E;        /* lighter burgundy */
  --rose:   #C4768A;        /* dusty rose accent */
  --cream:  #FAF6EE;        /* warm cream bg */
  --cream-2:#F3EAD8;        /* slightly deeper cream */
  --cream-3:#EBE0C7;        /* card bg warm */
  --ink:    #1A1208;        /* near-black warm ink */
  --ink-2:  #3D2E1E;        /* dark brown text */
  --muted:  #7A6550;        /* warm grey-brown */
  --line:   #DDD0B6;        /* border/divider */
  --gold:   #B8924A;        /* antique gold */
  --gold-l: #D4AD6D;        /* lighter gold */
  --wa:     #1faf54;
  --wa-d:   #178a43;
  --card:   #fff;
  --shadow: 0 6px 24px rgba(60,20,30,.09);
  --shadow-lg: 0 18px 52px rgba(60,20,30,.16);
  --radius: 4px;            /* sharp corners — editorial feel */
  --radius-lg: 8px;

  --serif: 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans:  'Montserrat', system-ui, -apple-system, sans-serif;
}

/* ── Reset / base ── */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
html, body { max-width: 100%; overflow-x: clip }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; display: block }
a { color: var(--burg); text-decoration: none }

/* Headings — Cormorant, generous tracking */
h1, h2, h3, h4 {
  font-family: var(--serif);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 .4em;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem) }
h2 { font-size: clamp(2rem, 4vw, 3.2rem) }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem) }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 700; letter-spacing: .06em; text-transform: uppercase }
p  { margin: 0 0 1em }

.wrap      { max-width: 1200px; margin: 0 auto; padding: 0 24px }
.muted     { color: var(--muted) }
.center    { text-align: center }
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--burg-l);
  margin: 0 0 .8em;
}
.lead { font-size: 1.15rem; color: var(--ink-2) }
.section    { padding: 90px 0 }
.section-sm { padding: 56px 0 }

.skip-link { position: absolute; left: -999px }
.skip-link:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 200 }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 2px;
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1.5px solid transparent; cursor: pointer;
  transition: .18s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none }
.btn-lg  { padding: 15px 36px; font-size: .9rem }
.btn-sm  { padding: 9px 18px; font-size: .78rem }
.btn-wa  { background: var(--wa); color: #fff; box-shadow: 0 6px 18px rgba(31,175,84,.3) }
.btn-wa:hover { background: var(--wa-d); color: #fff }
.btn-wine { background: var(--burg); color: #fff }
.btn-wine:hover { background: var(--burg-d); color: #fff }
.btn-dark { background: var(--ink); color: #fff }
.btn-dark:hover { background: #000; color: #fff }
.btn-outline {
  background: transparent;
  border-color: var(--burg);
  color: var(--burg);
}
.btn-outline:hover { background: var(--burg); color: #fff }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--burg); color: var(--burg) }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-l), var(--gold));
  color: #2a1800;
  box-shadow: 0 6px 20px rgba(184,146,74,.35);
}
.btn-gold:hover { filter: brightness(1.08); color: #2a1800 }
.wa-ic { font-size: 1em }

/* ══════════════════════════════════════════════
   UTILITY BAR — slim strip above header
   ══════════════════════════════════════════════ */
.util-bar {
  background: var(--burg-d);
  color: rgba(255,255,255,.75);
  font-size: .73rem;
  font-family: var(--sans);
  letter-spacing: .06em;
  font-weight: 500;
}
.util-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 36px;
  justify-content: space-between;
}
.util-left { display: flex; align-items: center; gap: 22px }
.util-left span { display: flex; align-items: center; gap: 6px }
.util-left a { color: rgba(255,255,255,.85); }
.util-left a:hover { color: #fff }
.util-dot { opacity: .35 }
.util-right { display: flex; align-items: center; gap: 12px }
.lang-toggle {
  color: rgba(255,255,255,.9);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 3px;
  padding: 3px 9px;
  transition: .15s;
}
.lang-toggle:hover { border-color: rgba(255,255,255,.7); color: #fff; text-decoration: none }

/* ══════════════════════════════════════════════
   HEADER — centered nav with brand below logo
   ══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250,246,238,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 24px;
  position: relative;
  gap: 10px;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { text-decoration: none }
.brand-logo { width: 40px; height: auto; display: block }
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--burg-d);
}
.brand-tag {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

/* Nav — horizontal row centered below brand */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  width: 100%;
  justify-content: center;
}
.main-nav a {
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 18px;
  position: relative;
  transition: .15s;
  border-right: 1px solid var(--line);
}
.main-nav a:last-child { border-right: none }
.main-nav a:hover { color: var(--burg); text-decoration: none }
.main-nav a.active { color: var(--burg) }

/* header WA btn — positioned absolute right */
.header-wa {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-size: 1.25rem;
  line-height: 1;
  padding: 7px 12px;
  cursor: pointer;
  color: var(--ink);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* ══════════════════════════════════════════════
   HERO — full-width editorial with offset image
   ══════════════════════════════════════════════ */
.hero {
  background: var(--burg-d);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* large decorative bg text */
.hero::before {
  content: 'RUTHOB';
  position: absolute;
  bottom: -8px;
  right: -10px;
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 700;
  color: rgba(255,255,255,.04);
  letter-spacing: -.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .38;
  filter: saturate(.7);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(62,15,28,.88) 0%,
    rgba(92,26,42,.75) 45%,
    rgba(62,15,28,.55) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: end;
  padding: 80px 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-copy { padding-bottom: 12px }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--rose);
}
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 1.0;
  margin-bottom: .3em;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero .hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap }

/* Hero right — stacked image card with details floated */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: end;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(30,5,15,.85) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════
   FRESHNESS BAND — dark wine with pull-quote
   ══════════════════════════════════════════════ */
.freshband {
  background: var(--burg);
  color: rgba(255,255,255,.9);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.freshband::before {
  content: '"';
  position: absolute;
  left: -10px;
  top: -30px;
  font-family: var(--serif);
  font-size: 28rem;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.freshband-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.freshband blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.freshband blockquote p {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.25;
  color: #fff;
  font-style: italic;
  margin-bottom: .5em;
}
.freshband cite {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.freshband cite::before { content: '—' }

.freshband-facts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.freshband-fact {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.freshband-fact:last-child { border-bottom: none; padding-bottom: 0 }
.fact-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
.fact-text h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.fact-text p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ══════════════════════════════════════════════
   PRODUCTS — editorial alternating list
   ══════════════════════════════════════════════ */
.section-head {
  max-width: 700px;
  margin-bottom: 60px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center }

/* Editorial alternating list on home/products detail view */
.products-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pcard-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  min-height: 340px;
  overflow: hidden;
  transition: .2s;
  color: inherit;
  text-decoration: none;
}
.pcard-editorial:first-child { border-top: 1px solid var(--line) }
.pcard-editorial:nth-child(even) { direction: rtl }
.pcard-editorial:nth-child(even) > * { direction: ltr }
.pcard-editorial:hover { background: var(--cream-2); text-decoration: none }
.pcard-editorial:hover .pe-img img { transform: scale(1.04) }

.pe-img {
  overflow: hidden;
  background: var(--cream-3);
}
.pe-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.pe-body {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.pe-body .pcard-origin {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--burg-l);
}
.pe-body h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.1;
  color: var(--burg-d);
}
.pe-body .pcard-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}
.pe-body .price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--burg);
  font-weight: 700;
}
.pe-body .price small {
  font-family: var(--sans);
  font-size: .55em;
  color: var(--muted);
  font-weight: 500;
}
.pe-body .pcard-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s;
}
.pcard-editorial:hover .pcard-link { gap: 10px }
.pcard-tag {
  display: inline-block;
  background: var(--burg);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  width: fit-content;
}

/* Grid-style pcard (used on products listing page, guides, home guides) */
.pcard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 0; border: 1px solid var(--line) }
.pcard {
  background: var(--card);
  display: flex;
  flex-direction: column;
  color: inherit;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: .18s;
  text-decoration: none;
}
.pcard:hover { background: var(--cream-2); text-decoration: none }
.pcard:hover .pcard-media img { transform: scale(1.05) }
.pcard-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-3);
  position: relative;
}
.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.pcard-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.pcard-body h3 { font-size: 1.25rem; margin: 0; color: var(--ink) }
.pcard-origin { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--burg-l) }
.pcard-desc   { font-size: .9rem; color: var(--muted); flex: 1; line-height: 1.65 }
.pcard-foot   { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line) }
.price        { font-family: var(--serif); color: var(--burg); font-weight: 700; font-size: 1.3rem }
.price small  { font-family: var(--sans); font-weight: 500; color: var(--muted); font-size: .65em }
.pcard-link   { font-size: .78rem; font-weight: 700; color: var(--burg); letter-spacing: .08em; text-transform: uppercase }

/* ══════════════════════════════════════════════
   GUIDES — numbered magazine list
   ══════════════════════════════════════════════ */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.guide-item {
  display: grid;
  grid-template-columns: 80px 1fr 260px;
  gap: 0;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
  min-height: 180px;
  color: inherit;
  text-decoration: none;
  transition: background .15s;
}
.guide-item:first-child { border-top: 1px solid var(--line) }
.guide-item:hover { background: var(--cream-2); text-decoration: none }
.guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--line);
  border-right: 1px solid var(--line);
  transition: color .15s;
}
.guide-item:hover .guide-num { color: var(--burg-l) }
.guide-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.guide-body h3 { font-size: 1.4rem; color: var(--ink); margin: 0 }
.guide-body p  { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.6 }
.guide-body .pcard-link {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burg);
  margin-top: 4px;
}
.guide-thumb {
  overflow: hidden;
  background: var(--cream-3);
  border-left: 1px solid var(--line);
}
.guide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.guide-item:hover .guide-thumb img { transform: scale(1.04) }

/* ══════════════════════════════════════════════
   WHY/USP — horizontal info band
   ══════════════════════════════════════════════ */
.usp-band {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.usp-item {
  padding: 42px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usp-item:last-child { border-right: none }
.usp-icon {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--burg-l);
  line-height: 1;
  height: 44px;
  display: flex;
  align-items: center;
}
.usp-item h3 { font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0; color: var(--ink) }
.usp-item p  { font-size: .88rem; color: var(--muted); margin: 0; line-height: 1.65 }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.tst-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.tst {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--card);
}
.tst:last-child { border-right: none }
.tst .stars { color: var(--gold); letter-spacing: 3px; font-size: .95rem }
.tst p { font-size: .95rem; color: var(--ink-2); font-style: italic; flex: 1; margin: 0 }
.tst .who { display: flex; align-items: center; gap: 12px }
.tst .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--burg-l), var(--burg-d));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex: none;
}
.tst .who b { display: block; font-size: .88rem; color: var(--ink) }
.tst .who span { font-size: .78rem; color: var(--muted) }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq { max-width: 760px; margin: 0 auto }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq details:first-child { border-top: 1px solid var(--line) }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
}
.faq summary::-webkit-details-marker { display: none }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--burg); font-weight: 300 }
.faq details[open] summary::after { content: "–" }
.faq details p { margin: 0 0 18px; color: var(--muted); font-size: .93rem }

/* ══════════════════════════════════════════════
   HOW-TO STEPS — horizontal timeline
   ══════════════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  counter-reset: s;
}
.step-item {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  position: relative;
  counter-increment: s;
}
.step-item:last-child { border-right: none }
.step-item::before {
  content: "0" counter(s);
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-3);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.step-item h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; letter-spacing: 0; text-transform: none; margin: 0 0 8px }
.step-item p  { font-size: .9rem; color: var(--muted); margin: 0 }

/* ══════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════ */
.cta-band {
  background: var(--burg-d);
  color: rgba(255,255,255,.9);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  pointer-events: none;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-inner h2 { color: #fff; margin-bottom: .2em }
.cta-inner p  { color: rgba(255,255,255,.7); margin: 0; font-size: 1rem }
.cta-actions  { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: flex-end }

/* ══════════════════════════════════════════════
   PAGE HEADER (interior pages)
   ══════════════════════════════════════════════ */
.page-banner {
  background: var(--burg-d);
  color: rgba(255,255,255,.9);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-banner .eyebrow { color: var(--rose) }
.page-banner h1 { color: #fff; font-size: clamp(2.2rem, 4vw, 3.6rem) }
.page-banner .lead { color: rgba(255,255,255,.7) }

/* Breadcrumb */
.crumbs { padding: 18px 0; color: var(--muted); font-size: .82rem; font-family: var(--sans) }
.crumbs a { color: var(--muted) }
.crumbs a:hover { color: var(--burg) }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL
   ══════════════════════════════════════════════ */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pd-media {
  background: var(--cream-3);
  overflow: hidden;
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; display: block }
.pd-ph {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream-3), var(--cream-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--burg-l);
}
.pd-info {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pd-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--burg);
  font-weight: 700;
  line-height: 1;
}
.pd-price small { font-family: var(--sans); font-size: .45em; color: var(--muted); font-weight: 500 }
.chips { display: flex; flex-wrap: wrap; gap: 8px }
.chip {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 7px 14px;
  font-weight: 600;
  font-size: .85rem;
  font-family: var(--sans);
}

/* ══════════════════════════════════════════════
   ARTICLE / PROSE
   ══════════════════════════════════════════════ */
.article-wrap { max-width: 800px; margin: 0 auto }
.article-head h1 { margin: .1em 0 .3em; line-height: 1.1 }
.article-meta { font-size: .82rem; color: var(--muted); margin-top: 8px; font-family: var(--sans) }
.article-hero { margin: 10px 0 36px }
.article-hero img { width: 100%; border-radius: var(--radius); }
.article-hero figcaption { font-size: .76rem; margin-top: 8px; text-align: center; color: var(--muted) }
.article-body { max-width: none; font-size: 1.06rem; line-height: 1.85; color: var(--ink-2) }
.article-body h2 { font-size: 1.8rem; margin: 1.8em 0 .5em; color: var(--ink) }
.article-body h3 { font-size: 1.3rem; margin: 1.4em 0 .4em; color: var(--ink) }
.article-body p  { margin: 0 0 1.1em }
.article-body ul,.article-body ol { padding-left: 1.4em; margin: 0 0 1.1em }
.article-body li { margin-bottom: .5em }
.article-body strong { color: var(--ink) }
.article-body blockquote {
  border-left: 3px solid var(--burg-l);
  padding: 4px 0 4px 20px;
  margin: 1.4em 0;
  font-style: italic;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.article-body table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .93rem }
.article-body th, .article-body td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; vertical-align: top }
.article-body th { background: var(--cream-2); font-weight: 700 }
.article-body hr { border: none; border-top: 1px solid var(--line); margin: 2em 0 }
.article-faq { margin-top: 44px }
.article-faq h2 { margin-bottom: 18px }
.article-cta { margin-top: 40px; text-align: center; padding-top: 32px; border-top: 1px solid var(--line) }

.prose { max-width: 780px; font-size: 1.02rem; color: var(--ink-2); line-height: 1.75 }
.prose h2,.prose h3 { color: var(--ink); margin-top: 1.5em }
.prose ul { padding-left: 1.3em }
.prose table { width: 100%; border-collapse: collapse; margin: 1.3em 0; font-size: .95rem }
.prose th,.prose td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; vertical-align: top }
.prose th { background: var(--cream-2); font-weight: 700 }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 1.8em 0 }
.prose blockquote { border-left: 3px solid var(--burg-l); padding: 4px 0 4px 18px; margin: 1.2em 0; font-style: italic; color: var(--ink-2) }
.prose li { margin-bottom: .45em }
.prose strong { color: var(--ink) }

/* Ticks list */
.ticks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px }
.ticks li { padding-left: 32px; position: relative; color: var(--ink-2); font-size: .93rem }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--burg); color: #fff;
  font-size: .75rem; display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 20px }
.contact-list { list-style: none; padding: 0; line-height: 2.1 }
.contact-list li { font-size: .92rem; color: var(--ink-2) }
.contact-list strong { color: var(--ink); display: inline-block; min-width: 80px }
.contact-list a { color: var(--burg) }
.contact-list a:hover { text-decoration: underline }

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: 24px }
.contact-form label { display: block; font-weight: 600; margin: 16px 0 5px; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-2); font-family: var(--sans) }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit; background: var(--cream);
  font-size: .93rem; transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--burg-l) }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0 }
.alert-ok {
  background: #f0f7ee; border: 1px solid #b8ddb0;
  color: #1a5c2a; padding: 14px 16px;
  border-radius: var(--radius); margin-bottom: 12px;
  font-size: .9rem; font-family: var(--sans);
}
.err { color: #c0392b; font-size: .84rem }

/* ══════════════════════════════════════════════
   FOOTER — deep wine, 4-column layout
   ══════════════════════════════════════════════ */
.site-footer {
  background: var(--burg-d);
  color: rgba(255,255,255,.65);
  padding: 72px 0 28px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.f-brand { display: flex; flex-direction: column; gap: 14px }
.f-brand .brand-name { color: rgba(255,255,255,.95); font-size: 1.6rem }
.f-brand .brand-tag  { color: rgba(255,255,255,.4) }
.f-brand p { font-size: .87rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.7 }

.site-footer h4 {
  color: rgba(255,255,255,.9);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-nav { display: flex; flex-direction: column; gap: 10px }
.foot-nav a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .15s }
.foot-nav a:hover { color: #fff }

.f-contact { display: flex; flex-direction: column; gap: 10px }
.f-contact p { font-size: .87rem; color: rgba(255,255,255,.6); margin: 0; line-height: 1.7 }
.f-contact a { color: rgba(255,255,255,.75) }
.f-contact a:hover { color: #fff }

.f-badges { display: flex; flex-direction: column; gap: 8px }
.f-badge {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: rgba(255,255,255,.65);
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
}
.f-badge span { color: var(--rose); font-size: 1rem }

.copyright {
  padding-top: 24px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
}
.email-link { color: inherit }
.pill { /* keep compat with greendiamond helpers */ }

/* ══════════════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(31,175,84,.5);
  font-weight: 600;
  font-size: .88rem;
  font-family: var(--sans);
  transition: .18s;
}
.wa-float:hover { background: var(--wa-d); color: #fff; text-decoration: none; transform: translateY(-2px) }
.wa-glyph { width: 24px; height: 24px; display: block; flex: none }
.wa-text { white-space: nowrap }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .freshband-inner { grid-template-columns: 1fr; gap: 48px }
  .guide-item { grid-template-columns: 60px 1fr 200px }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px }
  .usp-row { grid-template-columns: repeat(2, 1fr) }
  .usp-item:nth-child(2) { border-right: none }
  .usp-item { border-bottom: 1px solid var(--line) }
  .usp-item:nth-child(3),.usp-item:nth-child(4) { border-bottom: none }
  .tst-row { grid-template-columns: 1fr }
  .tst { border-right: none; border-bottom: 1px solid var(--line) }
  .tst:last-child { border-bottom: none }
  .cta-inner { grid-template-columns: 1fr; gap: 24px }
  .cta-actions { justify-content: flex-start }
  .pd-layout { grid-template-columns: 1fr }
  .contact-layout { grid-template-columns: 1fr }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: 60px }
  .hero-panel { order: -1; height: 280px; flex-direction: row }
  .hero-img-wrap { flex: 1; min-height: 280px }
  .hero-img-wrap img { aspect-ratio: unset; height: 100% }
  .hero-chips { display: none }
  .pcard-editorial { grid-template-columns: 1fr }
  .pcard-editorial:nth-child(even) { direction: ltr }
  .pe-body { padding: 28px 24px }
  .guide-item { grid-template-columns: 50px 1fr }
  .guide-thumb { display: none }
  .steps-row { grid-template-columns: 1fr }
  .step-item { border-right: none; border-bottom: 1px solid var(--line) }
  .step-item:last-child { border-bottom: none }
}

@media (max-width: 768px) {
  /* Header becomes mobile: centered brand, hidden nav */
  .header-inner { padding: 12px 20px; flex-direction: row; gap: 12px; align-items: center }
  .brand { flex-direction: row }
  .brand-name { font-size: 1.2rem }
  .brand-tag { display: none }
  .brand-logo { width: 32px }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    margin: 0;
    padding: 8px 20px 16px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    border-top: none;
    width: 100%;
    z-index: 50;
  }
  .header-inner.nav-open .main-nav { display: flex }
  .main-nav a { padding: 13px 4px; border-right: none; border-bottom: 1px solid var(--line); font-size: .88rem }
  .main-nav a:last-child { border-bottom: none }
  .header-wa { display: none }
  .nav-toggle { display: block; position: static; transform: none }
  .lang-toggle { display: none }
  .footer-grid { grid-template-columns: 1fr }
  .util-bar { display: none }
  .tst-row { grid-template-columns: 1fr }
  .pcard-grid { grid-template-columns: 1fr 1fr }
  .freshband blockquote p { font-size: 1.8rem }
}

@media (max-width: 540px) {
  .pcard-grid { grid-template-columns: 1fr }
  .hero { min-height: auto }
  .hero-panel { height: 220px }
  .hero h1 { font-size: 2.6rem }
  .hero-bg img { opacity: .28 }
  .usp-row { grid-template-columns: 1fr }
  .usp-item { border-right: none }
  .steps-row { grid-template-columns: 1fr }
  .contact-form { padding: 24px 20px }
  .wa-float { padding: 0; width: 58px; height: 58px; justify-content: center; border-radius: 50%; right: 16px; bottom: 16px; gap: 0 }
  .wa-float .wa-text { display: none }
  .wa-float .wa-glyph { width: 38px; height: 38px }
  .wrap { padding: 0 16px }
  .pe-body { padding: 22px 18px }
  .guide-item { grid-template-columns: 44px 1fr }
  .guide-num { font-size: 1.4rem }
  .guide-body { padding: 20px 18px }
  .section { padding: 60px 0 }
  .freshband blockquote p { font-size: 1.6rem }
  .cta-band { padding: 56px 0 }
  .footer-grid { gap: 28px }
  .prose table, .article-body table { display: block; overflow-x: auto; max-width: 100% }
  h1 { font-size: 2.4rem }
  .page-banner h1 { font-size: 2rem }
}
