/* ====== nrtly.com  |  Nrtly Table  |  Provencal French recipe journal ====== */

:root {
  /* Palette: warm lavender, olive green, soft cream, terracotta accent */
  --plum: #38304f;
  --plum-deep: #2b2540;
  --lavender: #6f5f94;
  --lavender-deep: #4c4170;
  --lavender-soft: #cdbfe6;
  --lavender-mist: #efeaf6;
  --olive: #55662e;
  --olive-deep: #414f20;
  --olive-soft: #aebd7f;
  --cream: #faf6ec;
  --cream-deep: #f1e9d7;
  --terracotta: #b4532e;
  --terracotta-deep: #97431f;
  --terracotta-warm: #e08a5f;
  --ink: #332c48;
  --ink-soft: #5c5476;

  --display-font: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --body-font: 'Work Sans', 'Avenir Next', 'Segoe UI', sans-serif;

  --grad-dusk: linear-gradient(150deg, #3d3460 0%, #6f5f94 52%, #8a6250 100%);
  --grad-field: linear-gradient(160deg, #45527a 0%, #55662e 120%);
  --grad-ribbon: linear-gradient(90deg, var(--lavender) 0%, var(--olive) 50%, var(--terracotta) 100%);

  --shadow-soft: 0 10px 34px rgba(43, 37, 64, 0.10);
  --shadow-lift: 0 22px 54px rgba(43, 37, 64, 0.18);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--terracotta); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--terracotta-deep); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--display-font); color: var(--plum); line-height: 1.18; font-weight: 600; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  font-variant: small-caps;
  color: var(--olive);
}
.kicker::before {
  content: ""; width: 34px; height: 2px;
  background: var(--grad-ribbon); border-radius: 2px;
}

/* ===== SCROLL REVEAL (degrades gracefully, respects reduced motion) ===== */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar::after {
  content: ""; display: block; height: 3px;
  background: var(--grad-ribbon);
  opacity: 0.85;
}
.navbar.scrolled {
  background: rgba(250, 246, 236, 0.99);
  box-shadow: 0 4px 24px rgba(43, 37, 64, 0.10);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex; align-items: baseline; gap: 9px;
  font-family: var(--display-font);
  font-size: 24px; font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.2px;
}
.nav-logo .logo-mark { font-size: 21px; transform: translateY(1px); }
.nav-logo em { font-style: italic; font-weight: 400; color: var(--lavender); }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 26px; color: var(--plum);
  line-height: 1;
}
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--ink);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.4px;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

