/* ============================================================
   HEALTH YOURSELF · Design System v2 (Magazine Edition)
   Matched against her actual live site visual language.
   ============================================================ */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

/* TOKENS — sampled from her live site */
:root {
  --bg:           #fbfaf6;      /* bright clean cream */
  --bg-alt:       #f4efe5;
  --mint:         #b5dcd3;      /* the signature mint ribbon */
  --mint-deep:    #8cc4b8;
  --mint-pale:    #e2f0ec;
  --coral:        #e8804e;      /* the YOURSELF orange / CTA coral */
  --coral-deep:   #c46535;
  --coral-pale:   #fbe6d8;
  --gold:         #b89b5e;
  --gold-deep:    #8a7340;
  --charcoal:     #2d2d2d;
  --ink:          #3a3a3a;
  --muted:        #6b6259;
  --soft:         #9a9285;
  --line:         #e7e1d2;
  --line-soft:    #f0ebdd;
  --leaf:         #607a5a;     /* deep green for accents */
  --white:        #ffffff;

  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 2px 8px rgba(45, 45, 45, 0.04);
  --shadow-md:  0 8px 32px rgba(45, 45, 45, 0.08);
  --shadow-lg:  0 16px 60px rgba(45, 45, 45, 0.14);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.75rem, 6.5vw, 5.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; }
h3 { font-size: clamp(1.4rem, 2.3vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 500; }
.italic { font-style: italic; }
.coral { color: var(--coral); }
.mint  { color: var(--mint-deep); }
.gold  { color: var(--gold); }
.leaf  { color: var(--leaf); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--coral);
}
.eyebrow.mint { color: var(--mint-deep); }
.eyebrow.gold { color: var(--gold-deep); }
.eyebrow.cream { color: rgba(251, 250, 246, 0.7); }

p { margin-bottom: 1em; font-size: 1rem; color: var(--ink); }
p.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--muted);
}

strong { color: var(--charcoal); font-weight: 600; }
em { font-style: italic; }

/* CONTAINERS */
.container { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 36px; }
.container-wide { max-width: 1480px; margin: 0 auto; padding: 0 36px; }

/* NAV — white, clean, generous spacing */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:hover { color: var(--coral); }
.nav-menu a.has-sub::after { content: ' ▾'; font-size: 0.6em; color: var(--coral); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  gap: 12px;
  white-space: nowrap;
}
.btn-coral {
  background: var(--coral);
  color: white;
  box-shadow: 0 4px 14px rgba(232, 128, 78, 0.25);
}
.btn-coral:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 128, 78, 0.35);
}
.btn-ghost-charcoal {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-ghost-charcoal:hover { background: var(--charcoal); color: white; }
.btn-ghost-cream {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.7);
}
.btn-ghost-cream:hover { background: white; color: var(--charcoal); border-color: white; }
.btn-lg { padding: 18px 40px; font-size: 0.9rem; }
.btn-sm { padding: 10px 22px; font-size: 0.78rem; }

.arrow::after { content: ' →'; transition: transform 0.25s; }
.btn:hover .arrow::after { transform: translateX(5px); }

/* PREVIEW RIBBON */
.preview-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 200;
}
body { padding-top: 80px; }

/* ═══════════════════════ HERO — kitchen scene full bleed ═══════════════════════ */
.hero-mag {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background:
    linear-gradient(180deg,
      rgba(45, 45, 45, 0.05) 0%,
      rgba(45, 45, 45, 0.0) 35%,
      rgba(45, 45, 45, 0.0) 60%,
      rgba(255, 255, 255, 0.0) 100%),
    url('/assets/img/wix/646802e117d9f5d2.jpg')
      center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-mag-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
}
.hero-mag-text {
  max-width: 580px;
}
.hero-mag-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 28px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.92);
  display: inline-block;
  border-radius: 2px;
}
.hero-mag h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-mag h1 .yourself {
  color: var(--coral);
  font-style: italic;
  font-weight: 500;
}
.hero-mag .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--charcoal);
  background: rgba(255,255,255,0.88);
  padding: 22px 28px;
  border-left: 3px solid var(--coral);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-mag-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════ MINT BREAK RIBBON ═══════════════════════ */
.mint-ribbon {
  background: var(--mint);
  padding: 30px 0;
  text-align: center;
}
.mint-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.mint-ribbon p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--charcoal);
  margin: 0;
}
.mint-ribbon .btn { margin: 0; }

