@import url('fonts.css');

:root {
  --accent: oklch(56% 0.15 35);
  --accent-soft: oklch(88% 0.05 40);
  --accent-light: oklch(72% 0.13 40);
  --bg: oklch(97% 0.015 75);
  --bg-alt: oklch(93% 0.025 60);
  --bg-card: oklch(99% 0.008 70);
  --bg-drawer: oklch(98% 0.01 70);
  --text: oklch(26% 0.03 50);
  --text-dark: oklch(24% 0.03 50);
  --text-darker: oklch(22% 0.03 50);
  --text-body: oklch(35% 0.025 50);
  --text-body-2: oklch(38% 0.025 50);
  --text-body-3: oklch(40% 0.025 50);
  --text-muted: oklch(48% 0.02 55);
  --text-muted-2: oklch(50% 0.02 55);
  --text-muted-3: oklch(45% 0.02 55);
  --text-muted-4: oklch(42% 0.02 55);
  --text-heading-alt: oklch(30% 0.03 50);
  --border: oklch(88% 0.02 60);
  --border-light: oklch(90% 0.015 60);
  --border-input: oklch(80% 0.02 55);
  --border-btn: oklch(70% 0.02 55);
  --border-btn-2: oklch(75% 0.02 55);
  --white: oklch(99% 0.01 70);
  --white-2: oklch(98% 0.01 70);
  --white-3: oklch(97% 0.01 70);
  --white-4: oklch(96% 0.01 70);
  --off-white: oklch(92% 0.01 70);
  --danger: oklch(55% 0.1 30);
  --footer-bg: oklch(22% 0.03 50);
  --footer-text: oklch(85% 0.015 65);
  --footer-text-2: oklch(75% 0.015 65);
  --footer-text-3: oklch(70% 0.015 65);
  --footer-line: oklch(35% 0.02 55);
  --footer-muted: oklch(60% 0.015 60);
  --testimonial-bg: oklch(29% 0.03 50);
  --testimonial-text: oklch(92% 0.01 70);
  --testimonial-city: oklch(70% 0.02 60);
  --overlay: oklch(15% 0.01 40 / 0.55);
  --overlay-light: oklch(15% 0.01 40 / 0.5);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Work Sans', -apple-system, Segoe UI, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }

::selection { background: oklch(85% 0.08 40); }

a { color: inherit; }

button { font-family: var(--font-sans); }

@keyframes fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fade 0.4s ease; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* honeypot field — hidden from real users, catches bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--text-darker); color: var(--white-4);
  padding: 18px 24px; display: flex; gap: 20px; align-items: center;
  justify-content: center; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner p { max-width: 640px; font-size: 14px; line-height: 1.5; margin: 0; }
