:root {
  --bg: #fdf6f0;          /* warm blush cream */
  --bg-deep: #f5ebe3;
  --surface: #fffaf7;
  --ink: #2c2428;         /* warm near-black */
  --ink-soft: #6f5f63;
  --green: #c45c6a;       /* rose primary (buttons) */
  --green-deep: #9e3f4f;
  --green-soft: #fce8ec;
  --clay: #d4846a;        /* coral accent */
  --clay-soft: #f8e4dc;
  --line: #edd9d0;
  --radius: 18px;
  --maxw: 1140px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; }

/* Announcement bar */
.announce { background: var(--green-deep); color: #f2ead9; text-align: center; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 16px; }

/* Nav */
nav { padding: 22px 0; border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 23px; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--clay); }
.nav-inner .logo { font-weight: 500; font-size: 26px; letter-spacing: 0; }
.nav-links { display: flex; gap: 28px; font-size: 14px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 6px; }
.nav-icon { position: relative; display: inline-flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer; color: var(--ink); font-family: inherit; font-size: 13px; font-weight: 600; padding: 8px 12px; border-radius: 999px; }
.nav-icon:hover { background: var(--bg-deep); }
.nav-icon svg { width: 19px; height: 19px; stroke: var(--ink); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-toggle { display: none; }
.cart-count { position: absolute; top: 1px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px; background: var(--clay); color: #fff; font-size: 10.5px; font-weight: 700; border-radius: 999px; display: flex; align-items: center; justify-content: center; }

/* Cart drawer */
.drawer-overlay { position: fixed; inset: 0; background: rgba(28,42,42,0.42); opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 90; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; width: 400px; max-width: 90vw; height: 100%; background: var(--surface); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); z-index: 100; display: flex; flex-direction: column; }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 19px; }
.cart-close { background: none; border: none; font-size: 30px; line-height: 1; cursor: pointer; color: var(--ink-soft); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { color: var(--ink-soft); font-size: 15px; text-align: center; margin-top: 40px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 64px; height: 64px; object-fit: contain; background: var(--bg-deep); border-radius: 10px; mix-blend-mode: multiply; }
.cart-line .cl-info { flex: 1; }
.cart-line .cl-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cart-line .cl-price { color: var(--ink-soft); font-size: 14px; }
.cart-line .cl-qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.cart-line .cl-qty button { background: none; border: none; font-size: 16px; cursor: pointer; color: var(--ink); line-height: 1; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.cart-note { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; }
.cart-checkout { width: 100%; }

/* Hero (full-screen background image with overlaid text) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--ink);
  background-color: #e8d4cc;
  background-image: linear-gradient(90deg, rgba(253,246,240,0.94) 0%, rgba(253,246,240,0.55) 40%, rgba(253,246,240,0) 62%), url("images/landing_hero_desktop.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-inner { width: 100%; }
.hero-content { max-width: 30em; padding: 48px 0; }
.hero .eyebrow { color: var(--green-deep); }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); margin-bottom: 26px; color: var(--ink); }
.hero p.lead { font-size: 18.5px; color: var(--ink-soft); max-width: 30em; margin-bottom: 30px; }
.hero .origin-tag { color: var(--green-deep); }

/* Homepage: transparent nav overlaid on the full-screen hero */
.home nav { position: absolute; top: 0; left: 0; right: 0; z-index: 20; background: transparent; border-bottom: none; }
.home nav .wrap { max-width: none; }
.home .nav-inner .logo { color: #fff; }
.home .nav-links a { color: #fff; }
.home .nav-links a:hover { color: rgba(255,255,255,0.75); }
.home .nav-icon { color: #fff; }
.home .nav-icon svg { stroke: #fff; }
.home .nav-icon:hover { background: rgba(255,255,255,0.12); }
.home .hero-content { padding-top: 88px; }

/* Buttons / form */
.form-row { display: flex; gap: 10px; max-width: 460px; flex-wrap: wrap; }
.form-row input[type="email"] { flex: 1 1 220px; padding: 15px 17px; font-size: 15px; font-family: inherit; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); }
.form-row input[type="email"]:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.btn { display: inline-block; text-align: center; text-decoration: none; padding: 15px 26px; font-size: 15px; font-weight: 600; font-family: inherit; background: var(--green); color: #fff; border: none; border-radius: 12px; cursor: pointer; transition: background .15s ease; }
.btn:hover { background: var(--green-deep); }
.microcopy { font-size: 13px; color: var(--ink-soft); margin-top: 12px; }
.origin-tag { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-deep); }
.origin-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }

/* Who we are */
.who-we-are { max-width: 30em; margin: 0 auto; text-align: center; }
.who-we-are p { font-family: 'Fraunces', Georgia, serif; font-size: clamp(18px, 2.3vw, 24px); line-height: 1.4; color: var(--ink); }
.form-success { display: none; font-size: 15px; color: var(--green-deep); font-weight: 600; padding: 14px 0; }
.form-error { display: none; font-size: 14px; color: #c0392b; font-weight: 500; padding: 10px 0; }
.form-error a { color: #c0392b; }

/* Sections */
section.band { padding: 68px 0; }
.band.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center { text-align: center; }
.section-head { max-width: 36em; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(25px, 3.2vw, 37px); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 15.5px; }

/* Single product feature */
.product-feature { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 42px; align-items: center; }
.product-visual { aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-visual img { width: 80%; height: 100%; object-fit: contain; }
.product-visual .ribbon { position: absolute; top: 16px; left: 16px; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; background: var(--green); color: #fff; border-radius: 999px; padding: 5px 13px; }
.product-info h3 { font-size: clamp(23px, 3vw, 31px); margin-bottom: 12px; }
.product-info h3 a { color: inherit; text-decoration: none; }
.product-info h3 a:hover { color: var(--green); }
.product-info .priceline { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.product-info .price { font-family: 'Fraunces', serif; font-size: 26px; }
.product-info .was { font-size: 15px; color: var(--ink-soft); text-decoration: line-through; }
.founder-tag { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); background: var(--green-soft); border-radius: 999px; padding: 5px 12px; }
.product-info .desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.feat-list { list-style: none; margin-bottom: 22px; }
.feat-list li { position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 14px; }
.feat-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-deep); }

/* Testimonials */
.quotes { columns: 3; column-gap: 22px; }
.quote { break-inside: avoid; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; }
.quote p { font-size: 14.5px; color: var(--ink); margin-bottom: 12px; }
.quote .who { font-size: 13px; color: var(--clay); font-weight: 600; }

/* Story tabs */
.story { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.story-visual { background: radial-gradient(120% 120% at 30% 20%, var(--green-soft), var(--bg-deep)); border: 1px solid var(--line); border-radius: 24px; aspect-ratio: 1/1; }
.tabs { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.tab { font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft); cursor: pointer; font-family: inherit; }
.tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 24px; margin-bottom: 12px; }
.tab-panel p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.ing-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.ing-list span { font-size: 13px; background: var(--green-soft); color: var(--green-deep); border-radius: 999px; padding: 6px 13px; }

/* Trust badges */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust .t .ic { width: 36px; height: 36px; margin: 0 auto 11px; border-radius: 12px; background: var(--clay-soft); display: flex; align-items: center; justify-content: center; }
.trust .t .ic svg { width: 19px; height: 19px; stroke: var(--clay); fill: none; stroke-width: 1.7; }
.trust .t h3 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.trust .t p { font-size: 12.5px; color: var(--ink-soft); }

/* Newsletter / CTA */
.cta-band { background: var(--green-deep); color: #f2ead9; border-radius: 26px; padding: 50px 36px; text-align: center; }
.cta-band h2 { font-size: clamp(25px, 3.4vw, 38px); margin-bottom: 12px; color: #fff; }
.cta-band p { color: #cdd9cc; margin-bottom: 28px; font-size: 15.5px; }
.cta-band .form-row { margin: 0 auto; justify-content: center; }
.cta-band input[type="email"] { background: rgba(255,255,255,0.96); border-color: transparent; }
.cta-band .btn { background: var(--clay); }
.cta-band .btn:hover { background: #a96a44; }
.cta-band .microcopy { color: #aebfad; }

/* Contact */
.contact-form { max-width: 640px; }

/* Contact page (centered) */
.contact-page .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.contact-page .contact-form { margin-left: auto; margin-right: auto; }
.contact-page .contact-form button.btn { display: block; margin-left: auto; margin-right: auto; }
.contact-page .form-success, .contact-page .form-error { text-align: center; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px 17px; font-size: 15px; font-family: inherit; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); }
.contact-form textarea { min-height: 150px; resize: vertical; margin-bottom: 14px; line-height: 1.5; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.contact-email { margin-top: 20px; font-size: 14px; color: var(--ink-soft); }
.contact-email a { color: var(--green-deep); font-weight: 600; text-decoration: none; }
.contact-email a:hover { text-decoration: underline; }

/* Footer */
footer { padding: 48px 0 64px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; border-top: 1px solid var(--line); padding-top: 30px; }
.foot-inner .logo { font-size: 22px; font-weight: 400; letter-spacing: 0; }
footer small { color: var(--ink-soft); font-size: 12.5px; }
.foot-inner { flex-wrap: wrap; }
.foot-brand { order: 1; }
.foot-inner > small { order: 2; margin-left: auto; }
.foot-links { order: 3; flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 20px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.foot-links a { color: var(--ink-soft); text-decoration: none; font-size: 13.5px; }
.foot-links a:hover { color: var(--ink); }
.foot-links-toggle { display: none; }

/* Legal pages */
.legal-page { display: flex; flex-direction: column; min-height: 100vh; }
.legal-page footer { margin-top: auto; }
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.legal h2 { font-size: clamp(18px, 2.4vw, 22px); margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--green-deep); }
.legal-updated { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; }
.legal-note { margin-top: 30px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-style: italic; }

/* ===================== PRODUCT PAGE (PDP) ===================== */
.breadcrumb { padding: 26px 26px 0; font-size: 13px; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 8px; opacity: 0.6; }

.pdp { padding: 24px 0 72px; }
.pdp-grid { display: grid; grid-template-columns: minmax(0, 420px) 1fr; gap: 44px; align-items: start; }
.pdp-gallery { position: sticky; top: 24px; }
.pdp-main-img { width: 100%; height: 520px; max-width: 100%; object-fit: contain; display: block; margin: 0 auto; }
.pdp-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp-thumbs button { flex: 1; padding: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: transparent; cursor: pointer; aspect-ratio: 1/1; }
.pdp-thumbs button.active { border-color: var(--green); box-shadow: 0 0 0 2px var(--green-soft); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: contain; display: block; }

.pdp-info h1 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 10px; }
.pdp-brand { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 12px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ink-soft); margin-bottom: 16px; }
.pdp-stars { color: var(--clay); letter-spacing: 2px; font-size: 14px; }
.pdp-priceline { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pdp-price { font-family: 'Fraunces', serif; font-size: 28px; }
.pdp-was { font-size: 16px; color: var(--ink-soft); text-decoration: line-through; }
.pdp-desc { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.pdp-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pdp-meta .row { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); }
.pdp-meta .row svg { width: 17px; height: 17px; stroke: var(--green); fill: none; stroke-width: 1.8; flex: none; }

.buy-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 14px; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.qty button { width: 44px; height: 100%; min-height: 52px; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--ink); }
.qty input { width: 46px; text-align: center; border: none; background: none; font-family: inherit; font-size: 16px; color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row .btn { flex: 1; min-width: 200px; }
.pdp-reassure { font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.pdp-shipping-link { margin-top: 10px; font-size: 13px; }
.pdp-shipping-link a, .pdp-shipping-link button { font: inherit; padding: 0; border: 0; background: none; cursor: pointer; color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; }
.pdp-shipping-link a:hover, .pdp-shipping-link button:hover { color: var(--green); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(20, 18, 16, 0.45); opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 60; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%); width: min(900px, calc(100vw - 40px)); max-height: calc(100vh - 48px); overflow-y: auto; background: var(--bg, #fff); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 24px 60px rgba(20, 18, 16, 0.25); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease; z-index: 61; }
.modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.modal-head h2 { font-size: clamp(20px, 2.6vw, 26px); }
.modal-close { font-size: 26px; line-height: 1; border: 0; background: none; cursor: pointer; color: var(--ink-soft); padding: 0 4px; }
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 26px; }
.modal-body .sr-grid { margin: 0; }

/* Ingredient grid */
.ingredient-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ingredient { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.ingredient h4 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 18px; margin-bottom: 5px; }
.ingredient p { font-size: 14px; color: var(--ink-soft); margin: 0; }
.full-inci { margin-top: 26px; font-size: 13.5px; color: var(--ink-soft); }
.full-inci b { color: var(--ink); }

/* Compare table */
.compare { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; align-items: center; }
.compare-row > div { padding: 16px 20px; font-size: 14.5px; }
.compare-head { background: var(--green-soft); }
.compare-head > div { font-family: 'Fraunces', serif; font-size: 16px; color: var(--green-deep); }
.compare-row:not(.compare-head) { border-top: 1px solid var(--line); }
.compare .feat { color: var(--ink); font-weight: 500; }
.compare .us { color: var(--green-deep); font-weight: 600; }
.compare .them { color: var(--ink-soft); }
.compare .yes, .compare .no { display: inline-flex; align-items: center; gap: 8px; }
.compare .yes svg { stroke: var(--green); }
.compare .no svg { stroke: var(--clay); }
.compare svg { width: 17px; height: 17px; fill: none; stroke-width: 2; flex: none; }

/* Shipping & returns */
.sr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sr-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.sr-card .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--clay-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.sr-card .ic svg { width: 22px; height: 22px; stroke: var(--clay); fill: none; stroke-width: 1.7; }
.sr-card h3 { font-size: 19px; margin-bottom: 8px; }
.sr-card p { font-size: 14px; color: var(--ink-soft); }
.sr-card ul { margin: 8px 0 0; padding-left: 18px; font-size: 14px; color: var(--ink-soft); }
.sr-card ul li { margin-bottom: 5px; }

/* Product page: slightly tighter overall scale */
.pdp-page section.band { padding: 64px 0; }
.pdp-page .section-head { margin-bottom: 34px; }
.pdp-page .section-head h2 { font-size: clamp(24px, 3vw, 34px); }
.pdp-page .section-head p { font-size: 15.5px; }
.pdp-page .ingredient { padding: 18px 20px; }
.pdp-page .ingredient h4 { font-size: 16px; }
.pdp-page .ingredient p { font-size: 13px; }
.pdp-page .compare-row > div { font-size: 13.5px; padding: 14px 18px; }
.pdp-page .compare-head > div { font-size: 15px; }
.pdp-page .sr-card { padding: 22px; }
.pdp-page .sr-card h3 { font-size: 17px; }
.pdp-page .cta-band { padding: 50px 36px; }
.pdp-page .cta-band h2 { font-size: clamp(24px, 3vw, 36px); }

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; gap: 38px; }
  .hero { min-height: 100vh; align-items: flex-start; background-image: linear-gradient(180deg, rgba(44,36,40,0.15) 0%, rgba(44,36,40,0.45) 100%), url("images/landing_hero_mobile.jpg"); background-color: #8a6a62; background-size: cover; background-position: center 30%; }
  .hero-content { max-width: none; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero h1 { order: 1; font-size: clamp(26px, 7.5vw, 36px); margin-bottom: 14px; color: #f5efe3; }
  .hero .eyebrow { order: 2; font-size: 12px; margin-bottom: 20px; color: #e7ecdd; }
  .hero .form-row { order: 3; justify-content: center; margin: 0 auto; }
  .hero .origin-tag { order: 4; position: absolute; bottom: 18px; left: 26px; transform: none; margin-top: 0; white-space: nowrap; color: rgba(245, 239, 227, 0.85); }
  .home .nav-inner .logo, .home .nav-icon { color: #f5efe3; }
  .home .nav-icon svg { stroke: #f5efe3; }
  .story-visual { order: -1; aspect-ratio: 4/3; }
  .product-feature { grid-template-columns: 1fr; gap: 32px; }
  .product-visual { aspect-ratio: 4/3; }
  .quotes { columns: 1; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  nav { position: relative; }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(251, 247, 239, 0.65); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(227, 217, 198, 0.6); box-shadow: 0 12px 24px rgba(20,18,16,0.08); padding: 6px 26px 14px; z-index: 30; }
  .nav-links.open { display: flex; }
  .nav-links a, .home .nav-links a { color: var(--ink); padding: 13px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-icon-label { display: none; }
  .foot-brand { flex: 1 1 0; min-width: 0; }
  .foot-brand small { display: block; }
  .foot-inner > small { white-space: nowrap; align-self: center; }
  .foot-links-toggle { order: 3; flex-basis: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; border-top: 1px solid var(--line); margin-top: 22px; padding: 18px 0 0; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
  .foot-links-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
  .foot-links-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
  .foot-links { display: none; order: 4; margin-top: 0; padding-top: 14px; border-top: none; flex-direction: column; gap: 0; }
  .foot-links.open { display: flex; }
  .foot-links a { padding: 11px 0; font-size: 15px; border-bottom: 1px solid var(--line); }
  .foot-links a:last-child { border-bottom: none; }
  .cart-drawer { width: 100%; }
  .pdp-grid { grid-template-columns: 1fr; gap: 34px; }
  .pdp-gallery { position: static; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .sr-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.3fr 0.8fr 0.8fr; }
  .compare-row > div { padding: 13px 14px; font-size: 13px; }
  .cf-grid { grid-template-columns: 1fr; }
}