/* ═══════════════════════ MEET CHRISTINE — asymmetric ═══════════════════════ */
.meet {
  padding: clamp(80px, 10vw, 140px) 0;
}
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.meet-text h2 {
  font-size: clamp(2.25rem, 4.4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 14px;
}
.meet-text h2 em {
  color: var(--coral);
  font-style: italic;
}
.meet-text .subtitle {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 26px;
  display: block;
}
.meet-text p { font-size: 1.05rem; line-height: 1.75; color: var(--ink); margin-bottom: 18px; }
.meet-text .underline { width: 60px; height: 2px; background: var(--coral); margin: 22px 0 28px; border: 0; }
.meet-portrait {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow-lg);
}
.meet-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.15) 100%);
}
.meet-credentials {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.meet-credentials img {
  height: 50px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.meet-credentials img:hover { opacity: 1; }

/* ═══════════════════════ FULL-BLEED DARK IMAGE SECTION ═══════════════════════ */
.section-bleed {
  position: relative;
  min-height: 540px;
  padding: clamp(80px, 10vw, 130px) 0;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}
.section-bleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,15,15,0.65) 0%, rgba(30,25,25,0.5) 60%, rgba(20,15,15,0.7) 100%);
}
.section-bleed-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
}
.section-bleed .eyebrow { color: var(--coral); }
.section-bleed h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 18px 0 22px;
  max-width: 720px;
}
.section-bleed h2 em { color: var(--mint); font-style: italic; }
.section-bleed p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin-bottom: 36px;
}
.section-bleed-narrow { max-width: 620px; }

/* Background image variants */
.bleed-proteas { background-image: url('/assets/img/wix/80d56ad362ff43e9.jpg'); }
.bleed-veg     { background-image: url('/assets/img/wix/b729a15243e53274.jpg'); }
.bleed-sunflowers { background-image: url('/assets/img/wix/c5271f54d076b4b9.jpg'); }

/* ═══════════════════════ JOURNEY GRID (her programmes look) ═══════════════════════ */
.journey {
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
}
.journey-header { max-width: 720px; margin: 0 auto 64px; }
.journey-header h2 { font-size: clamp(2.25rem, 4.4vw, 3.5rem); margin: 14px 0 20px; }
.journey-header h2 em { color: var(--coral); font-style: italic; }
.journey-header p.lead { color: var(--muted); }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journey-card {
  background: var(--bg);
  padding: 44px 36px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.journey-card:hover { background: var(--mint-pale); }
.journey-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--coral);
  margin-bottom: 12px;
}
.journey-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
.journey-card h3 em { color: var(--coral); font-style: italic; }
.journey-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.journey-card .arrow-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.journey-card:hover .arrow-link { color: var(--coral); }

/* ═══════════════════════ SPLIT FEATURE (GLP-1 spotlight, image-left) ═══════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.split-img {
  background-size: cover;
  background-position: center;
}
.split-body {
  padding: clamp(60px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.split-body.dark { background: var(--charcoal); color: white; }
.split-body.dark h2 { color: white; }
.split-body.dark p { color: rgba(255,255,255,0.85); }
.split-body h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.05;
}
.split-body h2 em { color: var(--coral); font-style: italic; }
.split-body .eyebrow { margin-bottom: 18px; display: block; }
.split-body p.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 20px;
}
.split-body ul.checks {
  list-style: none;
  margin: 14px 0 30px;
}
.split-body ul.checks li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  border-bottom: 1px dotted var(--line);
}
.split-body.dark ul.checks li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.15); }
.split-body ul.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 1px;
  background: var(--coral);
}

/* ═══════════════════════ FOUR PROTOCOLS — refined card row ═══════════════════════ */
.protocols-section { padding: clamp(80px, 10vw, 130px) 0; background: var(--bg-alt); }
.protocols-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.protocol {
  background: white;
  border: 1px solid var(--line);
  padding: 38px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.protocol:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.protocol .duration {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 14px;
}
.protocol h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
}
.protocol p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.protocol .read {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
}
.protocol .read::after { content: ' →'; }
.protocol:hover .read { color: var(--coral); }