.cookie-banner a { color: var(--accent-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-decline {
  background: transparent; border: 1px solid oklch(60% 0.02 60); color: oklch(90% 0.01 70);
  padding: 10px 18px; border-radius: 2px; font-size: 13px; cursor: pointer;
}
.btn-cookie-accept {
  background: var(--accent); border: none; color: var(--white);
  padding: 10px 20px; border-radius: 2px; font-size: 13px; font-weight: 600; cursor: pointer;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: oklch(97% 0.015 75 / 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.brand {
  cursor: pointer; display: flex; flex-direction: column; line-height: 1;
  text-decoration: none; color: inherit;
}
.brand-name { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--text-dark); }
.brand-name span { color: var(--accent); }
.brand-tagline {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted-2); margin-top: 2px;
}
.main-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.nav-link {
  background: none; border: none; cursor: pointer; text-decoration: none;
  font-size: 14px; font-weight: 600; padding: 6px 2px;
  color: var(--text-heading-alt); border-bottom: 2px solid transparent;
}
.nav-link.active { color: var(--accent); border-bottom-color: var(--accent); }
.btn-cart {
  position: relative; background: var(--accent); color: var(--white); border: none;
  border-radius: 3px; padding: 10px 18px; font-weight: 600; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
}
.cart-count {
  background: var(--white); color: var(--accent); border-radius: 50%;
  min-width: 20px; height: 20px; display: inline-flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-sans); cursor: pointer; border-radius: 3px; }
.btn-primary {
  background: var(--accent); color: var(--white); border: none;
  padding: 15px 30px; font-size: 15px; font-weight: 700;
}
.btn-secondary {
  background: transparent; color: var(--text-dark); border: 1.5px solid var(--border-btn);
  padding: 15px 30px; font-size: 15px; font-weight: 600;
}
.btn-outline-dark {
  background: transparent; border: 1.5px solid oklch(30% 0.03 50);
  padding: 13px 26px; border-radius: 3px; font-weight: 600; cursor: pointer;
  color: var(--text);
}
.btn-add-cart {
  background: var(--text-dark); color: oklch(98% 0.01 70); border: none;
  padding: 8px 12px; border-radius: 3px; font-size: 12px; font-weight: 600; cursor: pointer;
}
.btn-link-accent { background: none; border: none; color: var(--accent); font-weight: 600; cursor: pointer; font-size: 14px; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.wrap-narrower { max-width: 1000px; margin: 0 auto; padding: 0 32px; }
.wrap-text { max-width: 760px; margin: 0 auto; padding: 0 32px; }
main { flex: 1; }
.section-pad { padding: 70px 32px; }
.section-pad-top { padding: 70px 32px 20px; }
.section-pad-bottom { padding: 40px 32px 70px; }
.page-section { padding: 50px 32px 80px; max-width: 1200px; margin: 0 auto; }
.page-section-narrow { max-width: 1000px; margin: 0 auto; padding: 50px 32px 80px; }
.page-section-text { max-width: 760px; margin: 0 auto; padding: 60px 32px 80px; }

h1, h2, h3 { font-family: var(--font-serif); margin: 0; }
.page-title { font-size: 36px; margin: 0 0 10px; }
.page-lede { color: var(--text-muted); max-width: 640px; margin: 0 0 30px; line-height: 1.6; }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  min-height: 520px; background: var(--bg-alt);
}
.hero-copy { padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; font-weight: 600; color: var(--accent); }
.eyebrow-dark { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 700; color: var(--accent); }
.hero-copy h1 { font-size: 52px; line-height: 1.1; font-weight: 700; color: oklch(24% 0.03 50); }
.hero-copy p { font-size: 17px; line-height: 1.6; color: var(--text-muted-4); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.hero-media { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

/* ---------- USP strip ---------- */
.usp-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
  border-bottom: 1px solid var(--border);
}
.usp-item {
  padding: 26px 20px; text-align: center; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.usp-item:last-child { border-right: none; }
.usp-dot { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); display: inline-block; }
.usp-title { font-weight: 700; font-size: 14px; }
.usp-desc { font-size: 12.5px; color: var(--text-muted); }

/* ---------- Section headers ---------- */
.section-heading { font-size: 32px; text-align: center; margin: 0 0 8px; }
.section-sub { text-align: center; color: var(--text-muted); margin: 0 0 40px; }
.section-heading-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 30px; flex-wrap: wrap; gap: 10px;
}
.section-heading-row h2 { font-size: 30px; }

/* ---------- Category cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.card {
  cursor: pointer; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border); background: var(--bg-card);
  text-decoration: none; color: inherit; display: block;
}
.card-media { height: 170px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 19px; margin: 0 0 6px; }
.card-body p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

/* ---------- Product cards ---------- */
.product-card {
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  background: var(--bg-card); display: flex; flex-direction: column;
}
.product-media { height: 130px; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 14px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.product-cat { font-size: 10.5px; color: var(--accent); text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; }
.product-name { font-weight: 600; font-size: 14px; line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--text-muted-2); }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.product-price { font-weight: 700; font-size: 15px; color: var(--accent); }
.product-weight { font-size: 11px; color: oklch(55% 0.02 55); display: block; }

/* ---------- Story / about split ---------- */
.split-section { background: var(--bg-alt); }
.split-row {
  max-width: 1200px; margin: 0 auto; padding: 70px 32px;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center;
}
.split-row.reverse { grid-template-columns: 1fr 1fr; }
.split-media { height: 320px; border-radius: 6px; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-row h2 { font-size: 32px; margin: 14px 0; }
.split-row p { font-size: 15.5px; line-height: 1.7; color: var(--text-body-2); margin: 0 0 20px; }

/* ---------- Recipe teaser / cards ---------- */
.recipe-tag { font-size: 11.5px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.recipe-card .card-body h3 { margin: 8px 0 6px; font-size: 18px; }
.recipe-card .card-body p { margin: 0; font-size: 13px; color: var(--text-muted); }
.recipe-media { height: 150px; overflow: hidden; }
.recipe-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--text-darker); padding: 70px 32px; }
.testimonials-section h2 { color: var(--white-4); text-align: center; font-size: 28px; margin: 0 0 40px; }
.testimonial-card { background: var(--testimonial-bg); border-radius: 6px; padding: 24px; color: var(--testimonial-text); }
.testimonial-card p { font-style: italic; font-size: 14.5px; line-height: 1.6; margin: 0 0 14px; }
.testimonial-name { font-size: 13px; font-weight: 700; color: var(--accent-light); display: block; }
.testimonial-city { display: block; font-size: 12px; color: var(--testimonial-city); }

/* ---------- Newsletter ---------- */
.newsletter-section { max-width: 760px; margin: 0 auto; padding: 70px 32px; text-align: center; }
.newsletter-section h2 { font-size: 28px; margin: 0 0 10px; }
.newsletter-section > p { color: var(--text-muted); margin: 0 0 24px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  padding: 14px 16px; border: 1px solid var(--border-btn); border-radius: 3px;
  font-family: var(--font-sans); font-size: 14px; min-width: 260px;
}
.newsletter-form button {
  background: var(--accent); color: var(--white); border: none; padding: 14px 26px;
  border-radius: 3px; font-weight: 700; cursor: pointer;
}
.form-success { color: var(--accent); font-weight: 700; }

/* ---------- Filter chips (catalog) ---------- */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.chip {
  border-radius: 20px; padding: 9px 18px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border-input); background: transparent;
  color: var(--text-heading-alt);
}
.chip.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ---------- Mixes tips ---------- */
.tips-panel { background: var(--bg-alt); border-radius: 8px; padding: 40px; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.tips-panel h3 { font-size: 17px; margin: 0 0 8px; }
.tips-panel p { font-size: 13.5px; line-height: 1.6; color: var(--text-body-3); margin: 0; }

/* ---------- Tips list page ---------- */
.tip-row-list { display: flex; flex-direction: column; gap: 18px; }
.tip-row {
  cursor: pointer; display: grid; grid-template-columns: 180px 1fr; gap: 20px;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--bg-card);
  text-decoration: none; color: inherit;
}
.tip-row-media { overflow: hidden; }
.tip-row-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 120px; }
.tip-row-body { padding: 18px 18px 18px 0; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.tip-row-body h3 { font-size: 18px; margin: 0; }
.tip-row-body p { margin: 0; font-size: 13.5px; color: var(--text-muted-3); line-height: 1.5; }
.tip-row-more { font-size: 12.5px; font-weight: 700; color: var(--accent); }

/* ---------- Values / timeline (about) ---------- */
.values-grid { max-width: 1100px; margin: 0 auto; padding: 40px 32px 70px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { background: var(--bg-alt); border-radius: 6px; padding: 26px; }
.value-card h3 { font-size: 18px; margin: 0 0 8px; }
.value-card p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--text-body-3); }
.timeline-section { background: var(--text-darker); padding: 60px 32px; }
.timeline-section h2 { color: var(--white-4); text-align: center; font-size: 26px; margin: 0 0 36px; }
.timeline-list { display: flex; flex-direction: column; gap: 22px; max-width: 900px; margin: 0 auto; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: baseline; }
.timeline-year { color: var(--accent-light); font-weight: 700; font-family: var(--font-serif); font-size: 20px; }
.timeline-item p { color: oklch(88% 0.01 70); margin: 0; font-size: 14.5px; line-height: 1.6; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea {
  padding: 14px; border: 1px solid var(--border-input); border-radius: 4px;
  font-family: var(--font-sans); font-size: 14px; width: 100%;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  background: var(--accent); color: var(--white); border: none; padding: 15px;
  border-radius: 4px; font-weight: 700; cursor: pointer;
}
.contact-success { background: var(--bg-alt); border-radius: 6px; padding: 26px; }
.contact-success p { margin: 0; font-weight: 700; color: var(--accent); }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-media { height: 200px; border-radius: 6px; overflow: hidden; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-info { font-size: 14.5px; line-height: 2; color: var(--text-body); }

/* ---------- Legal pages ---------- */
.legal-body { font-size: 14.5px; line-height: 1.9; color: var(--text-body); display: flex; flex-direction: column; gap: 16px; }
.legal-body.compact { line-height: 2; gap: 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.legal-table th, .legal-table td { padding: 10px; text-align: left; }
.legal-table thead tr { background: var(--bg-alt); }
.legal-table th { font-weight: 700; }
.legal-table td { border-top: 1px solid var(--border); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 60px 32px 30px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--white-3); }
.footer-about { font-size: 13.5px; line-height: 1.7; color: var(--footer-text-3); margin: 12px 0 0; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-weight: 700; color: var(--white-4); font-size: 13.5px; margin-bottom: 4px; }
.footer-col a { color: var(--footer-text-2); text-decoration: none; font-size: 13.5px; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom {
  max-width: 1200px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid var(--footer-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: var(--footer-muted);
}

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 300; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-scrim { position: absolute; inset: 0; background: var(--overlay-light); border: none; padding: 0; cursor: pointer; }
.cart-panel {
  position: relative; width: 420px; max-width: 92vw; height: 100%;
  background: var(--bg-drawer); box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; padding: 26px; overflow-y: auto;
}
.cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-head h2 { font-size: 22px; }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted-4); }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted-2); text-align: center; }
.cart-items { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.cart-item { display: flex; gap: 12px; align-items: center; border-bottom: 1px solid var(--border-light); padding-bottom: 14px; }
.cart-item-thumb { width: 56px; height: 56px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: var(--bg-alt); }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 13.5px; display: block; }
.cart-item-price { font-size: 12px; color: var(--text-muted-2); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border-btn-2); background: none; cursor: pointer; }
.cart-item-remove { background: none; border: none; color: var(--danger); cursor: pointer; font-size: 13px; }
.cart-summary { padding-top: 18px; border-top: 1px solid var(--border-light); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cart-note { font-size: 12px; color: var(--text-muted-2); margin: 0 0 16px; }
.btn-checkout { width: 100%; background: var(--accent); color: var(--white); border: none; padding: 15px; border-radius: 4px; font-weight: 700; cursor: pointer; font-size: 14.5px; }
.checkout-form { padding-top: 18px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 10px; }
.checkout-form input { padding: 12px; border: 1px solid var(--border-input); border-radius: 4px; font-size: 13.5px; width: 100%; font-family: var(--font-sans); }
.checkout-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; margin: 6px 0; }
.checkout-actions { display: flex; gap: 10px; }
.btn-back { flex: 1; background: none; border: 1px solid var(--border-btn-2); padding: 14px; border-radius: 4px; cursor: pointer; font-size: 13.5px; }
.btn-confirm { flex: 2; background: var(--accent); color: var(--white); border: none; padding: 14px; border-radius: 4px; font-weight: 700; cursor: pointer; font-size: 13.5px; }
.checkout-done { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 20px; }
.checkout-done .check-icon { font-size: 40px; }
.checkout-done h3 { margin: 0; }
.checkout-done p { font-size: 14px; color: var(--text-muted-3); margin: 0; }
.btn-continue { background: var(--accent); color: var(--white); border: none; padding: 13px 26px; border-radius: 4px; font-weight: 700; cursor: pointer; margin-top: 10px; }