/* ===== HERO (editorial split) ===== */
.hero {
  position: relative;
  background: var(--grad-dusk);
  overflow: hidden;
}
.hero-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 6.2fr) minmax(0, 5fr);
  align-items: stretch;
  min-height: 82vh;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 64px 96px 28px;
  position: relative; z-index: 2;
}
.hero-copy .kicker { color: var(--lavender-soft); margin-bottom: 26px; }
.hero-copy .kicker::before { background: linear-gradient(90deg, var(--lavender-soft), var(--terracotta-warm)); }
.hero h1 {
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 600;
  line-height: 1.04;
  color: var(--cream);
  letter-spacing: -1px;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  color: var(--terracotta-warm);
}
.hero-lede {
  font-size: 19.5px;
  font-weight: 300;
  color: rgba(250, 246, 236, 0.88);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.btn-hero {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  padding: 17px 40px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-hero:hover {
  background: var(--terracotta-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}
.hero-secondary {
  color: rgba(250, 246, 236, 0.85);
  font-size: 15.5px; font-weight: 500;
  letter-spacing: 0.4px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.4);
  padding-bottom: 3px;
}
.hero-secondary:hover { color: var(--terracotta-warm); border-bottom-color: var(--terracotta-warm); }
.hero-note {
  margin-top: 44px;
  display: flex; gap: 14px; align-items: center;
  color: rgba(250, 246, 236, 0.66);
  font-size: 14px; letter-spacing: 0.3px;
}
.hero-note span { white-space: nowrap; }
.hero-note .dot { opacity: 0.6; }
.hero-visual { position: relative; min-height: 420px; }
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #4a3f6e 0%, rgba(74, 63, 110, 0.35) 34%, rgba(74, 63, 110, 0) 62%),
              linear-gradient(0deg, rgba(43, 37, 64, 0.34), rgba(43, 37, 64, 0) 45%);
  pointer-events: none;
}
.hero-caption {
  position: absolute; left: 26px; bottom: 26px; z-index: 3;
  background: rgba(250, 246, 236, 0.93);
  backdrop-filter: blur(6px);
  padding: 14px 20px;
  border-left: 3px solid var(--terracotta);
  font-size: 13.5px;
  color: var(--ink-soft);
  letter-spacing: 0.4px;
  max-width: 300px;
  box-shadow: var(--shadow-soft);
}
.hero-caption strong {
  display: block;
  font-family: var(--display-font);
  font-size: 16px; font-weight: 600;
  color: var(--plum);
  margin-bottom: 2px;
}

/* ===== FAT CREED STRIP ===== */
.creed {
  background: var(--cream-deep);
  border-bottom: 1px solid rgba(56, 48, 79, 0.08);
  padding: 26px 28px;
}
.creed-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
  font-size: 15px; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.5px;
}
.creed-inner span { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.creed-inner .creed-yes::before { content: "\2726"; color: var(--olive); font-size: 12px; }
.creed-inner .creed-no { color: var(--terracotta-deep); }
.creed-inner .creed-no::before { content: "\2715"; font-size: 12px; }

/* ===== WELLNESS / PRODUCT SECTIONS ===== */
.shapeon-section {
  background: var(--grad-dusk);
  padding: 96px 28px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.shapeon-section::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 12% 88%, rgba(224, 138, 95, 0.10) 0%, transparent 46%),
                    radial-gradient(circle at 88% 10%, rgba(205, 191, 230, 0.10) 0%, transparent 46%);
  pointer-events: none;
}
.shapeon-section--bottom { background: linear-gradient(200deg, #3d3460 0%, #6f5f94 55%, #8a6250 115%); }
.shapeon-section > .container { position: relative; z-index: 2; }
.shapeon-header { max-width: 780px; margin: 0 auto 30px; text-align: center; }
.shapeon-badge {
  display: inline-block;
  background: rgba(250, 246, 236, 0.10);
  border: 1px solid rgba(250, 246, 236, 0.22);
  color: var(--lavender-soft);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.shapeon-header h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.shapeon-header h2 em { font-style: italic; font-weight: 400; color: var(--terracotta-warm); }
.shapeon-header p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(250, 246, 236, 0.82);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 54px auto;
}
.product-card {
  background: rgba(250, 246, 236, 0.06);
  border: 1px solid rgba(250, 246, 236, 0.14);
  border-radius: 8px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 246, 236, 0.34);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30);
}
.product-card.featured {
  background: rgba(250, 246, 236, 0.11);
  border-color: var(--terracotta-warm);
  transform: scale(1.045);
}
.product-card.featured:hover { transform: scale(1.045) translateY(-6px); }
.product-label {
  display: inline-block;
  background: rgba(250, 246, 236, 0.14);
  color: var(--cream);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(250, 246, 236, 0.20);
}
.product-card.featured .product-label {
  background: var(--terracotta-warm);
  color: var(--plum-deep);
  border-color: var(--terracotta-warm);
}
.product-img { width: 158px; height: 198px; object-fit: contain; margin: 12px auto 20px; }
.product-bottles {
  font-family: var(--display-font);
  color: var(--cream);
  font-size: 29px;
  margin-bottom: 14px;
  font-weight: 600;
}
.product-price-old { color: rgba(250, 246, 236, 0.52); font-size: 15px; text-decoration: line-through; margin-bottom: 6px; }
.product-price { color: var(--terracotta-warm); font-size: 38px; font-weight: 700; margin-bottom: 6px; line-height: 1; font-family: var(--display-font); }
.product-price span { font-size: 14px; color: rgba(250, 246, 236, 0.72); font-weight: 400; margin-left: 5px; font-family: var(--body-font); }
.product-total { color: rgba(250, 246, 236, 0.88); font-size: 15px; margin-bottom: 8px; font-weight: 600; }
.product-savings { color: #b9d98a; font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.product-shipping { color: rgba(250, 246, 236, 0.78); font-size: 13.5px; margin-bottom: 24px; }
.btn-order {
  display: block;
  width: 100%;
  background: var(--terracotta);
  color: var(--cream);
  padding: 15px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-order:hover {
  background: var(--terracotta-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.30);
}

/* Trust + guarantee */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 36px auto;
  max-width: 800px;
}
.trust-badges img { height: 46px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(250, 246, 236, 0.06);
  border: 1px solid rgba(250, 246, 236, 0.14);
  border-radius: 8px;
  padding: 26px 34px;
  max-width: 720px;
  margin: 36px auto 0;
}
.guarantee img { width: 82px; height: 82px; flex-shrink: 0; }
.guarantee p { color: rgba(250, 246, 236, 0.88); font-size: 15.5px; margin: 0; line-height: 1.65; }
.section-disclaimer {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: rgba(250, 246, 236, 0.55);
  line-height: 1.7;
}

/* ===== RECIPES ===== */
.recipes-section {
  padding: 104px 28px 96px;
  background: var(--cream);
  position: relative;
}
.recipes-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.recipes-header .kicker { justify-content: center; margin-bottom: 20px; }
.recipes-header .kicker::after {
  content: ""; width: 34px; height: 2px;
  background: var(--grad-ribbon); border-radius: 2px;
  transform: scaleX(-1);
}
.recipes-header h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  color: var(--plum);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.recipes-header h2 em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.recipes-header p { font-size: 18.5px; color: var(--ink-soft); line-height: 1.75; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.recipe-card {
  background: #fffdf8;
  border: 1px solid rgba(56, 48, 79, 0.07);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.recipe-img-wrap { position: relative; overflow: hidden; height: 226px; }
.recipe-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.recipe-card:hover .recipe-img { transform: scale(1.06); }
.recipe-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250, 246, 236, 0.94);
  color: var(--olive-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 3px;
  box-shadow: 0 3px 10px rgba(43, 37, 64, 0.16);
}
.recipe-info { padding: 28px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.recipe-info h3 {
  font-size: 25px;
  color: var(--plum);
  margin-bottom: 6px;
  line-height: 1.22;
  letter-spacing: -0.3px;
}
.recipe-fr {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 15.5px;
  color: var(--lavender);
  margin-bottom: 14px;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.recipe-meta span { white-space: nowrap; }
.recipe-desc {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}
.btn-expand {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  width: 100%;
  text-align: center;
}
.btn-expand:hover { background: var(--plum); color: var(--cream); }
.recipe-details {
  display: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed rgba(111, 95, 148, 0.4);
  animation: fadeIn 0.3s ease;
}
.recipe-details.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.recipe-details h4 {
  font-size: 13px;
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--olive-deep);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin: 20px 0 10px;
}
.recipe-details h4:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol {
  padding-left: 22px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}
.recipe-details ul li, .recipe-details ol li { margin-bottom: 7px; }
.recipe-details ol li::marker { color: var(--terracotta); font-weight: 700; }
.recipe-details ul li::marker { color: var(--lavender); }

/* ===== ABOUT / MEET THE KITCHEN ===== */
.about-section {
  background: var(--cream-deep);
  padding: 100px 28px;
  border-top: 1px solid rgba(56, 48, 79, 0.07);
}
.about-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%; height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lift);
}
.about-visual::after {
  content: "";
  position: absolute;
  top: 22px; left: -22px; right: 22px; bottom: -22px;
  border: 2px solid var(--olive-soft);
  border-radius: 8px;
  z-index: -1;
}
.about-copy .kicker { margin-bottom: 20px; }
.about-copy h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  color: var(--plum);
  margin-bottom: 22px;
  letter-spacing: -0.6px;
  line-height: 1.12;
}
.about-copy h2 em { font-style: italic; font-weight: 400; color: var(--terracotta); }
.about-copy p { color: var(--ink-soft); font-size: 17.5px; line-height: 1.8; margin-bottom: 18px; }
.about-copy p:last-of-type { margin-bottom: 0; }
.about-principles {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  list-style: none;
}
.about-principles li {
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  padding-left: 26px;
  position: relative;
  line-height: 1.55;
}
.about-principles li::before {
  content: "\2726";
  position: absolute; left: 0; top: 1px;
  color: var(--terracotta);
  font-size: 13px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(185deg, var(--plum) 0%, var(--plum-deep) 78%);
  color: rgba(250, 246, 236, 0.85);
  padding: 72px 28px 34px;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-ribbon);
  opacity: 0.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 52px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo em { font-style: italic; font-weight: 400; color: var(--lavender-soft); }