/* ═══════════════════════ TESTIMONIALS — soft floral overlay ═══════════════════════ */
.what-they-say {
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  background:
    linear-gradient(180deg, rgba(251,250,246,0.92), rgba(251,250,246,0.92)),
    url('/assets/img/wix/032bab290f2ca63c.jpg') center/cover no-repeat;
}
.what-they-say-header { text-align: center; margin-bottom: 56px; }
.what-they-say h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 500; }
.what-they-say h2 em { color: var(--coral); font-style: italic; }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  background: white;
  padding: 36px 32px;
  border-top: 3px solid var(--coral);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.testimonial-attr {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.testimonial-attr strong { color: var(--coral); font-weight: 600; display: block; margin-bottom: 2px; }

/* ═══════════════════════ BLOG ROW — 3 across with images ═══════════════════════ */
.journal-section { padding: clamp(80px, 10vw, 130px) 0; }
.journal-header { text-align: center; margin-bottom: 56px; }
.journal-header h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.journal-header h2 em { color: var(--coral); font-style: italic; }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.journal-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.journal-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
  transition: transform 0.4s;
}
.journal-card:hover .journal-card-img { transform: scale(1.02); }
.journal-card .tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 10px;
}
.journal-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
}
.journal-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.journal-card .read-meta {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 600;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.journal-card .read-meta::after { content: ' →'; color: var(--coral); }

/* ═══════════════════════ FINAL CTA (cooking-classes style dark image) ═══════════════════════ */
.final-cta {
  background:
    linear-gradient(135deg, rgba(20,15,15,0.72), rgba(30,25,25,0.55)),
    url('/assets/img/wix/c5271f54d076b4b9.jpg') center/cover no-repeat;
  padding: clamp(80px, 10vw, 130px) 0;
  color: white;
  text-align: center;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; padding: 0 36px; }
.final-cta .eyebrow { color: var(--mint); margin-bottom: 16px; display: block; }
.final-cta h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.05;
}
.final-cta h2 em { color: var(--coral); font-style: italic; }
.final-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 38px;
}
.final-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 84px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: white;
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-brand .sub {
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 22px;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.93rem; line-height: 1.65; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; font-size: 0.92rem; }
.footer ul li a:hover { color: var(--coral); }
.footer-contact { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.75; }
.footer-contact strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 4px;
  font-family: var(--sans);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 18px; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  background: #25D366; color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-menu { display: none; }
  .meet-grid { grid-template-columns: 1fr; gap: 48px; }
  .journey-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-img { min-height: 340px; }
  .protocols-row { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-mag { min-height: 78vh; }
}
@media (max-width: 600px) {
  .container, .container-narrow, .container-wide { padding: 0 22px; }
  .protocols-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { top: 0; }
  body { padding-top: 72px; }
}


/* ═════════════════════════════════════════════════════════════
   MOTION SYSTEM
   ═════════════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="scale"].is-visible { transform: none; }

[data-stagger] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-stagger].is-visible { opacity: 1; transform: none; }

/* Image zoom release */
[data-zoom] {
  overflow: hidden;
}
[data-zoom] .meet-portrait,
[data-zoom].meet-portrait,
[data-zoom] .journal-card-img,
[data-zoom].journal-card-img,
[data-zoom] .split-img,
[data-zoom].split-img {
  transform: scale(1.08);
  transition: transform 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
[data-zoom].zoom-released .meet-portrait,
[data-zoom].zoom-released.meet-portrait,
[data-zoom].zoom-released .journal-card-img,
[data-zoom].zoom-released.journal-card-img,
[data-zoom].zoom-released .split-img,
[data-zoom].zoom-released.split-img { transform: scale(1); }

/* Nav scrolled state — subtle compression */
.nav { transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.nav.nav-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 4px 28px rgba(45,45,45,0.06);
}
.nav.nav-scrolled .nav-inner { padding: 12px 0; }
.nav.nav-scrolled .nav-logo img { height: 38px; }

/* Smooth scroll polish */
html { scroll-padding-top: 80px; }


/* ═════════════════════════════════════════════════════════════
   ONLINE STORE
   ═════════════════════════════════════════════════════════════ */

/* Cart button in nav */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line);
  margin-left: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.cart-btn:hover { background: var(--coral); color: white; border-color: var(--coral); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--coral);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  padding: 0 5px;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Cart drawer */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.cart-drawer.is-open { pointer-events: auto; }
.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0);
  transition: background 0.35s ease;
}
.cart-drawer.is-open .cart-overlay { background: rgba(20, 20, 20, 0.42); }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: white;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(45,45,45,0.18);
}
.cart-drawer.is-open .cart-panel { transform: translateX(0); }
.cart-head {
  padding: 28px 32px 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-head h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--charcoal);
  border: 0;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover { background: var(--coral); color: white; }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 32px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}
