/* =======================================================
   PureFinest, pure white + forest green
   Clean, minimal, modern.
======================================================= */

:root {
  --white: #ffffff;
  --paper: #ffffff;
  --off-white: #f7faf7;
  --line: #e3eae3;
  --ink: #1c2a1d;
  --forest: #2d4a2b;
  --forest-deep: #1f3520;
  --moss: #5b7553;
  --sage: #a8b89a;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --max-width: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.875rem var(--space-md);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  padding: 0.625rem var(--space-md);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.logo {
  display: inline-flex;
  align-items: center;
  height: 72px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }
.logo img { height: 100%; width: auto; display: block; }
.site-header.scrolled .logo { height: 56px; }
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  font-size: 0.875rem;
}
.nav-links a {
  position: relative;
  padding-bottom: 4px;
  color: var(--ink);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--forest);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.btn-nav {
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--forest);
  padding: 0.25rem;
}
@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px -15px rgba(28, 42, 29, 0.1);
  }
  .nav-links.open { display: flex; }
  .btn-nav { display: none; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-block;
  margin-bottom: var(--space-md);
}
.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-style: italic;
  color: var(--moss);
  max-width: 540px;
}
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(45, 74, 43, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

/* ============================================
   PRODUCT IMAGE FRAME — Variant 4
   Soft green-tinted shadow, no outline, square aspect.
   Used everywhere a product photo appears.
   ============================================ */
.product-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 50px -10px rgba(45, 74, 43, 0.15),
    0 0 0 1px rgba(45, 74, 43, 0.05);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}
.product-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.product-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 60px -10px rgba(45, 74, 43, 0.22),
    0 0 0 1px rgba(45, 74, 43, 0.08);
}

/* ============================================
   SECTION 1, HERO
   ============================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--space-md) var(--space-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle at center, rgba(168, 184, 154, 0.18), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  margin: 0 0 var(--space-md);
  color: var(--ink);
}
.hero-text .lead { margin-bottom: var(--space-lg); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 7rem var(--space-md) 3rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .hero-visual { order: -1; }
}

/* ============================================
   SECTION 2, RANGE
   ============================================ */
.range {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.section-head {
  margin-bottom: var(--space-xl);
  max-width: 700px;
}
.section-head h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--ink);
}
.section-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--moss);
  max-width: 580px;
  margin-top: var(--space-md);
}
.range-rows {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.range-row.reverse { direction: rtl; }
.range-row.reverse > * { direction: ltr; }
.range-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.range-body { max-width: 480px; }
.range-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}
.range-body h3 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.range-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--forest);
  margin-bottom: var(--space-md);
}
.range-body p:last-child {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}
.range-note {
  text-align: center;
  margin-top: var(--space-xl);
  font-family: var(--serif);
  font-style: italic;
  color: var(--moss);
  font-size: 1.125rem;
}
@media (max-width: 900px) {
  .range { padding: var(--space-lg) 0; }
  .range-rows { gap: var(--space-lg); }
  .range-row, .range-row.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    direction: ltr;
  }
  .section-head { margin-bottom: var(--space-lg); }
}

/* ============================================
   SECTION 3, 3-IN-1 PROMISE (forest green)
   ============================================ */
.promise {
  padding: var(--space-xl) 0;
  background: var(--forest);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(circle at center, rgba(168, 184, 154, 0.12), transparent 60%);
  pointer-events: none;
}
.promise > .container { position: relative; z-index: 2; }
.promise .section-head h2 { color: var(--white); }
.promise .section-head h2 em { color: var(--sage); }
.promise .eyebrow { color: var(--sage); }
.promise .section-intro { color: var(--sage); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.pillar {
  border-top: 1px solid rgba(168, 184, 154, 0.3);
  padding-top: var(--space-md);
}
.pillar-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}
.pillar h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pillar-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}
.pillar p:last-child {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--sage);
  margin: 0;
}
@media (max-width: 900px) {
  .promise { padding: var(--space-lg) 0; }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
}
@media (max-width: 540px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================
   SECTION 4, INGREDIENTS
   ============================================ */
.ingredients {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md) var(--space-lg);
  margin-top: var(--space-xl);
}
.ingredient {
  border-top: 1px solid var(--line);
  padding-top: var(--space-md);
}
.ingredient-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--forest);
  margin-bottom: var(--space-sm);
}
.ingredient h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  color: var(--forest);
  margin-bottom: 0.375rem;
}
.ingredient-meta {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.75rem;
}
.ingredient p:last-child {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}
.ingredient-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.panel {
  padding: var(--space-lg);
  border-radius: 4px;
}
.panel-in {
  background: var(--white);
  border: 2px solid var(--forest);
}
.panel-out {
  background: var(--ink);
  color: var(--white);
}
.panel h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}
.panel-in h4 { color: var(--forest); }
.panel-out h4 { color: var(--white); }
.panel ul { list-style: none; }
.panel li {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0.625rem 0;
  border-bottom: 1px solid;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}
