/*
Theme Name: elvnelvn
Theme URI: https://elvnelvn.in
Description: Premium Clean-Label Ice Cream Brand
Version: 2.0
*/

/* Plus Jakarta Sans — primary typeface */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/*
  Delauney Regular — decorative display typeface
  Self-host at: /wp-content/themes/elvnelvn-theme/fonts/Delauney-Regular.woff2
  Falls back to Georgia until the file is added.
*/
@font-face {
  font-family: 'Delauney';
  src: url('fonts/Delauney-Regular.woff2') format('woff2'),
       url('fonts/Delauney-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  /* Brand primary palette */
  --creme:        #FFFCF0;
  --chocolate:    #3F1600;
  --dark-choc:    #1E130E;

  /* Brand secondary palette */
  --wish:      #E39FFF;   /* purple  */
  --melt:      #FF85AE;   /* pink    */
  --stardust:  #FFD41F;   /* yellow  */
  --dream:     #88FFE8;   /* teal    */
  --mystic:    #63A464;   /* green   */

  /* Semantic */
  --bg:          #1E130E;
  --bg-surface:  #241510;
  --bg-card:     #2e1b12;
  --border:      #3a2518;
  --text:        #FFFCF0;
  --text-muted:  #8a7a70;
  --text-dim:    #5a4a40;
  --accent:      #E39FFF;
  --accent-lite: #eda7ff;
  --white:       #ffffff;
  --serif:       'Delauney', Georgia, serif;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --radius:      4px;
  --max:         1200px;
  --sticky-h:    48px;
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: 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(52px, 7vw, 100px); }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 26px); }
p  { font-size: clamp(15px, 1.1vw, 17px); color: var(--text-muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section    { padding: 120px 0; }
.section-sm { padding: 80px 0; }

/* ─── BRAND MARK (NUMBER LOGO) ──────────────────────────── */
.brand-mark {
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  position: relative;
  top: -0.05em;
}
.hero-number-mark {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 24px;
  object-fit: contain;
}

/* ─── IMAGE PLACEHOLDER ──────────────────────────────────── */
.img-ph {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(227,159,255,0.04) 100%);
}
.img-ph svg { opacity: 0.25; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--stardust);
  color: var(--dark-choc);
  border-color: var(--stardust);
}
.btn-primary:hover { background: #ffe84a; border-color: #ffe84a; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  padding: 14px 32px;
}
.btn-ghost:hover { background: var(--accent); color: var(--bg); }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(30,19,14,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-logo-link { display: flex; align-items: center; }
.site-logo-img  { height: 180px; width: auto; display: block; object-fit: contain; }
.footer-logo-img { height: 160px; width: auto; display: block; object-fit: contain; margin-bottom: 16px; }
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--text); }
.nav-cta { color: var(--accent) !important; border-bottom: 1px solid var(--accent); padding-bottom: 2px; }
.nav-game { color: #00d9ff !important; border: 1px solid #00d9ff; border-radius: 20px; padding: 6px 14px !important; font-weight: 600 !important; transition: all 0.3s; }
.nav-game:hover { background: #00d9ff; color: #0a0e27 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  padding: 48px 40px;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--text);
}
.mobile-nav.open { display: flex; }

/* ─── STICKY BOTTOM STRIP ────────────────────────────────── */
.trust-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--sticky-h);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
}
.trust-bar span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-bar span strong { color: var(--accent); }
.trust-bar .sep { color: var(--text-dim); font-size: 16px; line-height: 1; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero-text {
  padding: 80px 60px 80px 40px;
  max-width: 640px;
}
.hero-text h1 { margin-bottom: 28px; }
.hero-text .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.hero-trust span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}
.hero-trust span strong { color: var(--accent); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hero-image .img-ph { height: 100%; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── PROBLEM SECTION ────────────────────────────────────── */
.section-problem {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-image { height: 480px; border-radius: var(--radius); overflow: hidden; }
.problem-image .img-ph { height: 100%; border-radius: var(--radius); }
.problem-text h2 { margin-bottom: 32px; }
.problem-text p { margin-bottom: 20px; }
.problem-text p:last-of-type { color: var(--text); font-style: italic; }

/* ─── DIFFERENCE SECTION ─────────────────────────────────── */
.diff-heading { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 36px;
}
.diff-card .zero {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.diff-card h4 { margin-bottom: 16px; font-size: 18px; }
.diff-card p { font-size: 14px; }
.diff-footer {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.diff-footer p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
}

/* ─── RANGES SECTION ─────────────────────────────────────── */
.section-ranges { background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ranges-heading { text-align: center; margin-bottom: 80px; }
.range-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2px;
  overflow: hidden;
}
.range-block.reverse { direction: rtl; }
.range-block.reverse > * { direction: ltr; }
.range-image { height: 560px; }
.range-image .img-ph { height: 100%; }
.range-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.range-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.range-text h3 { margin-bottom: 24px; }
.range-text p { margin-bottom: 16px; }
.range-attrs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}
.range-attrs span {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ─── INGREDIENT TRANSPARENCY ────────────────────────────── */
.ingr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ingr-text h2 { margin-bottom: 28px; }
.ingr-text .big-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.5;
}
.ingr-text p { margin-bottom: 16px; }
.ingr-text p.highlight { color: var(--text); }
.ingr-image { height: 500px; border-radius: var(--radius); overflow: hidden; }
.ingr-image .img-ph { height: 100%; }

/* ─── BRAND SCALE ────────────────────────────────────────── */
.section-scale { text-align: center; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.scale-inner { max-width: 720px; margin: 0 auto; }
.scale-inner h2 { margin-bottom: 28px; }
.scale-inner p { font-size: clamp(16px, 1.3vw, 19px); margin-bottom: 16px; }

/* ─── B2B SECTION ────────────────────────────────────────── */
.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b2b-text h2 { margin-bottom: 20px; }
.b2b-text p { margin-bottom: 36px; }
.b2b-btns { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
.b2b-btns .btn { text-align: center; width: 100%; }
.b2b-image { height: 440px; border-radius: var(--radius); overflow: hidden; }
.b2b-image .img-ph { height: 100%; }

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding-top: 72px;
  padding-bottom: 0;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg .img-ph { height: 100%; }
.page-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,19,14,0.97) 0%, rgba(30,19,14,0.55) 60%, rgba(30,19,14,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 { margin-bottom: 20px; }
.page-hero-content .lead { max-width: 600px; font-size: clamp(16px, 1.3vw, 19px); }

/* ─── PRODUCT PAGE ───────────────────────────────────────── */
.product-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.product-intro .zero-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 36px 0 48px;
  flex-wrap: wrap;
}
.product-intro .zero-row .zero-item {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.product-intro .zero-row .zero-item small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.range-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
.range-section:last-child { border-bottom: none; }
.range-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.range-section-inner.flip { direction: rtl; }
.range-section-inner.flip > * { direction: ltr; }
.range-main-image { height: 600px; border-radius: var(--radius); overflow: hidden; }
.range-main-image .img-ph { height: 100%; }
.range-detail {}
.range-detail h2 { margin-bottom: 12px; }
.range-detail .range-label { margin-bottom: 20px; }
.range-detail .copy { margin-bottom: 20px; }
.attrs-list {
  list-style: none;
  margin: 28px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.attrs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.attrs-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.flavours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.flavour-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.flavour-img { height: 220px; }
.flavour-img .img-ph { height: 100%; }
.flavour-info { padding: 24px; }
.flavour-info h4 { margin-bottom: 8px; font-size: 18px; }
.flavour-info p { font-size: 13px; }

/* ─── INGREDIENTS PAGE ───────────────────────────────────── */
.ingr-page { }
.ingr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 80px;
}
.ingr-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 64px 56px;
}
.ingr-panel h3 { margin-bottom: 36px; }
.dont-list, .do-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dont-list li, .do-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.dont-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-dim); }
.do-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }

.ingr-sugar-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 72px 80px;
  text-align: center;
  margin-bottom: 80px;
}
.ingr-sugar-section h2 { margin-bottom: 28px; }
.ingr-sugar-section p { max-width: 640px; margin: 0 auto 16px; }

