/* ============================================
   Purenika – Wellness Informational Site
   Styles
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #f6f3ec;
  --warm-white: #fbfaf6;
  --paper: #ffffff;
  --sage-50: #eaf1ea;
  --sage-100: #d4e3d4;
  --sage-300: #a8c4a8;
  --moss: #4a6b4a;
  --forest: #1f3a2c;
  --forest-deep: #14271c;
  --azure-100: #d8ebee;
  --azure-300: #88b8c4;
  --azure-500: #4a8a9a;
  --teal-deep: #2d5159;
  --ink: #1a2520;
  --muted: #5c6b62;
  --line: #dcdfd6;
  --accent: #c4a661;

  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(20, 39, 28, 0.04), 0 2px 6px rgba(20, 39, 28, 0.04);
  --shadow:    0 6px 14px rgba(20, 39, 28, 0.06), 0 18px 38px rgba(20, 39, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 39, 28, 0.14);

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --t-fast: 180ms ease;
  --t: 320ms cubic-bezier(.2,.7,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--azure-500); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--azure-500);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--azure-500);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .01em;
  border-radius: 100px;
  transition: all var(--t);
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--forest);
  color: var(--warm-white);
}
.btn-primary:hover {
  background: var(--forest-deep);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 58, 44, .22);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--warm-white);
}
.btn-ghost {
  padding: 10px 0;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--azure-500); border-color: var(--azure-500); }

.btn-arrow::after {
  content: '→';
  font-size: 1.05em;
  transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================
   Header / Navigation
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 236, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.site-header.is-scrolled { border-color: var(--line); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--forest);
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sage-300), var(--moss) 75%);
  position: relative;
  flex: 0 0 auto;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: var(--cream);
  opacity: .35;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-size: .94rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--moss);
  transition: right var(--t);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--forest); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  background: var(--warm-white);
  width: 18px;
  height: 1.5px;
  left: 11px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after  { top:  6px; left: 0; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 9vw, 120px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage-50) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -8%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,196,168,.35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 1rem; }
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--azure-500);
}
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 500;
}
.hero-meta-item span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin-left: auto;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-visual::after {
  content: '';
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 70%;
  height: 100%;
  background: var(--sage-100);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .6;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  background: var(--warm-white);
  padding: 16px 22px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--forest);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px rgba(74,107,74,.18);
}

/* ============================================
   Section utilities
============================================ */
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-sage  { background: var(--sage-50); }
.bg-forest{ background: var(--forest); color: var(--cream); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--warm-white); }
.bg-forest .eyebrow { color: var(--sage-300); }
.bg-forest .eyebrow::before { background: var(--sage-300); }

/* ============================================
   About / Intro Block (asymmetric)
============================================ */
.intro {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.intro-left { position: sticky; top: 110px; }
.intro-figure {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-figure img { width: 100%; height: 100%; object-fit: cover; }
.intro-body p { font-size: 1.05rem; color: var(--muted); }
.intro-body p.lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 1.8rem;
}
.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 500;
  background: var(--sage-50);
  color: var(--moss);
  border-radius: 100px;
  border: 1px solid var(--sage-100);
}

/* ============================================
   Product Section
============================================ */
.product {
  background:
    radial-gradient(ellipse at top right, rgba(136,184,196,.15), transparent 60%),
    var(--paper);
  position: relative;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}
.product-visual {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-50), var(--azure-100));
}
.product-visual::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-100), rgba(168,196,168,.4));
  filter: blur(20px);
}
.product-visual img {
  position: relative;
  z-index: 1;
  max-width: 75%;
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(20,39,28,.18));
}

.product-info h2 { margin-bottom: 1.2rem; }
.product-info > p { color: var(--muted); margin-bottom: 1.8rem; }

.product-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 18px;
}
.product-feats li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.product-feats .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.product-feats .check svg { width: 14px; height: 14px; stroke: var(--moss); }
.product-feats strong { display: block; color: var(--forest); margin-bottom: 2px; }
.product-feats span { color: var(--muted); font-size: .94rem; line-height: 1.55; }

