/* ══════════════════════════════════════════════════════════════════
   GREENTOWN — LANDING PAGE
   Palette (from brand):
     PAPER #F6F1E4  cream
     INK   #242820  charcoal
     DEEP  #1C402C  deep green
     MIST  #EFE9DA  soft cream
     LINE  #D6CFBE  fine rule
     MUTED #7A7864
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand palette */
  --paper: #F6F1E4;
  --paper-2: #FBF7EC;
  --mist: #EFE9DA;
  --ink: #242820;
  --charcoal: #343830;
  --deep: #1C402C;
  --deep-ink: #15321F;
  --accent: #2E6A47;   /* brighter green for hover */
  --muted: #76735F;
  --line: #D6CFBE;
  --line-soft: #E3DCC8;
  --gold: #9C7E3A;

  /* Semantic tokens */
  --color-bg: var(--paper);
  --color-surface: var(--paper-2);
  --color-text: var(--ink);
  --color-text-muted: var(--muted);
  --color-border: var(--line);
  --color-primary: var(--deep);
  --color-primary-hover: var(--accent);

  /* Radius / shadow */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(36,40,32,0.06);
  --shadow-md: 0 8px 24px rgba(36,40,32,0.08);
  --shadow-lg: 0 18px 48px rgba(36,40,32,0.12);

  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --content: 1200px;
  --content-narrow: 880px;

  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ══ RESET ══ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.12; font-weight: 400; letter-spacing: -0.01em; }
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: 0; font: inherit; color: inherit; }
::selection { background: rgba(28,64,44,0.25); color: var(--ink); }
:focus-visible { outline: 2px solid var(--deep); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══ LAYOUT ══ */
.container { width: min(100% - 2rem, var(--content)); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: var(--space-4);
}
.eyebrow--light { color: rgba(246,241,228,0.8); }

/* ══ BRAND WORDMARK (HTML, matches postcard) ══ */
.brand-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1;
  display: inline-block;
}
.brand-wordmark--footer { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--paper); }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--deep);
  color: var(--paper);
  box-shadow: 0 6px 18px rgba(28,64,44,0.25);
}
.btn--primary:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(28,64,44,0.3); }
.btn--dark {
  background: var(--ink);
  color: var(--paper);
}
.btn--dark:hover { background: var(--deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { color: var(--paper); border-color: rgba(246,241,228,0.5); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover { background: #fff; transform: translateY(-1px); }
.btn--large { padding: 1.1rem 2rem; font-size: 0.95rem; }

/* ══ HEADER ══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,241,228,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgba(246,241,228,0.95);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: var(--space-6);
  padding: 1.1rem 1rem;
  width: min(100% - 0rem, var(--content));
  margin-inline: auto;
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.primary-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-size: 0.875rem;
}
.primary-nav a {
  color: var(--charcoal);
  position: relative;
  padding: 0.25rem 0;
}
.primary-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.primary-nav a:hover { color: var(--deep); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  background: var(--deep);
  color: var(--paper);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition);
}
.whatsapp-btn:hover { background: var(--accent); transform: translateY(-1px); }
.whatsapp-btn svg { flex-shrink: 0; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}
.mobile-nav a {
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1rem;
  color: var(--ink);
}
.mobile-nav a:last-child { border: none; }
.mobile-nav.is-open { display: flex; }
.whatsapp-btn--full {
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.9rem 1.1rem;
}

/* ══ HERO ══ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  margin-top: -1px;
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 45%;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    /* soft top wash */
    linear-gradient(180deg, rgba(246,241,228,0.55) 0%, rgba(246,241,228,0.0) 35%, rgba(36,40,32,0.0) 65%, rgba(36,40,32,0.3) 100%),
    /* strong left scrim so headline sits on a calm paper field */
    linear-gradient(100deg, rgba(246,241,228,0.96) 0%, rgba(246,241,228,0.92) 32%, rgba(246,241,228,0.78) 46%, rgba(246,241,228,0.5) 56%, rgba(246,241,228,0.15) 70%, rgba(246,241,228,0.0) 82%);
}
.hero-content {
  padding-block: clamp(6rem, 12vh, 10rem) clamp(3rem, 6vh, 5rem);
  width: min(100% - 2rem, var(--content));
  color: var(--ink);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--deep);
  margin-bottom: var(--space-6);
}
.hero-eyebrow-dot {
  opacity: 0.55;
  margin: 0 0.3em;
}
.hero-eyebrow-week {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  color: var(--accent);
  position: relative;
  padding-left: 0.55em;
}
.hero-eyebrow-week::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.5em;
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(46,106,71,0.15);
  animation: livePulse 2.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,106,71,0.15); }
  50% { box-shadow: 0 0 0 6px rgba(46,106,71,0.05); }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: var(--space-6);
  text-shadow: 0 1px 0 rgba(246,241,228,0.5);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--deep);
}
.hero-sub {
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.25rem);
  line-height: 1.5;
  color: var(--charcoal);
  max-width: 44ch;
  margin-bottom: var(--space-8);
}
.hero-sub--tagline {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  color: var(--deep);
  line-height: 1.35;
  margin-top: calc(var(--space-3) * -1);
  margin-bottom: var(--space-5);
  max-width: 36ch;
}
.hero-ctas {
  display: flex; gap: var(--space-3); flex-wrap: wrap;
  margin-bottom: var(--space-10);
}
.hero-strip {
  display: flex; flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(36,40,32,0.18);
  padding-top: var(--space-4);
  list-style: none;
  max-width: 640px;
}
.hero-strip li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.25rem 1.1rem;
  border-right: 1px solid rgba(36,40,32,0.18);
  line-height: 1.3;
}
.hero-strip li:first-child { padding-left: 0; }
.hero-strip li:last-child { border-right: 0; }