.ingr-visual { height: 400px; border-radius: var(--radius); overflow: hidden; margin-bottom: 80px; }
.ingr-visual .img-ph { height: 100%; }

/* ─── STORY PAGE ─────────────────────────────────────────── */
.story-section { }
.story-pull {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.story-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.story-body-text p { margin-bottom: 20px; font-size: 16px; }
.story-body-text p.large {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--text);
  font-style: italic;
  line-height: 1.5;
}
.story-image { height: 560px; border-radius: var(--radius); overflow: hidden; }
.story-image .img-ph { height: 100%; }
.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.story-pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}
.story-pillar .city {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
}
.story-pillar p { font-size: 14px; }

/* ─── WHERE TO BUY ───────────────────────────────────────── */
.buy-intro { text-align: center; max-width: 600px; margin: 0 auto 80px; }
.buy-intro h2 { margin-bottom: 20px; }
.stockist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}
.stockist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.stockist-card .img-ph {
  width: 100%;
  height: 60px;
  border: none;
  background: transparent;
}
.stockist-card .placeholder-text { font-size: 11px; color: var(--text-dim); text-align: center; text-transform: uppercase; letter-spacing: 0.1em; }
.buy-coming {
  text-align: center;
  padding: 64px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
}
.buy-coming h3 { margin-bottom: 16px; }

/* ─── PARTNER PAGE ───────────────────────────────────────── */
.partner-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}
.partner-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 56px 44px;
}
.partner-block .icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
}
.partner-block h3 { margin-bottom: 20px; font-size: 22px; }
.partner-block p { margin-bottom: 12px; font-size: 14px; }
.partner-offer {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-offer li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.partner-offer li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }

.partner-form-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 80px;
}
.partner-form-section h2 { margin-bottom: 12px; }
.partner-form-section .sub { margin-bottom: 48px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--bg-card); }
.form-full { grid-column: 1 / -1; }
.form-submit { margin-top: 8px; }

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info h2 { margin-bottom: 40px; }
.contact-item {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.contact-item a, .contact-item p { font-size: 16px; color: var(--text); }
.social-links { display: flex; gap: 16px; margin-top: 8px; }
.social-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: all 0.2s;
}
.social-links a:hover { color: var(--accent); border-color: var(--accent); }
.contact-form-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 56px;
}
.contact-form-wrap h3 { margin-bottom: 36px; font-size: 26px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
  margin-bottom: var(--sticky-h);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.footer-brand .logo { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 16px; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ─── SECTION DIVIDERS ───────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 28px 0;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .flavours-grid { grid-template-columns: repeat(2, 1fr); }
  .stockist-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-bar { gap: 20px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 24px; }
  .hero-image { height: 320px; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-image { height: 300px; }
  .diff-grid { grid-template-columns: 1fr; }
  .range-block { grid-template-columns: 1fr; }
  .range-block.reverse { direction: ltr; }
  .range-image { height: 300px; }
  .range-text { padding: 48px 32px; }
  .ingr-inner { grid-template-columns: 1fr; }
  .ingr-image { height: 300px; }
  .b2b-inner { grid-template-columns: 1fr; }
  .b2b-image { height: 280px; }
  .range-section-inner { grid-template-columns: 1fr; }
  .range-section-inner.flip { direction: ltr; }
  .range-main-image { height: 320px; }
  .flavours-grid { grid-template-columns: 1fr; }
  .ingr-split { grid-template-columns: 1fr; }
  .ingr-sugar-section { padding: 48px 32px; }
  .story-body { grid-template-columns: 1fr; }
  .story-pillars { grid-template-columns: 1fr; }
  .story-image { height: 320px; }
  .stockist-grid { grid-template-columns: 1fr 1fr; }
  .partner-blocks { grid-template-columns: 1fr; }
  .partner-form-section { padding: 48px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .trust-bar { gap: 12px; padding: 0 16px; }
  .trust-bar span { font-size: 9px; letter-spacing: 0.08em; }
  .trust-bar .sep { display: none; }
  .page-hero-content { padding: 60px 24px; }
}

/* ─── PRIVACY POLICY ─────────────────────────────────────── */
.privacy-wrap { max-width: 820px; }
.privacy-meta {
  display: flex; flex-wrap: wrap; gap: 8px 32px;
  padding: 20px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  margin-bottom: 48px;
}
.privacy-meta p { font-size: 13px; color: var(--text-muted); margin: 0; }
.privacy-meta strong { color: var(--text); }
.privacy-intro {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.privacy-intro p { font-size: 16px; line-height: 1.8; color: var(--text-muted); }
.privacy-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child { border-bottom: none; }
.privacy-section h2 {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400; color: var(--text);
  margin-bottom: 20px; line-height: 1.2;
}
.privacy-section h3 {
  font-family: var(--sans); font-size: 14px;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin: 28px 0 14px;
}
.privacy-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { list-style: none; margin: 12px 0; display: flex; flex-direction: column; gap: 10px; }
.privacy-section ul li {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  padding-left: 22px; position: relative;
}
.privacy-section ul li::before {
  content: '—'; position: absolute; left: 0; color: var(--text-dim);
}
.privacy-section a { color: var(--accent); border-bottom: 1px solid rgba(227,159,255,0.3); transition: border-color 0.2s; }
.privacy-section a:hover { border-color: var(--accent); }
.privacy-section strong { color: var(--text); font-weight: 600; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-text h2 { margin-bottom: 12px; }
.newsletter-text p  { color: var(--text-muted); }
.newsletter-fields {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.newsletter-fields input {
  flex: 1;
  min-width: 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-fields input:focus { border-color: var(--accent); }
.newsletter-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
}
@media(max-width:768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .newsletter-fields { flex-direction: column; }
  .newsletter-fields input { min-width: 100%; }
}

/* ─── SOCIAL FOLLOW BAR ──────────────────────────────────── */
.social-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.social-bar-text .eyebrow { margin-bottom: 8px; }
.social-bar-text p { color: var(--text-muted); font-size: 15px; }
.social-bar-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  background: var(--bg-surface);
  min-width: 220px;
}
.social-btn:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  color: var(--accent);
}
.social-btn svg { flex-shrink: 0; opacity: 0.8; }
.social-btn:hover svg { opacity: 1; }
.social-btn-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.social-platform {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.social-handle {
  font-size: 15px;
  font-family: var(--serif);
  color: var(--text);
}
.social-btn:hover .social-handle { color: var(--accent); }
@media(max-width:1024px) {
  .social-bar-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
}
@media(max-width:600px) {
  .social-bar-links { flex-direction: column; width: 100%; }
  .social-btn { min-width: unset; width: 100%; }
}