/* ============================================
   Ingredients
============================================ */
.ingredients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.ingredient {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ingredient:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sage-100);
}
.ingredient-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-50), var(--azure-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  font-weight: 600;
}
.ingredient h3 { margin-bottom: 10px; font-size: 1.15rem; }
.ingredient p {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.6;
  flex: 1;
}

/* nudge the second card down for a less template-y rhythm */
.ingredients > :nth-child(even) { transform: translateY(20px); }
.ingredients > :nth-child(even):hover { transform: translateY(16px); }

/* ============================================
   Lifestyle / Editorial split
============================================ */
.lifestyle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--forest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--cream);
}
.lifestyle-image {
  min-height: 460px;
  background-size: cover;
  background-position: center;
}
.lifestyle-text {
  padding: clamp(36px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lifestyle-text h2 { color: var(--warm-white); }
.lifestyle-text p { color: rgba(246, 243, 236, .78); margin-bottom: 1.4rem; }
.lifestyle-text .eyebrow { color: var(--sage-300); }
.lifestyle-text .eyebrow::before { background: var(--sage-300); }

.lifestyle-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--warm-white) !important;
  border-left: 2px solid var(--sage-300);
  padding-left: 20px;
  margin-top: 2rem !important;
}

/* ============================================
   FAQ Accordion
============================================ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 56px 26px 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  color: var(--forest);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}
.faq-q::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-right: 1.5px solid var(--forest);
  border-bottom: 1.5px solid var(--forest);
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--t);
}
.faq-item.is-open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t);
  color: var(--muted);
}
.faq-a-inner { padding: 0 0 26px; font-size: 1rem; line-height: 1.7; max-width: 660px; }

/* ============================================
   CTA banner
============================================ */
.cta-banner {
  text-align: center;
  padding: clamp(50px, 7vw, 90px) var(--gutter);
  background:
    radial-gradient(ellipse at top, rgba(168,196,168,.4), transparent 65%),
    var(--cream);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cta-banner h2 { max-width: 700px; margin: 0 auto 1rem; }
.cta-banner p { max-width: 560px; margin: 0 auto 2rem; color: var(--muted); font-size: 1.05rem; }

/* ============================================
   About Page
============================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.story-grid h2 { margin-bottom: 1.4rem; }
.story-grid p { color: var(--muted); font-size: 1.02rem; }

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: clamp(40px, 5vw, 60px);
}
.value-card {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color var(--t), transform var(--t);
}
.value-card:hover { border-color: var(--moss); transform: translateY(-3px); }
.value-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--azure-500);
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.value-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.value-card p { color: var(--muted); font-size: .96rem; margin: 0; }

.philosophy {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.philosophy-image {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   Contact Page
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}
.contact-card h2 { margin-bottom: .5rem; }
.contact-card > p { color: var(--muted); margin-bottom: 2rem; }

.form-group { margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), background var(--t-fast);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--moss);
  background: var(--paper);
}
textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.error-msg {
  display: none;
  font-size: .82rem;
  color: #b14a4a;
  margin-top: 6px;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #c47272;
  background: #fdf6f5;
}
.form-group.has-error .error-msg { display: block; }

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.checkbox-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin: 3px 0 0 0;
  flex: 0 0 auto;
  accent-color: var(--moss);
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-block {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.info-block:last-child { border-bottom: none; }
.info-block .eyebrow { margin-bottom: 12px; }
.info-block h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.info-block p, .info-block a { color: var(--muted); margin: 0; font-size: .98rem; }
.info-block a:hover { color: var(--moss); }

.map-placeholder {
  margin-top: 30px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--sage-50), var(--azure-100));
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,138,154,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,138,154,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-pin-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--forest);
  border: 4px solid var(--warm-white);
  box-shadow: 0 4px 12px rgba(20,39,28,.3);
}
.map-pin-label {
  background: var(--warm-white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--forest);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

/* ============================================
   Success Page
============================================ */
.success-wrap {
  min-height: calc(100vh - 76px - 320px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(60px, 10vw, 120px) var(--gutter);
}
.success-card {
  max-width: 580px;
  text-align: center;
}
.success-icon {
  width: 88px; height: 88px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: var(--sage-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.success-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--sage-300);
  opacity: .5;
}
.success-icon svg { width: 36px; height: 36px; stroke: var(--moss); }
.success-card h1 { margin-bottom: 1rem; }
.success-card p { color: var(--muted); font-size: 1.08rem; max-width: 460px; margin: 0 auto 2.5rem; }

/* ============================================
   Legal Pages
============================================ */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.legal-header {
  margin-bottom: clamp(40px, 5vw, 60px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.legal-header .updated {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 12px;
}
.legal-content h2 {
  font-size: 1.45rem;
  margin-top: 2.4rem;
  margin-bottom: .8rem;
  color: var(--forest);
}
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.6rem;
  margin-bottom: .6rem;
  color: var(--forest);
}
.legal-content p, .legal-content li {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content ul { padding-left: 22px; margin: 0 0 1.2em; }
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--azure-500);
  border-bottom: 1px solid rgba(74,138,154,.3);
}

/* ============================================
   Page Header (sub-pages)
============================================ */
.page-header {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
  background: linear-gradient(180deg, var(--sage-50) 0%, var(--cream) 100%);
}
.page-header .container { max-width: 820px; }
.crumb {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--forest); }
.page-header h1 { margin-bottom: 1rem; }
.page-header p { font-size: 1.1rem; color: var(--muted); max-width: 620px; }

/* ============================================
   Footer
============================================ */
.site-footer {
  background: var(--forest);
  color: rgba(246,243,236,.78);
  padding: clamp(60px, 7vw, 90px) 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  margin-bottom: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--warm-white);
  margin-bottom: 18px;
}
.footer-brand .brand-mark { background: radial-gradient(circle at 30% 30%, var(--sage-300), var(--cream) 90%); }
.footer-brand .brand-mark::after { background: var(--forest); opacity: .3; }
.footer-tag {
  max-width: 280px;
  font-size: .94rem;
  line-height: 1.65;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--sage-300);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(246,243,236,.78);
  font-size: .94rem;
}
.footer-col a:hover { color: var(--warm-white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: .94rem;
}
.footer-contact span { display: block; color: var(--sage-300); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(168,196,168,.18);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(246,243,236,.56);
}
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(246,243,236,.56); font-size: .85rem; }
.footer-bottom-links a:hover { color: var(--warm-white); }

