/* =========================================================
   ΥΓΕΙΑ ΕΝΟΡΑΣΗ — Design System v3
   Direction: "Soft Rhythm" — a warm, rounded wellness-editorial
   take on the same subject (steady blood sugar through the day).
   Peach + sage duo, generous whitespace, circular day-rhythm
   dial as the signature mark, plush rounded cards instead of
   hairline data-sheets. Optimistic and human, not clinical.
   ========================================================= */

@import url("fonts.css");

:root{
  /* ---- color tokens ---- */
  --ink:        #2E2019;
  --ink-soft:   #6E5B4E;
  --paper:      #FBF2E7;
  --paper-2:    #F5E4D2;
  --card:       #FFFDF8;
  --coral:      #E8825C;
  --coral-dark: #CC6540;
  --coral-tint: #FBE1D0;
  --sage:       #7E8F5C;
  --sage-dark:  #5C6B41;
  --sage-tint:  #E9EEDC;
  --line:       #EBDCC6;
  --line-soft:  #F2E7D5;
  --danger:     #CC6540;

  /* ---- type tokens ---- */
  --f-display: 'Roboto Slab', 'Georgia', serif;
  --f-body:    'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-label:   'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px -4px rgba(46,32,25,.10);
  --shadow: 0 24px 48px -22px rgba(46,32,25,.22);
  --shadow-lg: 0 36px 70px -28px rgba(46,32,25,.26);
  --shadow-coral: 0 20px 40px -18px rgba(232,130,92,.42);
  --shadow-sage: 0 20px 40px -18px rgba(126,143,92,.34);

  --maxw: 1140px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.72;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: var(--sage-dark); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline: 3px solid var(--coral);
  outline-offset: 2px;
}

h1,h2,h3,h4{
  font-family: var(--f-display);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -.01em;
}

.wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- eyebrow / kicker ---------- */
.eyebrow{
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--coral-dark);
  display:inline-flex;
  align-items:center;
  gap: 9px;
}
.eyebrow::before{
  content:"";
  width: 17px; height: 17px;
  flex: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CC6540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 0 0-14 0c0 6.5 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-size: contain;
}
.eyebrow--sage{ color: var(--sage-dark); }
.eyebrow--sage::before{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6B41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 14c4-8 12-10 16-10-1 6-4 12-11 13-3 .4-5-1-5-3Z'/%3E%3Cpath d='M4 20c3-3 6-5 9-8'/%3E%3C/svg%3E"); }

.section{ padding: 72px 0; }
.section--tight{ padding: 40px 0; }
.section--tint{ background: var(--paper-2); }
.section--dark{ background: var(--ink); color: #F3ECE2; }
.section--dark h2, .section--dark h3{ color: #FFFAF3; }
.section--paper2{ background: var(--paper-2); position: relative; overflow:hidden; }
.section--paper2::before{
  content:"";
  position:absolute; right:-120px; top:-160px; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,130,92,.16), transparent 70%);
  pointer-events:none;
}
.section--paper2::after{
  content:"";
  position:absolute; left:-140px; bottom:-180px; width:420px; height:420px; border-radius:50%;
  background: radial-gradient(circle, rgba(126,143,92,.14), transparent 70%);
  pointer-events:none;
}
.section--paper2 .wrap{ position:relative; }

.divider{
  height:1px; border:0;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  margin: 0;
}

/* ---------- skip link ---------- */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--ink); color:#fff; padding: 12px 18px;
  z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus{ left:0; top:0; }