/* ---------- Modals (recipe / tip) ---------- */
dialog.modal-box {
  border: none; margin: auto; max-width: 640px; width: 90%; max-height: 86vh;
  overflow-y: auto; background: var(--bg-drawer); border-radius: 8px; padding: 34px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
dialog.modal-box::backdrop { background: var(--overlay); }
.modal-close { position: absolute; top: 18px; right: 20px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted-4); }
.recipe-open, .tip-open { border: none; background: none; padding: 0; margin: 0; font: inherit; color: inherit; display: block; }
.recipe-open:focus-visible, .tip-open:focus-visible, .card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.modal-box h2 { font-size: 26px; margin: 10px 0; }
.modal-meta { font-size: 13px; color: var(--text-muted-2); margin: 0 0 20px; }
.modal-box h3 { font-size: 14.5px; margin: 0 0 8px; font-family: var(--font-sans); font-weight: 700; }
.modal-box ul, .modal-box ol { margin: 0 0 20px; padding-left: 20px; font-size: 14px; line-height: 1.8; color: var(--text-body); }
.modal-box .tip-paragraphs p { margin: 0 0 12px; font-size: 14px; line-height: 1.8; color: var(--text-body); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 260px; }
  .split-row, .split-row.reverse { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .usp-strip { grid-template-columns: repeat(2,1fr); }
  .usp-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-section .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .tips-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 16px; }
  .main-nav { gap: 12px; order: 3; width: 100%; justify-content: center; }
  .hero-copy { padding: 40px 24px; }
  .hero-copy h1 { font-size: 34px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tip-row { grid-template-columns: 1fr; }
  .tip-row-media img { min-height: 160px; }
  .cart-panel { width: 100%; }
}