.footer-brand p { color: rgba(250, 246, 236, 0.68); font-size: 15px; line-height: 1.75; max-width: 340px; }
.footer-links h4, .footer-company h4 {
  color: var(--terracotta-warm);
  font-family: var(--body-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(250, 246, 236, 0.72); font-size: 15px; display: inline-block; padding: 3px 0; }
.footer-links a:hover { color: var(--terracotta-warm); }
.footer-company p { color: rgba(250, 246, 236, 0.72); font-size: 14px; line-height: 1.8; }
.footer-company strong { color: var(--cream); }
.footer-disclaimer {
  border-top: 1px solid rgba(250, 246, 236, 0.13);
  padding-top: 28px;
  margin-bottom: 22px;
}
.footer-disclaimer p { color: rgba(250, 246, 236, 0.55); font-size: 13px; line-height: 1.75; max-width: 1100px; }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 236, 0.09);
  padding-top: 22px;
  text-align: center;
}
.footer-bottom p { color: rgba(250, 246, 236, 0.5); font-size: 13px; margin: 0; letter-spacing: 0.3px; }

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 900px;
  margin: 64px auto 88px;
  padding: 0 28px;
  line-height: 1.8;
  color: var(--ink);
}
.legal-main h1 {
  font-size: clamp(38px, 5vw, 56px);
  color: var(--plum);
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}
.legal-main h2 {
  font-size: clamp(23px, 3vw, 29px);
  color: var(--plum);
  margin: 40px 0 14px;
  letter-spacing: -0.3px;
}
.legal-main h3 { font-size: 20px; color: var(--plum); margin: 20px 0 10px; }
.legal-main p { margin-bottom: 15px; font-size: 16.5px; }
.legal-main ul, .legal-main ol { margin: 15px 0 15px 28px; }
.legal-main li { margin-bottom: 9px; font-size: 16.5px; }
.legal-main a { color: var(--terracotta); text-decoration: underline; }
.legal-main a:hover { color: var(--terracotta-deep); }
.legal-main strong { color: var(--plum); font-weight: 600; }
.legal-meta { opacity: 0.65; font-style: italic; margin-bottom: 34px; }
.fda-warning-box {
  background: #fff8e1;
  border-left: 5px solid #f4a261;
  padding: 26px;
  border-radius: 6px;
  margin-bottom: 36px;
}
.fda-warning-box h2 { margin-top: 0; color: #9a6a00; }
.fda-warning-box p { margin-bottom: 0; }
.company-contact-box {
  background: rgba(56, 48, 79, 0.045);
  border-left: 4px solid var(--olive);
  padding: 26px;
  border-radius: 6px;
  margin-top: 26px;
}
.company-contact-box h3 { margin-top: 0; color: var(--plum); }
.company-contact-box p { margin-bottom: 7px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 84px 28px 60px; text-align: left; }
  .hero-visual { min-height: 380px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-visual { max-width: 560px; margin: 0 auto; }
  .about-visual img { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 77px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 26px;
    gap: 15px;
    box-shadow: 0 14px 32px rgba(43, 37, 64, 0.14);
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .hero-copy { padding: 68px 24px 52px; }
  .hero h1 { font-size: clamp(36px, 8.4vw, 56px); }
  .hero-lede { font-size: 17.5px; }
  .hero-visual { min-height: 320px; }
  .hero-caption { left: 18px; bottom: 18px; max-width: 260px; }
  .creed-inner { gap: 14px 26px; font-size: 13.5px; }
  .product-grid { grid-template-columns: 1fr; max-width: 400px; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-6px); }
  .recipes-grid { grid-template-columns: 1fr; }
  .about-principles { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-badges { gap: 22px; }
  .trust-badges img { height: 36px; }
  .guarantee { flex-direction: column; padding: 22px; text-align: center; }
}
@media (max-width: 480px) {
  body { font-size: 17px; }
  .hero h1 { font-size: 34px; }
  .hero-lede { font-size: 16.5px; }
  .hero-actions { gap: 18px; }
  .btn-hero { padding: 15px 30px; font-size: 15px; }
  .recipes-section { padding: 72px 18px 64px; }
  .shapeon-section { padding: 72px 18px; }
  .about-section { padding: 72px 18px; }
  .about-visual::after { display: none; }
  .about-visual img { height: 300px; }
  .recipe-info { padding: 24px 20px 22px; }
}
