/* ============================================================
   Ivmera Cucina · ivmera.com
   Sicilian editorial stylesheet
   Palette: warm cream, deep Tyrrhenian sea blue, sun gold,
   terracotta, olive accents · majolica cart stripe signature
   Type: Cormorant Garamond (display serif) + Albert Sans (body)
   ============================================================ */

:root {
  --ink: #241f16;
  --ink-soft: #5c5546;
  --ink-faint: #8b8270;
  --paper: #fffcf2;
  --cream: #faf3e2;
  --cream-deep: #f1e5cb;
  --sand: #e6d6ae;
  --sea: #1d4e68;
  --sea-deep: #143a4f;
  --sea-night: #0c2837;
  --terracotta: #b85c38;
  --terracotta-deep: #96442a;
  --gold: #cf9a25;
  --gold-bright: #e9bd52;
  --gold-pale: #f3e2b0;
  --olive: #6d7a45;
  --line: rgba(70, 58, 34, 0.16);
  --line-soft: rgba(70, 58, 34, 0.09);
  --shadow-soft: 0 1px 2px rgba(38, 30, 16, 0.05), 0 10px 30px rgba(38, 30, 16, 0.07);
  --shadow-lift: 0 2px 6px rgba(38, 30, 16, 0.08), 0 24px 48px rgba(38, 30, 16, 0.13);
  --heading-font: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --body-font: 'Albert Sans', 'Avenir Next', 'Segoe UI', sans-serif;
  --radius-card: 18px;
  --radius-btn: 12px;
}

/* ===== RESET / BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--body-font);
  font-size: 18.5px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(29, 78, 104, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--sea); }
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
::selection { background: var(--gold-pale); color: var(--ink); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ===== SIGNATURE: MAJOLICA CART STRIPE ===== */
.majolica-strip {
  height: 7px;
  background: repeating-linear-gradient(
    45deg,
    var(--sea) 0 16px,
    var(--paper) 16px 20px,
    var(--gold) 20px 36px,
    var(--paper) 36px 40px,
    var(--terracotta) 40px 56px,
    var(--paper) 56px 60px
  );
}