.cart-empty p { margin-bottom: 8px; }
.cart-empty .muted { font-size: 0.9rem; }
.cart-empty a { color: var(--coral); border-bottom: 1px solid var(--coral); }
.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px dotted var(--line);
  gap: 14px;
}
.cart-line-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.cart-line-price {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.cart-line-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cart-line-actions button {
  width: 26px; height: 26px;
  border-radius: 3px;
  background: var(--bg-alt);
  border: 0;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all 0.15s;
}
.cart-line-actions button:hover { background: var(--coral); color: white; }
.cart-line-qty {
  min-width: 22px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.cart-line-remove {
  margin-left: 6px;
  color: var(--muted) !important;
  background: transparent !important;
  font-size: 1.1rem !important;
}
.cart-line-remove:hover { color: var(--coral) !important; }
.cart-foot {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.cart-total-row .label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.cart-total-row .amount {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  font-weight: 600;
}
.cart-checkout {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  background: var(--coral);
  color: white;
  border: 0;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.cart-checkout:hover { background: var(--coral-deep); transform: translateY(-1px); }
.cart-checkout::after { content: ' →'; }
.cart-foot-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}


/* ═════════════════════════════════════════════════════════════
   PRODUCT GRID (Reset Pack store)
   ═════════════════════════════════════════════════════════════ */
.shop-hero {
  background: var(--bg-alt);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 70px);
}
.shop-hero .container { text-align: center; max-width: 760px; }
.shop-hero .eyebrow { display: block; margin-bottom: 18px; }
.shop-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  margin-bottom: 18px;
}
.shop-hero h1 em { color: var(--coral); font-style: italic; }
.shop-hero p.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: clamp(60px, 7vw, 90px) 0;
}
.product {
  background: white;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s;
}
.product:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.product:hover .product-img { transform: scale(1.04); }
.product-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.product-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 12px;
}
.product h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}
.product-desc {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.product-price {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--charcoal);
  font-weight: 600;
}
.product-price-meta {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.qty-stepper button {
  width: 36px;
  height: 42px;
  background: var(--bg);
  border: 0;
  font-size: 1.1rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.15s;
}
.qty-stepper button:hover { background: var(--coral-pale); color: var(--coral-deep); }
.qty-stepper input {
  width: 44px;
  height: 42px;
  border: 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  background: white;
}
.qty-stepper input:focus { outline: none; }
.add-to-cart {
  flex: 1;
  padding: 14px 22px;
  background: var(--coral);
  color: white;
  border: 0;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.add-to-cart:hover { background: var(--coral-deep); }
.add-to-cart.is-added { background: var(--leaf); }

/* Delivery info strip */
.delivery-strip {
  background: var(--mint-pale);
  padding: 36px 0;
  text-align: center;
}
.delivery-strip p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 720px;
  margin: 0 auto;
}
.delivery-strip strong { color: var(--coral); font-style: normal; }


/* ═════════════════════════════════════════════════════════════
   MOBILE motion + store
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-panel { width: 100vw; }
  .cart-btn { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-stagger] { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-zoom] * { transform: none !important; transition: none !important; }
  .hero-mag { background-attachment: scroll !important; }
}

/* MOBILE NAV (js/nav.js) */
.nav-mobile-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;width:42px;height:42px;padding:9px;background:none;border:none;cursor:pointer;}
.nav-mobile-toggle .nmt-bar{display:block;height:2px;width:100%;background:var(--sage-deep,#2a4030);border-radius:2px;transition:transform .25s,opacity .2s;}
body.nav-mobile-open .nav-mobile-toggle .nmt-bar:nth-child(1){transform:translateY(7px) rotate(45deg);}
body.nav-mobile-open .nav-mobile-toggle .nmt-bar:nth-child(2){opacity:0;}
body.nav-mobile-open .nav-mobile-toggle .nmt-bar:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.nav-mobile{display:none;flex-direction:column;gap:4px;padding:12px 22px 22px;background:var(--cream,#faf6ef);border-top:1px solid var(--line,#e4dfd2);box-shadow:0 8px 32px rgba(26,26,26,.08);}
.nav-mobile ul{list-style:none;margin:0 0 14px;padding:0;}
.nav-mobile li{border-bottom:1px solid var(--line,#e4dfd2);}
.nav-mobile a{display:block;padding:14px 2px;font-family:var(--sans);font-size:1rem;font-weight:500;color:var(--ink,#2c2c2c);}
.nav-mobile .nav-mobile-cta{text-align:center;width:100%;margin-top:4px;color:var(--cream);}
@media(max-width:960px){.nav-mobile-toggle{display:flex;}body.nav-mobile-open .nav-mobile{display:flex;}}