.panel-in li {
  border-color: var(--line);
  color: var(--ink);
}
.panel-in li:last-child { border-bottom: none; }
.panel-in li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}
.panel-out li {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  opacity: 0.9;
}
.panel-out li:last-child { border-bottom: none; }
.panel-out li::before {
  content: '×';
  color: var(--sage);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .ingredients { padding: var(--space-lg) 0; }
  .ingredient-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  .ingredient-panels {
    grid-template-columns: 1fr;
    margin-top: var(--space-lg);
  }
  .panel { padding: var(--space-md); }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SECTION 5, ORDER FORM
   ============================================ */
.order {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.order::before {
  content: '';
  position: absolute;
  top: -10%; left: -10%;
  width: 50%; height: 70%;
  background: radial-gradient(circle at center, rgba(168, 184, 154, 0.18), transparent 60%);
  pointer-events: none;
}
.order > .container { position: relative; z-index: 2; }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}
.order-intro h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.expect {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line);
}
.expect h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-md);
}
.expect-item {
  display: flex;
  gap: var(--space-md);
  align-items: baseline;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
}
.expect-item:last-child { border-bottom: none; }
.expect-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--forest);
  flex-shrink: 0;
  width: 30px;
}
.expect-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.85;
}
.order-form-wrap {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(45, 74, 43, 0.15);
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.field label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}
.optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-style: italic;
  opacity: 0.7;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.875rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--moss);
  opacity: 0.6;
  font-style: italic;
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: var(--sans);
  line-height: 1.5;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%232d4a2b' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9375rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
  transition: all 0.2s ease;
}
.check:hover { border-color: var(--moss); }
.check input {
  accent-color: var(--forest);
  margin: 0;
  width: auto;
}
.check:has(input:checked) {
  background: var(--white);
  border-color: var(--forest);
}
.check:has(input:checked) span {
  color: var(--forest);
  font-weight: 500;
}
.field-submit {
  margin-top: var(--space-sm);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.field-submit button { width: auto; }
.form-note {
  font-size: 0.8125rem;
  color: var(--moss);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}
.form-status {
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  font-style: italic;
}
.form-status.success { color: var(--forest); }
.form-status.error { color: #b85c3a; }
@media (max-width: 900px) {
  .order { padding: var(--space-lg) 0; }
  .order-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .field-row { grid-template-columns: 1fr; }
  .order-form-wrap { padding: var(--space-md); }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.4fr 1.5fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--space-md);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
  margin-bottom: var(--space-sm);
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.footer-col a:hover { color: var(--sage); }
.footer-meta {
  font-size: 0.75rem;
  color: var(--sage);
  opacity: 0.7;
  font-style: italic;
}
.footer-logo {
  display: inline-block;
  height: 72px;
  margin-bottom: var(--space-sm);
}
.footer-logo img { height: 100%; width: auto; display: block; }
.footer-tagline {
  font-size: 0.9375rem;
  opacity: 0.75;
  line-height: 1.6;
  max-width: 300px;
}
.newsletter-intro {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: var(--space-sm);
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-form input { min-width: 160px; }
.newsletter-form button { flex-shrink: 0; }
.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.875rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--sage); }
.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--white);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.newsletter-form button:hover {
  background: var(--sage);
  color: var(--ink);
}
.newsletter-status {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  opacity: 0.85;
}
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8125rem;
  opacity: 0.7;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.footer-base ul {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   HOME PAGE — text-only hero
   ============================================ */
.hero-text-only {
  min-height: 86vh;
  padding: 8rem var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-inner-narrow {
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-text-only h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--ink);
  margin-bottom: var(--space-md);
  line-height: 1.05;
}
.hero-text-only .lead {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}
.hero-text-only .hero-actions {
  justify-content: center;
}

/* ============================================
   HOME PAGE — featured partner card
   ============================================ */
.featured {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-lg) 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.featured-card:hover {
  transform: translateY(-4px);
}
.featured-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--forest);
  margin: 0.75rem 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.featured-body .range-tag {
  margin-bottom: 0;
}
.featured-body .range-tagline {
  margin-bottom: var(--space-md);
}
.featured-body p:not(.range-tagline) {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: var(--space-md);
}
.featured-body .btn {
  margin-top: 0.5rem;
}
.btn-arrow::after {
  content: '';
  margin-left: 0.25rem;
}
@media (max-width: 900px) {
  .featured { padding: var(--space-lg) 0; }
  .featured-card {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ============================================
   HOME PAGE — approach strip
   ============================================ */
.approach-strip {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}
.col-label { padding-top: 0.5rem; }
.two-col h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--space-md);
}
.two-col p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: var(--space-sm);
}
@media (max-width: 900px) {
  .approach-strip { padding: var(--space-lg) 0; }
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ============================================
   HOME PAGE — journal preview cards
   ============================================ */
.journal-preview {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}
.journal-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease;
}
.journal-card:hover {
  transform: translateY(-4px);
}
.journal-card-image {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
}
.jc-1 { background: url('/images/journal-welcome.webp') center/cover no-repeat; }
.jc-2 { background: url('/images/journal-label.webp') center/cover no-repeat; }
.jc-3 { background: url('/images/journal-purefinest.webp') center/cover no-repeat; }
.journal-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}
.journal-card-meta {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.journal-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.journal-card:hover h3 { color: var(--forest); }
.journal-card p {
  font-size: 0.9375rem;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .journal-preview { padding: var(--space-lg) 0; }
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
}
@media (max-width: 600px) {
  .journal-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOME PAGE — partnership CTA strip
   ============================================ */
.cta-strip {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: var(--space-sm) 0 var(--space-md);
}
.cta-inner h2 em {
  font-style: italic;
  color: var(--forest);
}
.cta-inner .lead {
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cta-strip { padding: var(--space-lg) 0; }
}

/* ============================================
   FULL-BLEED IMAGE BREAK
   ============================================ */
.image-break {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .image-break { height: 260px; }
}

/* ============================================
   ABOUT PAGE — page hero (centered, type-only)
   ============================================ */
.page-hero {
  padding: 10rem var(--space-md) var(--space-lg);
  background: var(--white);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: var(--ink);
  margin-bottom: var(--space-md);
  line-height: 1.05;
}
.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .page-hero { padding: 8rem var(--space-md) var(--space-lg); }
}

/* ============================================
   ABOUT — long-form prose section
   ============================================ */
.prose-section {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.prose h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--forest);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}
.prose p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  float: left;
  line-height: 0.85;
  margin: 0.5rem 0.5rem 0 0;
  color: var(--forest);
  font-style: italic;
}
@media (max-width: 600px) {
  .prose p:first-of-type::first-letter {
    font-size: 1rem;
    float: none;
    margin: 0;
    line-height: inherit;
  }
}
@media (max-width: 900px) {
  .prose-section { padding: var(--space-lg) 0; }
}
@media (max-width: 540px) {
  .container, .container-narrow {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ============================================
   ABOUT — what 'natural' means (off-white panel)
   ============================================ */
.natural-meaning {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.natural-meaning .two-col h2 {
  margin-bottom: var(--space-md);
}
.meaning-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--line);
}
.meaning-item:last-child { border-bottom: none; }
.meaning-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--forest);
  padding-top: 0.5rem;
}
.meaning-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--forest);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.meaning-item p {
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .natural-meaning { padding: var(--space-lg) 0; }
  .meaning-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ============================================
   ABOUT — how we choose (4-point ticklist)
   ============================================ */
.how-we-choose {
  padding: var(--space-xl) 0;
  background: var(--white);
}
.choose-panel {
  margin-top: var(--space-lg);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.choose-panel li {
  font-size: 1.0625rem;
  padding: 1rem 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .how-we-choose { padding: var(--space-lg) 0; }
  .choose-panel li { font-size: 0.9375rem; }
}

/* ============================================
   APPROACH PAGE — four pillars (instead of three)
   ============================================ */
.pillars-four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .pillars-four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pillars-four {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   APPROACH — what we don't do (dark panel)
   ============================================ */
.dont-do {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.dont-panel {
  margin-top: var(--space-lg);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.dont-panel li {
  font-size: 1.0625rem;
  padding: 1rem 0;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .dont-do { padding: var(--space-lg) 0; }
  .dont-panel li { font-size: 0.9375rem; }
}

/* ============================================
   PARTNERS PAGE — roster archive empty state
   ============================================ */
.roster {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.empty-state {
  border: 1px dashed var(--line);
  border-radius: 4px;
  padding: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
}
.empty-state p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--moss);
  margin: 0;
}
@media (max-width: 900px) {
  .roster { padding: var(--space-lg) 0; }
  .empty-state { padding: var(--space-md); }
}

/* ============================================
   JOURNAL PAGE — category filter chips
   ============================================ */
.journal-filters {
  padding: var(--space-md) 0 var(--space-lg);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.filter-chips {
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
}
.chip {
  padding: 0.5rem 1.125rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.chip.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ============================================
   JOURNAL — featured post
   ============================================ */
.journal-featured {
  padding: 0 0 var(--space-xl);
  background: var(--white);
}
.featured-post {
  padding: var(--space-md) 0;
}
.featured-post .featured-visual .post-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
}

/* Post images (placeholder gradients — replace with real photos when ready) */
.post-image,
.journal-card-image {
  position: relative;
  overflow: hidden;
}
.post-image-1 { background: url('/images/journal-featured.webp') center/cover no-repeat; }
.jc-3 { background: url('/images/journal-purefinest.webp') center/cover no-repeat; }
.jc-1 { background: url('/images/journal-welcome.webp') center/cover no-repeat; }
.jc-2 { background: url('/images/journal-label.webp') center/cover no-repeat; }
.post-image::after,
.journal-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

/* ============================================
   JOURNAL — archive grid section
   ============================================ */
.journal-archive {
  padding: var(--space-xl) 0;
  background: var(--off-white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .journal-archive { padding: var(--space-lg) 0; }
  .journal-featured { padding: 0 0 var(--space-lg); }
}

/* Larger newsletter form for CTA */
.newsletter-form-large input {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
}
.newsletter-form-large input::placeholder {
  color: var(--moss);
  opacity: 0.6;
}
.newsletter-form-large input:focus {
  border-color: var(--forest);
}
.newsletter-form-large button {
  background: var(--forest);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
}
.newsletter-form-large button:hover {
  background: var(--forest-deep);
  color: var(--white);
}

/* ============================================
   JOURNAL POST PAGE
   ============================================ */
.post-hero {
  padding: 9rem var(--space-md) var(--space-md);
  background: var(--white);
  text-align: center;
}
.post-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  color: var(--ink);
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.05;
}
.post-hero .lead {
  max-width: 640px;
  margin: 0 auto var(--space-md);
}
.post-meta-row {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
  display: inline-block;
}

.post-feature-image {
  padding: 0 0 var(--space-lg);
  background: var(--white);
}
.post-image-large {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.post-image-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.article .prose-section {
  border-top: none;
  padding-top: var(--space-md);
}
.article .prose h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--forest);
  margin: var(--space-md) 0 0.5rem;
}
.article .prose ul {
  margin: 1rem 0 1.5rem 1.25rem;
}
.article .prose ul li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.article .prose a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.article .prose a:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .post-hero { padding: 7rem var(--space-md) var(--space-md); }
  .post-image-large { aspect-ratio: 4 / 3; }
}

/* ============================================
   CONTACT PAGE — three cards
   ============================================ */
.contact-cards-section {
  padding: var(--space-xl) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.contact-card {
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-card:hover {
  border-color: var(--forest);
  transform: translateY(-4px);
}
.contact-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--forest);
  margin-bottom: var(--space-sm);
  display: inline-block;
}
.contact-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.875rem;
  color: var(--forest);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.contact-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--moss);
  margin-bottom: var(--space-sm);
}
.contact-card p:not(.contact-tagline) {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: var(--space-md);
}
.contact-email {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--forest);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
  display: inline-block;
  word-break: break-all;
}
.contact-email:hover {
  border-color: var(--forest);
}
@media (max-width: 900px) {
  .contact-cards-section { padding: var(--space-lg) 0; }
  .contact-cards {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .contact-card { padding: var(--space-md); }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25D366;
  color: #fff;
  border-radius: 56px;
  padding: 0.75rem 1.25rem 0.75rem 0.875rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.wa-float svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
@media (max-width: 540px) {
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .wa-float span { display: none; }
}