/* ===== SHARED EDITORIAL PIECES ===== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.kicker::before, .kicker::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.kicker--left::before { display: none; }
.kicker--light { color: var(--gold-bright); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(38px, 4.6vw, 58px);
  letter-spacing: -0.005em;
  margin: 18px 0 20px;
  color: var(--sea-night);
}
.section-head h2 em { font-style: italic; font-weight: 500; color: var(--terracotta); }
.section-head p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament span { font-size: 14px; line-height: 1; transform: translateY(-1px); }
.ornament span:nth-child(2) { color: var(--sea); font-size: 11px; }
.ornament span:nth-child(3) { color: var(--terracotta); }

/* Scroll reveal (class added by JS only, so no JS means fully visible) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 243, 226, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255, 252, 242, 0.96);
  box-shadow: 0 6px 24px rgba(38, 30, 16, 0.08);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 700;
  color: var(--sea-deep);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--terracotta); }
.nav-logo .logo-mark { font-size: 22px; transform: translateY(1px); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--sea-deep); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-cta {
  background: var(--sea-deep);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.1em;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--terracotta); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--sea-deep);
  padding: 8px 12px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 28px 104px;
  background:
    radial-gradient(1000px 520px at 90% -10%, rgba(233, 189, 82, 0.16), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(29, 78, 104, 0.10), transparent 55%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}
.hero-copy { animation: heroRise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-copy .kicker { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--sea-night);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
  display: block;
}
.hero-lede {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-bottom: 40px; }
.btn-primary {
  display: inline-block;
  background: var(--sea-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.05em;
  padding: 17px 38px;
  border-radius: var(--radius-btn);
  box-shadow: 0 14px 30px rgba(20, 58, 79, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary:hover {
  background: var(--sea);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(20, 58, 79, 0.32);
}
.btn-ghost {
  display: inline-block;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.05em;
  color: var(--terracotta-deep);
  padding: 16px 30px;
  border: 1.5px solid rgba(184, 92, 56, 0.45);
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
}
.btn-ghost:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.hero-fats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-fats span.dot { color: var(--gold); letter-spacing: 0; }

/* Layered ceramic tile photo */
.hero-figure { position: relative; animation: heroRise 0.9s 0.15s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-figure::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 34px;
  right: -22px;
  bottom: -22px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border-radius: 24px;
  opacity: 0.9;
}
.hero-figure::after {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 44%;
  height: 46%;
  border: 1.5px solid rgba(29, 78, 104, 0.4);
  border-radius: 20px;
  pointer-events: none;
}
.hero-tile {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(12, 40, 55, 0) 58%, rgba(12, 40, 55, 0.38) 100%);
  pointer-events: none;
}
.hero-tile img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 6s ease;
}
.hero-figure:hover .hero-tile img { transform: scale(1.06); }
.hero-caption {
  position: absolute;
  left: -28px;
  bottom: 30px;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-caption .cap-mark {
  font-family: var(--heading-font);
  font-size: 26px;
  color: var(--terracotta);
  line-height: 1;
}
.hero-caption .cap-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--sea-deep);
  line-height: 1.2;
}
.hero-caption .cap-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HOUSE RULES STRIP ===== */
.principles {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 56px 28px;
}
.principles-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.principle {
  padding: 8px 44px;
  border-left: 1px solid var(--line-soft);
}
.principle:first-child { border-left: none; padding-left: 0; }
.principle .p-num {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.principle h3 { font-size: 26px; margin-bottom: 8px; color: var(--sea-deep); }
.principle p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

/* ===== NEXBURN / WELLNESS SECTIONS ===== */
.shapeon-section {
  position: relative;
  padding: 104px 28px 96px;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(233, 189, 82, 0.12), transparent 55%),
    radial-gradient(900px 600px at 95% 100%, rgba(184, 92, 56, 0.16), transparent 55%),
    linear-gradient(170deg, var(--sea-deep) 0%, var(--sea-night) 100%);
  color: #f2ecda;
}
.shapeon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(243, 226, 176, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.shapeon-section > .container { position: relative; z-index: 1; }
.shapeon-header { text-align: center; max-width: 780px; margin: 0 auto 60px; }
.shapeon-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(233, 189, 82, 0.4);
  border-radius: var(--radius-btn);
  padding: 9px 22px;
  margin-bottom: 24px;
  background: rgba(233, 189, 82, 0.07);
}
.shapeon-header h2 {
  font-size: clamp(36px, 4.4vw, 54px);
  color: #fbf7e9;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.shapeon-header h2 em { font-style: italic; font-weight: 500; color: var(--gold-bright); }
.shapeon-header p {
  font-size: 18.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(242, 236, 218, 0.82);
  max-width: 660px;
  margin: 0 auto;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto 52px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, #f8f0dc 100%);
  color: var(--ink);
  border: 1px solid rgba(207, 154, 37, 0.22);
  border-radius: var(--radius-card);
  padding: 38px 26px 30px;
  box-shadow: 0 18px 44px rgba(6, 18, 26, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(207, 154, 37, 0.55);
  box-shadow: 0 30px 60px rgba(6, 18, 26, 0.45);
}
.product-card.featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, #fffef8 0%, #faf1da 100%);
  transform: scale(1.045);
  z-index: 2;
}
.product-card.featured:hover { transform: scale(1.045) translateY(-8px); }
.product-card.featured::before {
  content: "Most Chosen";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #2b2005;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.product-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(184, 92, 56, 0.3);
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 20px;
}
.product-img {
  width: 168px;
  height: 196px;
  object-fit: contain;
  margin: 4px auto 18px;
  filter: drop-shadow(0 14px 18px rgba(38, 30, 16, 0.18));
  transition: transform 0.35s ease;
}
.product-card:hover .product-img { transform: translateY(-4px) scale(1.03); }
.product-bottles {
  font-family: var(--heading-font);
  font-size: 31px;
  font-weight: 700;
  color: var(--sea-deep);
  margin-bottom: 10px;
}
.product-price-old {
  font-size: 14.5px;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.product-price {
  font-family: var(--heading-font);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--terracotta-deep);
  margin-bottom: 8px;
}
.product-price span {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-faint);
  margin-left: 4px;
}
.product-total { font-size: 15px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.product-savings { font-size: 14px; font-weight: 600; color: var(--olive); margin-bottom: 8px; }
.product-shipping { font-size: 13.5px; color: var(--ink-faint); margin-bottom: 24px; }
.btn-order {
  display: block;
  width: 100%;
  margin-top: auto;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 20px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(150, 68, 42, 0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-order:hover {
  background: var(--terracotta-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(150, 68, 42, 0.4);
}
.product-card.featured .btn-order { background: var(--sea-deep); box-shadow: 0 12px 24px rgba(12, 40, 55, 0.4); }
.product-card.featured .btn-order:hover { background: var(--sea); }

/* Trust + guarantee */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 44px;
  margin: 0 auto 44px;
  max-width: 820px;
}
.trust-badges img {
  height: 46px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(0.94) sepia(0.18);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.trust-badges img:hover { opacity: 1; transform: translateY(-2px); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(243, 226, 176, 0.07);
  border: 1px solid rgba(233, 189, 82, 0.3);
  border-radius: var(--radius-card);
  padding: 26px 36px;
}
.guarantee img { width: 84px; height: 84px; flex-shrink: 0; }
.guarantee p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(242, 236, 218, 0.92);
  text-align: left;
  margin: 0;
}
.guarantee p strong { color: var(--gold-bright); font-weight: 600; }

/* Bottom wellness variant */
.shapeon-section--bottom {
  background:
    radial-gradient(900px 500px at 88% 0%, rgba(233, 189, 82, 0.12), transparent 55%),
    radial-gradient(900px 600px at 5% 100%, rgba(184, 92, 56, 0.18), transparent 55%),
    linear-gradient(195deg, var(--sea-night) 0%, var(--sea-deep) 100%);
}

/* ===== RECIPES ===== */
.recipes-section {
  padding: 110px 28px 100px;
  background:
    radial-gradient(900px 460px at 8% 4%, rgba(233, 189, 82, 0.10), transparent 55%),
    radial-gradient(800px 500px at 96% 92%, rgba(29, 78, 104, 0.06), transparent 55%);
}
.recipes-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}
.recipe-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s ease;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.recipe-media { position: relative; overflow: hidden; }
.recipe-img { width: 100%; height: 246px; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1); }
.recipe-card:hover .recipe-img { transform: scale(1.06); }
.recipe-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 40, 55, 0) 62%, rgba(12, 40, 55, 0.3) 100%);
  pointer-events: none;
}
.recipe-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 252, 242, 0.94);
  color: var(--terracotta-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(12, 40, 55, 0.18);
}
.recipe-info { display: flex; flex-direction: column; flex: 1; padding: 28px 28px 26px; }
.recipe-info h3 {
  font-size: 29px;
  color: var(--sea-deep);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.recipe-meta .sep { color: var(--gold); }
.recipe-desc { font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 22px; flex-grow: 1; }
.btn-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(29, 78, 104, 0.4);
  border-radius: var(--radius-btn);
  color: var(--sea-deep);
  font-family: var(--body-font);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-expand::after { content: "▾"; font-size: 12px; transition: transform 0.3s ease; }
.btn-expand:hover { background: var(--sea-deep); border-color: var(--sea-deep); color: var(--cream); }
.recipe-card:has(.recipe-details.active) .btn-expand::after { transform: rotate(180deg); }
.recipe-details {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed rgba(207, 154, 37, 0.45);
  animation: detailsIn 0.35s ease;
}
.recipe-details.active { display: block; }
@keyframes detailsIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.recipe-details h4 {
  font-size: 21px;
  color: var(--terracotta-deep);
  margin: 20px 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recipe-details h4::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.recipe-details h4:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol {
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.recipe-details li { margin-bottom: 6px; }
.recipe-details li::marker { color: var(--gold); font-weight: 600; }

/* ===== ABOUT / OUR KITCHEN ===== */
.about-section {
  background: var(--cream-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 104px 28px;
}
.about-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: center;
}
.about-figure { position: relative; }
.about-figure::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -20px;
  right: 26px;
  bottom: -20px;
  background: linear-gradient(135deg, var(--sea), var(--sea-deep));
  border-radius: 24px;
  opacity: 0.9;
}
.about-tile {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-tile img { width: 100%; height: 450px; object-fit: cover; transition: transform 5s ease; }
.about-figure:hover .about-tile img { transform: scale(1.05); }
.about-copy .kicker { margin-bottom: 20px; }
.about-copy h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  color: var(--sea-night);
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}
.about-copy h2 em { font-style: italic; font-weight: 500; color: var(--terracotta); }
.about-copy p { font-size: 17.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; }
.about-sign {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 25px;
  color: var(--terracotta);
  margin-top: 10px;
}
.about-sign .salute { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--sea-night);
  color: rgba(242, 236, 218, 0.78);
  padding: 80px 28px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.2fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(243, 226, 176, 0.14);
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 29px;
  font-weight: 700;
  color: #fbf7e9;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 15.5px; line-height: 1.75; max-width: 360px; color: rgba(242, 236, 218, 0.7); }
.footer-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.footer h4 {
  font-family: var(--body-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(242, 236, 218, 0.72);
  font-size: 15.5px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover { color: var(--gold-bright); padding-left: 5px; }
.footer-company p { font-size: 14.5px; line-height: 1.85; color: rgba(242, 236, 218, 0.68); }
.footer-company strong { color: #fbf7e9; font-weight: 600; }
.footer-company a { color: rgba(242, 236, 218, 0.82); text-decoration: underline; text-underline-offset: 3px; }
.footer-company a:hover { color: var(--gold-bright); }
.footer-disclaimer { padding: 30px 0 22px; }
.footer-disclaimer p { font-size: 13px; line-height: 1.75; color: rgba(242, 236, 218, 0.46); max-width: 1080px; }
.footer-bottom { border-top: 1px solid rgba(243, 226, 176, 0.1); padding-top: 22px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(242, 236, 218, 0.42); }

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 28px 90px;
  line-height: 1.78;
  color: var(--ink);
}
.legal-main h1 {
  font-size: clamp(42px, 5.2vw, 62px);
  color: var(--sea-night);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.legal-main h1 + p em, .legal-meta {
  font-family: var(--heading-font);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 17px;
}
.legal-main h2 {
  font-size: clamp(25px, 3.1vw, 32px);
  color: var(--sea-deep);
  margin: 44px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal-main h3 { font-size: 22px; color: var(--sea-deep); margin: 20px 0 10px; }
.legal-main p { margin-bottom: 15px; font-size: 16.5px; color: var(--ink-soft); }
.legal-main ul, .legal-main ol { margin: 15px 0 15px 26px; color: var(--ink-soft); }
.legal-main li { margin-bottom: 9px; font-size: 16.5px; }
.legal-main li::marker { color: var(--gold); }
.legal-main a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-main a:hover { color: var(--sea); }
.legal-main strong { color: var(--ink); font-weight: 600; }
.company-contact-box {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  margin-top: 26px;
}
.company-contact-box h3 { margin-top: 0; color: var(--sea-deep); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  html { scroll-padding-top: 84px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 4px;
    padding: 22px 28px 28px;
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 24px 40px rgba(38, 30, 16, 0.14);
    transform: translateY(-130%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 150;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin-top: 10px; }
  .hero-inner { gap: 48px; }
  .hero-tile img { height: 470px; }
  .hero-figure::before { top: 22px; left: 24px; right: -14px; bottom: -14px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-8px); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .principle { padding: 8px 28px; }
}
@media (max-width: 768px) {
  .hero { padding: 56px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-lede { max-width: none; }
  .hero-tile img { height: 410px; }
  .hero-figure::before { top: 18px; left: 18px; right: -10px; bottom: -10px; }
  .hero-figure::after { display: none; }
  .hero-caption { left: 12px; bottom: 18px; }
  .principles { padding: 44px 24px; }
  .principles-grid { grid-template-columns: 1fr; gap: 30px; }
  .principle { border-left: none; padding: 0; border-top: 1px solid var(--line-soft); padding-top: 26px; }
  .principle:first-child { border-top: none; padding-top: 0; }
  .shapeon-section { padding: 80px 24px 72px; }
  .product-grid { grid-template-columns: 1fr; max-width: 420px; }
  .recipes-section { padding: 84px 24px 76px; }
  .recipes-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 48px; }
  .about-section { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-tile img { height: 380px; }
  .about-figure::before { top: 16px; left: -10px; right: 16px; bottom: -10px; }
  .guarantee { flex-direction: column; text-align: center; padding: 24px; }
  .guarantee p { text-align: center; }
  .trust-badges { gap: 26px; }
  .trust-badges img { height: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  body { font-size: 17.5px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 50px); }
  .hero-lede { font-size: 17.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .hero-tile img { height: 330px; }
  .hero-caption { padding: 11px 16px; }
  .section-head h2 { font-size: 34px; }
  .recipe-info { padding: 24px 22px 22px; }
  .product-card { padding: 32px 22px 26px; }
  .legal-main { padding: 56px 22px 64px; }
  .company-contact-box { padding: 22px; }
}