/* ============================================
   Cookie Banner
============================================ */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  flex-wrap: wrap;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.cookie-banner.is-visible {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.cookie-text {
  flex: 1;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(246,243,236,.88);
  min-width: 240px;
}
.cookie-text a { color: var(--sage-300); border-bottom: 1px solid rgba(168,196,168,.4); }
.cookie-text a:hover { color: var(--warm-white); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--t-fast);
  cursor: pointer;
}
.cookie-btn-primary {
  background: var(--cream);
  color: var(--forest);
  border: 1px solid var(--cream);
}
.cookie-btn-primary:hover { background: var(--warm-white); }
.cookie-btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246,243,236,.3);
}
.cookie-btn-secondary:hover { border-color: var(--cream); }

/* ============================================
   Reveal animations
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 100%; margin: 0; }
  .hero-visual::after { display: none; }
  .hero-badge { left: 16px; bottom: 16px; }

  .intro { grid-template-columns: 1fr; }
  .intro-left { position: static; }
  .intro-figure { aspect-ratio: 4/3; max-height: 420px; }

  .product-grid { grid-template-columns: 1fr; }
  .lifestyle { grid-template-columns: 1fr; }
  .lifestyle-image { min-height: 280px; }

  .story-grid, .philosophy, .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }

  .ingredients > :nth-child(even) { transform: none; }
  .ingredients > :nth-child(even):hover { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 30px var(--gutter);
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform var(--t);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 18px 0;
    font-size: 1.05rem;
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }

  .hero-meta { gap: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-badge { display: none; }
}