/* ══ RIBBON ══ */
.ribbon {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-block: 1px solid rgba(246,241,228,0.1);
}
.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-12);
  align-items: start;
}
.ribbon-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(246,241,228,0.5);
  margin-bottom: var(--space-4);
}
.ribbon-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: var(--paper);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.ribbon p {
  color: rgba(246,241,228,0.75);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 38ch;
}

/* ══ SECTION BASE ══ */
.section {
  padding-block: clamp(4rem, 8vw, 8rem);
}
.section--paper { background: var(--paper-2); border-block: 1px solid var(--line-soft); }
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section-head {
  max-width: 780px;
  margin: 0 auto var(--space-16);
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: var(--space-5);
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--deep); }
.section-title--light { color: var(--paper); }
.section-title--light em { color: #A7C9B2; }
.section-lede {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 auto;
}
.section-lede--light { color: rgba(246,241,228,0.78); }

/* ══ SPLIT LAYOUT (image + copy) ══ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.section--reverse .split > .split-media { order: 2; }
.split-media {
  position: relative;
}
.split-media img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.split-media--portrait img { aspect-ratio: 3/4; }
.split-media figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: var(--space-3);
  padding-left: var(--space-2);
}
.split-copy .section-title { font-size: var(--text-xl); }
.split-copy p { margin-bottom: var(--space-4); max-width: 52ch; }
.split-copy .section-lede { margin: 0 0 var(--space-5); }

/* Tickbox list */
.tickbox {
  list-style: none;
  margin: var(--space-6) 0 var(--space-8);
  display: grid;
  gap: var(--space-3);
}
.tickbox li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.tickbox li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--deep);
  border-bottom: 1.5px solid var(--deep);
  transform: rotate(-45deg);
  transform-origin: top left;
}

/* ══ CAPABILITY GRID ══ */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(246,241,228,0.1);
  border: 1px solid rgba(246,241,228,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cap {
  background: var(--ink);
  padding: var(--space-8) var(--space-6);
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.cap:hover { background: #2a2e25; }
.cap-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: #A7C9B2;
  margin-bottom: var(--space-6);
}
.cap h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.cap p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(246,241,228,0.72);
}

/* ══ QUOTE ══ */
.quote {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--mist);
  text-align: center;
  border-block: 1px solid var(--line-soft);
}
.quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1rem + 3vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 400;
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.015em;
}
.quote blockquote em {
  font-style: italic;
  color: var(--deep);
}

/* ══ STEPS ══ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  counter-reset: step;
}
.steps li {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--deep);
  margin-bottom: var(--space-6);
}
.steps h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.steps p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.55;
}

/* ══ FULL BANNER ══ */
.full-banner {
  position: relative;
  min-height: 55vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.full-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.full-banner::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(36,40,32,0.7) 0%, rgba(36,40,32,0.3) 60%, rgba(36,40,32,0.1) 100%);
}
.full-banner-caption {
  width: min(100% - 2rem, var(--content));
  margin-inline: auto;
  color: var(--paper);
  padding-block: var(--space-12);
}
.full-banner-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 1rem + 3vw, 3rem);
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: var(--space-8);
  letter-spacing: -0.015em;
}

/* ══ STATS ══ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  color: var(--deep);
  letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--space-2);
}

/* ══ FAQ ══ */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq-head { position: sticky; top: 100px; }
.faq-list details {
  border-top: 1px solid var(--line);
  padding: var(--space-5) 0;
}
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .plus {
  position: relative;
  width: 18px; height: 18px; flex-shrink: 0;
}
.faq-list .plus::before,
.faq-list .plus::after {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 18px; height: 1.5px;
  background: var(--deep);
  transition: transform var(--transition);
}
.faq-list .plus::after { transform: rotate(90deg); }
.faq-list details[open] .plus::after { transform: rotate(0); }
.faq-list details p {
  margin-top: var(--space-3);
  color: var(--charcoal);
  font-size: 0.975rem;
  line-height: 1.6;
  max-width: 60ch;
}

/* ══ FINAL CTA ══ */
.cta-final {
  background: var(--deep);
  color: var(--paper);
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05), transparent 45%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-2xl);
  color: var(--paper);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: rgba(246,241,228,0.78);
  max-width: 44ch;
  margin: 0 auto var(--space-8);
}
.cta-actions {
  display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center;
}

/* ══ FOOTER ══ */
.site-footer {
  background: var(--ink);
  color: rgba(246,241,228,0.75);
  padding-block: var(--space-16) var(--space-8);
  font-size: 0.875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(246,241,228,0.12);
}
.footer-brand .brand-wordmark { margin-bottom: var(--space-4); }
.footer-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A7C9B2;
  margin-bottom: var(--space-3);
}
.footer-addr { color: rgba(246,241,228,0.6); }
.site-footer h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: var(--space-5);
}
.site-footer ul { display: grid; gap: var(--space-3); }
.site-footer a:hover { color: var(--paper); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-6);
  font-size: 0.8rem;
  color: rgba(246,241,228,0.5);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 0.65rem; }
  .whatsapp-btn svg { width: 20px; height: 20px; }

  .ribbon-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: var(--space-2); }
}

@media (max-width: 680px) {
  .hero { min-height: 92vh; }
  .hero-title { max-width: 15ch; }
  .hero-media img { object-position: 72% 50%; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(246,241,228,0.9) 0%, rgba(246,241,228,0.7) 25%, rgba(246,241,228,0.35) 55%, rgba(36,40,32,0.35) 100%),
      linear-gradient(90deg, rgba(246,241,228,0.6) 0%, rgba(246,241,228,0.2) 60%, rgba(246,241,228,0.0) 100%);
  }
  .hero-strip { gap: 0.25rem 0; }
  .hero-strip li { border-right: 0; padding: 0.15rem 0.85rem 0.15rem 0; font-size: 0.7rem; letter-spacing: 0.18em; }
  .hero-strip li:not(:last-child)::after { content: '·'; margin-left: 0.6rem; color: var(--muted); }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .section--reverse .split > .split-media { order: 0; }
  .capability-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-strip li { padding: 0.2rem 0.75rem; font-size: 0.72rem; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
  .cta-actions .btn { flex: 1; justify-content: center; }
}

/* ==================================================================
   E-COMMERCE — header shop button, hero trust strip, shop grid
   ================================================================== */

/* Header: primary Shop button + icon-only WhatsApp */
.shop-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  background: var(--deep);
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
  margin-right: 0.5rem;
}
.shop-btn:hover { background: var(--accent); }
.whatsapp-btn--icon {
  padding: 0.55rem;
  width: 2.4rem;
  height: 2.4rem;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--deep);
}
.whatsapp-btn--icon:hover { background: var(--deep); color: #fff; border-color: var(--deep); }
.whatsapp-btn--icon span { display: none; }

/* Hero trust strip — thin row below CTAs */
.hero-trust {
  list-style: none;
  padding: 0;
  margin: var(--space-5) 0 var(--space-7) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-trust li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--deep);
  opacity: 0.55;
  display: inline-block;
}

/* Shop section */
.section--shop {
  background: linear-gradient(180deg, var(--paper) 0%, #EFE8D6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head--center {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--space-10);
}
.section-head--center .eyebrow {
  justify-content: center;
  display: inline-block;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-10);
}
@media (max-width: 1280px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(36,40,32,0.18);
  border-color: rgba(28,64,44,0.25);
}
.product-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product:hover .product-media img { transform: scale(1.03); }
.product-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.product-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.product-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.01em;
}
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.product-price-note {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.shop-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.shop-footer-note {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}
.shop-footer-note a {
  color: var(--deep);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Inline text-link CTA (secondary) */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--deep);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.btn-link:hover { border-bottom-color: var(--deep); }

.gifting-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

/* Mobile tweaks */
@media (max-width: 980px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .shop-btn { padding: 0.5rem 0.95rem; font-size: 0.82rem; }
}
@media (max-width: 680px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-btn { padding: 0.5rem 0.9rem; }
  .hero-trust { font-size: 0.72rem; gap: 0.3rem 0.9rem; }
  .btn--full { width: 100%; justify-content: center; }
  .gifting-ctas { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

/* ============================================================
   SUBSCRIPTION PLANS
   ============================================================ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 960px) {
  .plan-grid { grid-template-columns: 1fr; gap: 20px; }
}
.plan {
  position: relative;
  background: rgba(246, 241, 228, 0.04);
  border: 1px solid rgba(246, 241, 228, 0.14);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.plan--featured {
  background: rgba(246, 241, 228, 0.08);
  border-color: rgba(246, 241, 228, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}
.plan-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent, #2E6A47);
  color: #F6F1E4;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}
.plan-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(246, 241, 228, 0.14);
}
.plan-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  color: #F6F1E4;
  margin: 0;
  line-height: 1.1;
}
.plan-unit {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(246, 241, 228, 0.6);
  letter-spacing: 0.01em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-amt {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  color: #F6F1E4;
  letter-spacing: -0.01em;
}
.plan-per {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(246, 241, 228, 0.55);
}
.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.plan-list li {
  position: relative;
  padding-left: 22px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246, 241, 228, 0.82);
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background: var(--accent, #2E6A47);
}
.btn--full { width: 100%; text-align: center; justify-content: center; }
.plan-note {
  margin-top: 32px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(246, 241, 228, 0.55);
  letter-spacing: 0.01em;
}

/* ============================================================
   SYSTEM GRID
   ============================================================ */
.system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 960px) {
  .system-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .system-grid { grid-template-columns: 1fr; }
}
.syscard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0 0 0;
  border-top: 1px solid var(--line, #D6CFBE);
}
.syscard-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent, #2E6A47);
  letter-spacing: 0.06em;
}
.syscard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink, #242820);
  margin: 0;
  line-height: 1.2;
}
.syscard p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted, #76735F);
  margin: 0;
}

/* ============================================================
   PRODUCT LATIN NAME
   ============================================================ */