/* ============== MASTHEAD ============== */
.topbar{
  background: var(--ink);
  color: #E9D9C8;
  font-family: var(--f-label);
  font-size: 13px;
}
.topbar .wrap{
  display:flex; justify-content:space-between; align-items:center;
  padding-top: 9px; padding-bottom: 9px;
  gap: 12px; flex-wrap: wrap;
}
.topbar a{ color:#FBEDDE; text-decoration: underline; text-underline-offset: 2px; }

.masthead{
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.masthead .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 20px; padding-bottom: 20px;
  gap: 20px;
}
.brand{
  display:flex; align-items:baseline; gap:10px; text-decoration:none; color:var(--ink);
}
.brand__mark{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -.01em;
  display:flex; align-items:baseline;
}
.brand__mark .accent{ color: var(--coral-dark); font-style: italic; font-weight:400; }
.brand__tag{
  font-family: var(--f-label);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 10px;
  display:none;
}
@media (min-width: 640px){ .brand__tag{ display:block; } }

.mast-nav{ display:none; gap: 26px; font-family: var(--f-label); font-size: 14px; font-weight:600; }
.mast-nav a{ color: var(--ink-soft); text-decoration:none; }
.mast-nav a:hover{ color: var(--coral-dark); }
@media (min-width: 860px){ .mast-nav{ display:flex; } }

.mast-cta{
  font-family: var(--f-label);
  font-weight:700; font-size: 13.5px; letter-spacing:.01em;
  background: var(--coral); color:#fff; text-decoration:none;
  padding: 11px 20px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-coral);
  transition: background .15s, transform .12s;
}
.mast-cta:hover{ background: var(--coral-dark); transform: translateY(-1px); }