.product-latin {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.82em;
  color: var(--muted, #76735F);
  margin-left: 4px;
}

/* ============================================================
   PRODUCT — "MORE COMING SOON" tile
   ============================================================ */
.product--coming {
  background: transparent;
  border: 1px dashed var(--line, #D6CFBE);
  box-shadow: none;
}
.product-coming-media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 64, 44, 0.03);
  border-bottom: 1px dashed var(--line, #D6CFBE);
}
.product-coming-dot {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--accent, #2E6A47);
  color: var(--accent, #2E6A47);
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================================
   PRODUCT — secondary price line ("or AED X/mo")
   ============================================================ */
.product-sub {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.78em;
  color: var(--muted, #76735F);
  letter-spacing: 0;
  margin-left: 2px;
}

/* ============================================================
   SCALE SECTION — grouped heights
   ============================================================ */
.section--scale {
  background: var(--paper, #F6F1E4);
}
.scale-media {
  margin: 56px auto 0;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.scale-media img {
  width: 100%;
  height: auto;
  display: block;
}
.scale-media figcaption {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #76735F);
  text-align: center;
}
.scale-ctas {
  margin-top: 40px;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .scale-ctas { flex-direction: column; gap: 16px; }
}

/* ============================================================
   PLAN TAG — muted (secondary save indicator)
   ============================================================ */
.plan-tag--muted {
  background: transparent;
  color: rgba(246, 241, 228, 0.72);
  border: 1px solid rgba(246, 241, 228, 0.32);
}

/* ========================================================================
   CARE ICONS (glyph + short label row on product cards)
   ======================================================================== */
.care-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 10px 0 16px 0;
  padding: 10px 0 14px 0;
  list-style: none;
  border-top: 1px solid var(--line, #D6CFBE);
  border-bottom: 1px solid var(--line, #D6CFBE);
}
.care-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: var(--muted, #76735F);
  letter-spacing: 0.01em;
  cursor: default;
}
.care-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--deep, #1C402C);
  transition: color 160ms ease;
}
.care-icon-label {
  white-space: nowrap;
}
.care-icon--yes svg { color: var(--accent, #2E6A47); }
.care-icon--no svg { color: #A66A4E; }
.care-icon--no .care-icon-label { color: #A66A4E; }

/* Tooltip on hover / focus */
.care-icon[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%) translateY(4px);
  background: var(--ink, #242820);
  color: var(--paper, #F6F1E4);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  padding: 6px 9px;
  border-radius: 4px;
  white-space: normal;
  width: max-content;
  max-width: 220px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(36, 40, 32, 0.18);
}
.care-icon[data-tooltip]:hover::after,
.care-icon[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 640px) {
  .care-icons { gap: 10px 14px; }
  .care-icon { font-size: 11.5px; }
  .care-icon svg { width: 16px; height: 16px; }
  .care-icon[data-tooltip]::after { display: none; }
}

/* ========================================================================
   FINISHES SECTION
   ======================================================================== */
.section--finishes {
  background: var(--paper, #F6F1E4);
  padding: 96px 0;
  border-top: 1px solid var(--line, #D6CFBE);
}
.finishes-media {
  margin: 48px 0 56px 0;
}
.finishes-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.finishes-media figcaption {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted, #76735F);
  text-align: center;
}
.inlet-note {
  max-width: 620px;
  margin: 28px auto 0 auto;
  padding: 20px 28px;
  border-top: 1px solid var(--line, #D6CFBE);
  border-bottom: 1px solid var(--line, #D6CFBE);
  text-align: center;
}
.inlet-note p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink, #242820);
}
.inlet-note em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--deep, #1C402C);
}
@media (max-width: 640px) {
  .inlet-note {
    padding: 18px 18px;
    margin-top: 22px;
  }
  .inlet-note p {
    font-size: 13px;
  }
}
.finish-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.finish {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0 0 0;
  border-top: 1px solid var(--line, #D6CFBE);
}
.finish-swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.finish--white .finish-swatch {
  background: #F2EEE8;
  border-color: #D6CFBE;
}
.finish--gold .finish-swatch {
  background: linear-gradient(135deg, #D4B36A 0%, #B8924A 45%, #E5C987 100%);
}
.finish--black .finish-swatch {
  background: #1A1A1A;
  border-color: #1A1A1A;
}
.finish-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink, #242820);
  margin: 0 0 6px 0;
  line-height: 1.2;
}
.finish-body p {
  font-size: 15px;
  color: var(--muted, #76735F);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 820px) {
  .finish-list { grid-template-columns: 1fr; gap: 20px; }
  .section--finishes { padding: 72px 0; }
}

/* ========================================================================
   TRAVEL SECTION
   ======================================================================== */
.section--travel {
  background: var(--paper, #F6F1E4);
  padding: 96px 0;
  border-top: 1px solid var(--line, #D6CFBE);
}
.travel-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.travel-media {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
}
.travel-media img {
  width: 100%;
  height: auto;
  display: block;
}
.travel-copy .section-title { margin-top: 12px; }
.travel-list {
  margin: 24px 0 32px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: var(--charcoal, #343830);
  line-height: 1.5;
}
.travel-list li {
  padding-left: 18px;
  position: relative;
}
.travel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--accent, #2E6A47);
}
.travel-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 900px) {
  .travel-grid { grid-template-columns: 1fr; gap: 40px; }
  .travel-media { order: -1; }
  .section--travel { padding: 72px 0; }
}

/* ==========================================================================
   PRICING SECTION — split cards (Plants / Monthly maintenance) + guarantee
   ========================================================================== */
.price-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.price-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  color: #F6F1E4;
}
.price-card--secondary {
  background: rgba(246, 241, 228, 0.06);
  border-color: rgba(246, 241, 228, 0.18);
}
.price-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 6px;
  color: #F6F1E4;
  letter-spacing: -0.01em;
}
.price-card-lede {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 241, 228, 0.62);
  margin-bottom: 24px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(246, 241, 228, 0.12);
  font-size: 16px;
  color: rgba(246, 241, 228, 0.9);
}
.price-list li:last-child {
  border-bottom: none;
}
.price-list li > span:first-child {
  color: rgba(246, 241, 228, 0.72);
}
.price-val {
  font-weight: 500;
  color: #F6F1E4;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.price-card .btn {
  margin-top: auto;
}

.guarantee {
  margin-top: 48px;
  padding: 32px 28px;
  border: 1px solid rgba(246, 241, 228, 0.18);
  border-radius: 6px;
  background: rgba(246, 241, 228, 0.04);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-title {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 8px;
  color: #F6F1E4;
}
.guarantee-text {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(246, 241, 228, 0.82);
  margin: 0;
}

@media (max-width: 820px) {
  .price-split {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }
  .price-card { padding: 28px 24px 24px; }
  .price-card-title { font-size: 28px; }
  .guarantee { margin-top: 32px; padding: 24px 20px; }
  .guarantee-title { font-size: 20px; }
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */
.about-wrap { max-width: 860px; }
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.about-para {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink, #242820);
  margin: 0;
}
.about-para--muted {
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted, #76735F);
  padding-top: 8px;
  border-top: 1px solid var(--line, #D6CFBE);
  margin-top: 12px;
}

@media (max-width: 720px) {
  .about-para { font-size: 17px; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-wrap { max-width: 1100px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  border: 1px solid rgba(246, 241, 228, 0.18);
  border-radius: 6px;
  background: rgba(246, 241, 228, 0.04);
  color: #F6F1E4;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
  background: rgba(246, 241, 228, 0.08);
  border-color: rgba(246, 241, 228, 0.32);
  transform: translateY(-1px);
}
.contact-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 241, 228, 0.58);
}
.contact-value {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: #F6F1E4;
  margin-top: 4px;
}
.contact-meta {
  font-size: 13px;
  color: rgba(246, 241, 228, 0.62);
  margin-top: 6px;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
  .contact-card { padding: 22px 20px; }
  .contact-value { font-size: 22px; }
}

.price-card-note {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(246, 241, 228, 0.74);
  margin: -8px 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(246, 241, 228, 0.10);
}
@media (max-width: 820px) {
  .price-card-note { font-size: 13.5px; margin-bottom: 18px; padding-bottom: 16px; }
}

/* ========================================================================
   PACKAGING SECTION
   ======================================================================== */
.section--packaging {
  background: var(--paper, #F6F1E4);
  padding: 120px 0;
  border-top: 1px solid var(--line, #D6CFBE);
  border-bottom: 1px solid var(--line, #D6CFBE);
}
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.packaging-copy .eyebrow {
  margin-bottom: 18px;
}
.packaging-copy .section-title {
  margin-bottom: 22px;
}
.packaging-copy .section-lede {
  margin-bottom: 28px;
}
.packaging-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.packaging-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: baseline;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink, #242820);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line, #D6CFBE);
}
.packaging-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.packaging-list-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--accent, #2E6A47);
  letter-spacing: 0.02em;
}
.packaging-list strong {
  font-weight: 600;
  color: var(--ink, #242820);
}
.packaging-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.packaging-media {
  margin: 0;
}
.packaging-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 24px 56px rgba(36, 40, 32, 0.10);
}
.packaging-caption {
  margin-top: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted, #76735F);
  text-align: center;
  font-style: normal;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .section--packaging { padding: 88px 0; }
  .packaging-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .packaging-media { order: -1; }
}
@media (max-width: 640px) {
  .section--packaging { padding: 64px 0; }
  .packaging-list { gap: 14px; }
  .packaging-list li { font-size: 14px; gap: 14px; padding-bottom: 14px; }
  .packaging-list-num { font-size: 18px; }
  .packaging-ctas { gap: 16px; }
}