/* Advertorial disclosure ribbon — kept unmissable, not buried */
.adv-ribbon{
  background: #3A2B20;
  color: #F3E6D6;
}
.adv-ribbon .wrap{
  display:flex; align-items:center; gap: 10px;
  padding: 9px 24px;
  font-family: var(--f-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  flex-wrap: wrap;
}
.adv-ribbon .dot{
  width:7px; height:7px; border-radius:50%; background: var(--coral); flex:none;
}

/* ============== HERO — full-bleed cover ============== */
.hero-cover{
  position: relative;
  min-height: 78vh;
  display:flex; align-items:flex-end;
  overflow:hidden;
  color: #fff;
}
.hero-cover__media{ position:absolute; inset:0; z-index:0; }
.hero-cover__media img{ width:100%; height:100%; object-fit:cover; object-position: center 30%; }
.hero-cover__scrim{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(0deg, rgba(24,16,11,.86) 0%, rgba(24,16,11,.55) 42%, rgba(24,16,11,.12) 75%, rgba(24,16,11,.05) 100%);
}
.hero-cover__content{ position:relative; z-index:2; padding: 60px 24px 46px; }
.hero-cover .eyebrow{ color: #F7C3A2; margin-bottom: 16px; }
.hero-cover .eyebrow::before{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F7C3A2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 0 0-14 0c0 6.5 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E"); }
.hero-cover h1{
  color:#fff; font-size: clamp(30px, 5vw, 50px); max-width: 20ch; font-weight:700;
}
.hero-cover__lede{
  font-size: 19px; font-family: var(--f-display); font-style: italic; font-weight:400;
  color: #EFE3D5; max-width: 56ch; margin: 18px 0 0; line-height:1.55;
}

.hero-stats{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.hero-stat{
  background: var(--card); padding: 22px 26px; display:flex; align-items:center; gap:14px;
}
.hero-stat__num{ font-family: var(--f-display); font-weight:700; font-size: 26px; color: var(--coral-dark); flex:none; }
.hero-stat__label{ font-family: var(--f-label); font-size: 13px; color: var(--ink-soft); line-height:1.35; }

/* ============== STORYLINE — connected narrative spine ============== */
.storyline{ position:relative; padding: 8px 0 8px; }
.storyline__line{
  position:absolute; left: 23px; top: 12px; bottom: 60px; width:2px;
  background: linear-gradient(180deg, var(--coral), var(--sage) 60%, var(--sage) 100%);
  opacity:.35;
}
@media (min-width: 640px){ .storyline__line{ left: 27px; } }
.story-step{ position:relative; padding: 46px 0 46px 64px; }
@media (min-width: 640px){ .story-step{ padding-left: 76px; } }
.story-step:first-child{ padding-top: 16px; }
.story-step__marker{
  position:absolute; left: 0; top: 50px;
  width: 46px; height:46px; border-radius:50%;
  background: var(--card); border: 2px solid var(--coral);
  color: var(--coral-dark);
  font-family: var(--f-display); font-weight:700; font-size: 18px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm); z-index:1;
}
@media (min-width: 640px){ .story-step__marker{ width:54px; height:54px; font-size:20px; } }
.story-step:first-child .story-step__marker{ top: 16px; }
.story-step__marker--sage{ border-color: var(--sage); color: var(--sage-dark); }
.story-step__content--narrow{ max-width: 640px; }

/* ============== ARTICLE PROSE ============== */
.prose{ max-width: 74ch; }
.prose p{ margin: 0 0 1.15em; color: var(--ink-soft); }
.prose h2{ font-size: clamp(22px,3vw,30px); margin-top: 1.6em; }
.prose h3{ font-size: 19px; margin-top:1.4em; }
.prose strong{ color: var(--ink); }

.byline{
  display:flex; align-items:center; gap: 10px;
  font-family: var(--f-label); font-size: 13px; color: var(--ink-soft);
  margin: 6px 0 28px;
}
.byline__avatar{
  width: 36px; height:36px; border-radius:50%;
  background: var(--sage-dark); color:#fff; display:flex; align-items:center; justify-content:center;
  font-family: var(--f-display); font-weight:700; font-size:14px; flex:none;
}

/* ============== PILLAR CARDS (fiber / protein / fat) — asymmetric bento ============== */
.pillars{
  display:grid; gap: 20px;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-rows: 1fr;
  margin: 34px 0 6px;
}
@media (max-width: 720px){ .pillars{ grid-template-columns: 1fr; } }
.pillar{
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display:flex; flex-direction:column;
}
.pillar:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar--featured{ grid-row: 1 / 3; }
@media (max-width: 720px){ .pillar--featured{ grid-row:auto; } }
.pillar__img{ aspect-ratio: 16/11; overflow:hidden; margin: 10px 10px 0; border-radius: calc(var(--radius-lg) - 8px); }
.pillar--featured .pillar__img{ aspect-ratio: 4/3; }
.pillar__img img{ width:100%; height:100%; object-fit:cover; }
.pillar__body{ padding: 18px 22px 26px; flex:1; }
.pillar__num{
  font-family: var(--f-label); font-size:12px; font-weight:700; letter-spacing:.02em;
  color: var(--sage-dark);
  display:inline-block; background: var(--sage-tint); padding: 3px 12px; border-radius: 999px;
}
.pillar h3{ font-size: 18.5px; margin: 12px 0 8px; }
.pillar p{ color: var(--ink-soft); font-size: 15px; margin:0; }

/* ============== PRODUCT INTRO CALLOUT ============== */
.callout{
  display:grid; gap: 32px;
  background: #33261D;
  color: #F4EBDF;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 820px){
  .callout{ grid-template-columns: .8fr 1.2fr; align-items:center; padding: 14px; }
}
.callout__figure{ border-radius: calc(var(--radius-lg) - 6px); overflow:hidden; }
.callout__figure img{ width:100%; height:100%; object-fit:cover; }
.callout__body{ padding: 22px 22px 30px; }
@media (min-width: 820px){ .callout__body{ padding: 30px 34px 30px 10px; } }
.callout .eyebrow{ color: #F0B594; }
.callout .eyebrow::before{ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0B594' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 0 0-14 0c0 6.5 7 11 7 11Z'/%3E%3Ccircle cx='12' cy='10' r='2.6'/%3E%3C/svg%3E"); }
.callout h2{ color:#fff; font-size: clamp(22px,3vw,28px); }
.callout p{ color: #E3D6C7; }
.callout p strong{ color:#fff; }

/* ============== DOSSIER (signature ingredient cards) ============== */
.dossier-intro{ max-width: 70ch; }
.dossier{
  display:grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  margin-top: 34px;
}
.specimen{
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.specimen__tag{
  position:absolute; top: 20px; right: 20px;
  background: var(--coral-tint); color: var(--coral-dark);
  font-family: var(--f-label); font-size: 11.5px; font-weight:700;
  padding: 4px 11px;
  border-radius: 999px;
}
.specimen__icon{ width: 38px; height:38px; color: var(--sage-dark); margin-bottom: 12px; }
.specimen__latin{
  font-family: var(--f-display); font-style: italic; font-size: 13px;
  color: var(--ink-soft); display:block; margin-bottom: 4px;
}
.specimen h4{ font-family: var(--f-display); font-size: 19px; margin: 0 0 8px; padding-right:56px; }
.specimen p{ font-size: 14.5px; color: var(--ink-soft); margin:0; }

.spectrum{
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display:grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}
.spectrum__item{ display:flex; gap: 12px; }
.spectrum__item b{ font-family: var(--f-display); display:block; font-size:15px; margin-bottom:2px; }
.spectrum__item p{ margin:0; font-size:14px; color: var(--ink-soft); }
.spectrum__bullet{
  flex:none; width:9px; height:9px; border-radius:50%; margin-top: 8px;
  background: var(--coral);
}

/* ============== TESTIMONIAL ============== */
.testimonial{
  display:grid; gap: 26px;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  margin-bottom: 30px;
}
@media (min-width: 620px){
  .testimonial{ grid-template-columns: 160px 1fr; align-items:center; padding: 22px 30px 22px 22px; }
}
.testimonial__figure{ border-radius: var(--radius); overflow:hidden; aspect-ratio: 1/1; }
@media (min-width: 620px){ .testimonial__figure{ width:160px; height:160px; aspect-ratio:auto; } }
.testimonial__figure img{ width:100%; height:100%; object-fit:cover; }
.testimonial__quote{
  font-family: var(--f-display); font-style: italic; font-size: 17.5px; line-height:1.6;
  color: var(--ink); margin: 0 0 12px;
}
.testimonial__meta{ display:flex; flex-direction:column; font-family: var(--f-label); font-size: 12.5px; }
.testimonial__meta strong{ font-size: 14px; color: var(--ink); }
.testimonial__meta span{ color: var(--ink-soft); margin-top: 2px; }

/* ============== PULL QUOTE ============== */
.pullquote{
  max-width: 74ch; margin: 0 auto;
  font-family: var(--f-display);
  font-size: clamp(21px, 2.8vw, 27px);
  line-height: 1.55;
  color: var(--ink);
  position:relative;
  padding: 8px 0 8px 34px;
  border-left: 4px solid var(--sage);
  font-style: italic;
  font-weight: 400;
}
.pullquote footer{
  margin-top: 18px;
  font-family: var(--f-label);
  font-style:normal;
  font-size: 13px;
  letter-spacing:.02em;
  color: var(--ink-soft);
}

/* ============== STEPS (real sequence — brewing method) ============== */
.steps{
  display:grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  counter-reset: step;
}
.step{
  background: var(--card); border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.step__num{
  width:40px; height:40px; border-radius:50%;
  background: var(--coral-tint); color: var(--coral-dark);
  font-family: var(--f-display); font-weight:700; font-size: 17px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 14px;
}
.step h3{ font-size:16.5px; margin:0 0 6px; }
.step p{ margin:0; font-size:14.5px; color: var(--ink-soft); }

/* ============== OFFER CARD ============== */
.offer{
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
  max-width: 620px;
  margin: 0 auto;
  text-align:center;
}
.offer__badge{
  display:inline-block;
  background: var(--sage-tint); color: var(--sage-dark);
  font-family: var(--f-label); font-size: 12.5px; font-weight:700; letter-spacing:.02em;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 20px;
}
.offer__price-row{
  display:flex; align-items:baseline; justify-content:center; gap: 14px; flex-wrap:wrap;
  margin: 6px 0 4px;
}
.offer__was{
  font-family: var(--f-label); text-decoration: line-through; color: var(--ink-soft); font-size: 18px;
}
.offer__now{
  font-family: var(--f-display); font-weight:700; font-size: 48px; color: var(--coral-dark);
}
.offer__now sup{ font-size: 20px; }
.offer__save{
  font-family: var(--f-label); font-size:12.5px; font-weight:700; color:#fff;
  background: var(--sage-dark); padding: 5px 12px; border-radius: 999px;
}
.offer__note{ color: var(--ink-soft); font-size: 14.5px; margin: 16px 0 22px; }
.offer__points{
  display:grid; gap: 12px; text-align:left;
  grid-template-columns: repeat(auto-fit,minmax(170px,1fr));
  margin: 18px 0 0; padding-top: 20px; border-top: 1px solid var(--line-soft);
}
.offer__point{ display:flex; gap:8px; font-size: 13.5px; color: var(--ink-soft); align-items:flex-start; }
.offer__point svg{ flex:none; width:18px; height:18px; color: var(--sage-dark); margin-top:1px; }

/* ============== ORDER FORM (order-slip styling) ============== */
.order{
  display:grid; gap: 36px;
}
@media (min-width: 940px){ .order{ grid-template-columns: .9fr 1.1fr; align-items:start; } }

.order-slip{
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.order-slip__head{
  background: #33261D; color:#fff;
  padding: 22px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
}
.order-slip__head h2{ color:#fff; font-size: 19px; margin:0; }
.order-slip__head span{
  font-family: var(--f-label); font-size:11.5px; letter-spacing:.03em;
  color:#F0B594;
}
.order-slip__body{ padding: 28px; }

.form-group{ margin-bottom: 16px; }
.form-row{ display:grid; gap: 16px; grid-template-columns: 1fr 1fr; }
label{
  display:block; font-family: var(--f-label); font-size: 13px; font-weight:700;
  color: var(--ink); margin-bottom: 6px;
}
input[type=text], input[type=tel], input[type=email], textarea{
  width:100%; font-family: var(--f-body); font-size: 15.5px; color: var(--ink);
  padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus{
  border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,130,92,.16); outline:none;
}
textarea{ resize: vertical; min-height: 78px; }

.checkbox-group{ margin: 18px 0; display:grid; gap:12px; }
.checkbox-label{
  display:flex; gap:10px; align-items:flex-start; font-size: 13.5px; color: var(--ink-soft);
  font-family: var(--f-body); font-weight:400;
}
.checkbox-label input{ margin-top:3px; flex:none; width:16px; height:16px; accent-color: var(--coral); }
.checkbox-label a{ color: var(--sage-dark); text-decoration: underline; }

.submit-btn{
  width:100%; font-family: var(--f-label); font-weight:800; letter-spacing:.01em;
  font-size: 15.5px; color:#fff; background: var(--coral);
  border:0; padding: 17px 20px; border-radius: 999px; cursor:pointer;
  box-shadow: var(--shadow-coral);
  transition: background .15s, transform .1s;
}
.submit-btn:hover{ background: var(--coral-dark); }
.submit-btn:active{ transform: translateY(1px); }

.order-trust{
  display:flex; flex-wrap:wrap; gap: 10px 20px;
  margin-top: 18px; padding-top:18px; border-top:1px dashed var(--line);
  font-family: var(--f-label); font-size: 12px; color: var(--ink-soft);
}
.order-trust span{ display:flex; align-items:center; gap:6px; }
.order-trust svg{ width:15px; height:15px; color: var(--sage-dark); }

.order-aside .eyebrow{ margin-bottom: 14px; }
.order-aside__list{ list-style:none; margin: 14px 0 0; padding:0; display:grid; gap:16px; }
.order-aside__list li{ display:flex; gap:12px; }
.order-aside__list li svg{ flex:none; width:22px; height:22px; color: var(--coral-dark); margin-top:2px; }
.order-aside__list b{ display:block; font-family: var(--f-display); font-size:15px; }
.order-aside__list p{ margin:2px 0 0; font-size:13.5px; color: var(--ink-soft); }

.supply-note{
  font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--line);
  margin-top: 26px; padding-top: 16px; font-style: italic;
}

/* ============== FOOTER ============== */
.site-footer{ background: #241A13; color: #C9B8A6; }
.site-footer a{ color: #F0DFCC; }
.footer-top{ padding: 48px 0 30px; }
.footer-grid{
  display:grid; gap: 30px;
  grid-template-columns: 1.3fr 1fr 1fr;
}
@media (max-width: 720px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ font-family: var(--f-display); color:#fff; font-size: 21px; font-weight:700; }
.footer-col h5{
  font-family: var(--f-label); letter-spacing:.03em; font-size:12px;
  color:#9C8975; margin: 0 0 14px; text-transform:uppercase;
}
.footer-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:10px; font-size:14px; }
.footer-legal{
  font-size: 12.5px; line-height:1.8; color:#9C8975; padding-top: 24px; border-top: 1px solid #3B2C21;
}
.footer-legal p{ margin: 0 0 12px; }
.footer-legal h6{
  color:#C2B09C; font-family: var(--f-label); font-size:12px; letter-spacing:.03em; text-transform:uppercase; margin:18px 0 6px;
}
.sources-list{ margin:0; padding-left: 18px; }
.sources-list li{ margin-bottom: 5px; }
.footer-bottom{
  border-top: 1px solid #3B2C21; padding: 18px 0; font-size:12.5px; color:#9C8975;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}

/* ============== SIMPLE PAGES (contact/thankyou/privacy/terms) ============== */
.page-hero{ padding: 48px 0 10px; }
.page-hero h1{ font-size: clamp(28px,4vw,38px); }
.simple-card{
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 36px;
}
.legal h2{ font-size: 18.5px; padding-bottom:10px; border-bottom: 1px solid var(--line-soft); margin-top: 1.7em;}
.legal p, .legal li{ color: var(--ink-soft); }
.legal table{ width:100%; border-collapse: collapse; margin: 14px 0; font-size:14.5px; }
.legal th, .legal td{ text-align:left; padding: 10px 12px; border: 1px solid var(--line-soft); }
.legal th{ background: var(--paper-2); font-family: var(--f-label); font-size:12px; letter-spacing:.02em; }
.table-container{ overflow-x:auto; -webkit-overflow-scrolling: touch; }

.contact-grid{ display:grid; gap: 24px; grid-template-columns: 1.1fr .9fr; }
@media (max-width: 760px){ .contact-grid{ grid-template-columns: 1fr; } }
.info-card{ background: var(--sage-tint); border-radius: var(--radius-lg); padding: 28px; }
.info-card h3{ font-size:16px; }
.info-card dl{ margin:0; }
.info-card dt{ font-family: var(--f-label); font-size:11px; letter-spacing:.03em; text-transform:uppercase; color: var(--ink-soft); margin-top:14px; }
.info-card dd{ margin:2px 0 0; font-size:15px; }

.thankyou{ text-align:center; padding: 74px 0 92px; }
.thankyou__badge{
  width:76px; height:76px; border-radius:50%; background: var(--coral); color:#fff;
  display:flex; align-items:center; justify-content:center; margin: 0 auto 24px;
  box-shadow: var(--shadow-coral);
}
.thankyou h1{ font-size: clamp(26px,4vw,34px); }
.thankyou p{ color: var(--ink-soft); max-width: 52ch; margin: 12px auto 0; }
.thankyou .mast-cta{ margin-top: 28px; display:inline-block; }

/* mobile nav */
.nav-toggle{
  display:flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius: 50%; border:1px solid var(--line);
  background: var(--card); cursor:pointer;
}
@media (min-width: 860px){ .nav-toggle{ display:none; } }
.mobile-menu{
  display:none; flex-direction:column; gap:2px;
  background: var(--paper); border-top:1px solid var(--line);
}
.mobile-menu.open{ display:flex; }
.mobile-menu a{
  padding: 14px 24px; font-family: var(--f-label); font-weight:600; font-size:14.5px;
  color: var(--ink); text-decoration:none; border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 860px){ .mobile-menu{ display:none !important; } }

.reveal{ opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }
