/* ============================================================
   Palvri Table · palvri.com
   Provencal editorial stylesheet
   Palette: warm cream, lavender dusk, sun-washed ochre,
            soft sage, aubergine night
   Type: Cormorant Garamond (display serif) + Karla (body sans)
   ============================================================ */

:root {
  --ink: #2b2733;
  --ink-soft: #5b5566;
  --ink-faint: #837c90;
  --paper: #fdfbf4;
  --cream: #f7f1e3;
  --cream-deep: #efe6d1;
  --lavender: #6d5a94;
  --lavender-deep: #514373;
  --night: #262038;
  --night-soft: #332b4d;
  --ochre: #b0742a;
  --ochre-text: #8f5d1d;
  --ochre-bright: #d99b4e;
  --ochre-pale: #f0dfc0;
  --sage: #67754f;
  --sage-deep: #4d5939;
  --line: rgba(64, 52, 82, 0.16);
  --line-soft: rgba(64, 52, 82, 0.09);
  --shadow-soft: 0 1px 2px rgba(43, 33, 58, 0.05), 0 10px 30px rgba(43, 33, 58, 0.08);
  --shadow-lift: 0 2px 6px rgba(43, 33, 58, 0.08), 0 26px 50px rgba(43, 33, 58, 0.14);
  --heading-font: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --body-font: 'Karla', '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: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(-48deg, rgba(109, 90, 148, 0.028) 0, rgba(109, 90, 148, 0.028) 1px, transparent 1px, transparent 11px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--lavender); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--ochre-text); }
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.16;
  color: var(--ink);
}
::selection { background: var(--ochre-pale); color: var(--ink); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ===== SHARED EDITORIAL PIECES ===== */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender);
}
.kicker::before, .kicker::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.45;
}
.kicker--left::before { display: none; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(38px, 4.6vw, 58px);
  letter-spacing: -0.005em;
  margin: 18px 0 20px;
}
.section-head h2 em { font-style: italic; font-weight: 500; color: var(--lavender-deep); }
.section-head p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 650px;
  margin: 0 auto;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ochre);
  margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: "";
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--ochre));
}
.ornament::after { background: linear-gradient(90deg, var(--ochre), transparent); }
.ornament span { font-size: 20px; line-height: 1; }

/* Scroll reveal (class added by JS only, so no JS means fully visible) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  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; transition: none !important; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 241, 227, 0.9);
  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(253, 251, 244, 0.96);
  box-shadow: 0 6px 24px rgba(43, 33, 58, 0.09);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 78px;
  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(--ink);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--lavender-deep); }
.nav-logo .logo-mark { font-size: 21px; transform: translateY(1px); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--ochre);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-cta {
  background: var(--lavender-deep);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  letter-spacing: 0.12em;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--ochre); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--lavender-deep);
  padding: 8px 12px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 28px 100px;
  background:
    radial-gradient(940px 520px at 6% -12%, rgba(217, 155, 78, 0.17), transparent 58%),
    radial-gradient(860px 600px at 104% 96%, rgba(109, 90, 148, 0.15), 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: 72px;
  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(--night);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--lavender);
  display: block;
}
.hero-lede {
  font-size: 20px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 530px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-bottom: 42px; }
.btn-primary {
  display: inline-block;
  background: var(--lavender-deep);
  color: #fdfbf4;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.06em;
  padding: 17px 38px;
  border-radius: var(--radius-btn);
  box-shadow: 0 14px 30px rgba(81, 67, 115, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary:hover {
  background: var(--lavender);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(81, 67, 115, 0.35);
}
.btn-ghost {
  display: inline-block;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.06em;
  color: var(--ochre-text);
  padding: 16px 30px;
  border: 1.5px solid rgba(176, 116, 42, 0.5);
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
}
.btn-ghost:hover { background: var(--ochre); border-color: var(--ochre); color: #fff; }
.hero-fats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-fats span.dot { color: var(--ochre); letter-spacing: 0; }
.hero-figure { position: relative; animation: heroRise 0.9s 0.15s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-frame {
  position: absolute;
  top: 22px;
  left: 22px;
  right: -22px;
  bottom: -22px;
  border: 1.5px solid rgba(176, 116, 42, 0.55);
  border-radius: var(--radius-card);
  pointer-events: none;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(38, 32, 56, 0) 58%, rgba(38, 32, 56, 0.38) 100%);
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 6s ease;
}
.hero-figure:hover .hero-photo img { transform: scale(1.06); }
.hero-caption {
  position: absolute;
  left: -26px;
  bottom: 32px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--ochre);
  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(--lavender);
  line-height: 1;
}
.hero-caption .cap-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--night);
  line-height: 1.2;
}
.hero-caption .cap-sub {
  font-size: 12px;
  font-weight: 700;
  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); }
}

/* ===== PANTRY STRIP ===== */
.pantry {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 56px 28px;
}
.pantry-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pantry-item {
  padding: 8px 44px;
  border-left: 1px solid var(--line-soft);
}
.pantry-item:first-child { border-left: none; padding-left: 0; }
.pantry-item .p-fr {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--ochre-text);
  display: block;
  margin-bottom: 6px;
}
.pantry-item h3 { font-size: 25px; margin-bottom: 8px; color: var(--lavender-deep); }
.pantry-item 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 520px at 10% 0%, rgba(217, 155, 78, 0.13), transparent 55%),
    radial-gradient(880px 620px at 94% 100%, rgba(103, 117, 79, 0.18), transparent 55%),
    linear-gradient(168deg, var(--night-soft) 0%, var(--night) 100%);
  color: #f1ecdf;
}
.shapeon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-48deg, rgba(240, 223, 192, 0.035) 0, rgba(240, 223, 192, 0.035) 1px, transparent 1px, transparent 13px);
  pointer-events: none;
}
.shapeon-section > .container { position: relative; z-index: 1; }
.shapeon-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.shapeon-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ochre-bright);
  border: 1px solid rgba(217, 155, 78, 0.42);
  border-radius: var(--radius-btn);
  padding: 9px 22px;
  margin-bottom: 24px;
  background: rgba(217, 155, 78, 0.08);
}
.shapeon-header h2 {
  font-size: clamp(36px, 4.4vw, 54px);
  color: #faf6ec;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.shapeon-header h2 em { font-style: italic; font-weight: 500; color: var(--ochre-bright); }
.shapeon-header p {
  font-size: 18.5px;
  line-height: 1.75;
  color: rgba(241, 236, 223, 0.84);
  max-width: 670px;
  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%, #f6efdf 100%);
  color: var(--ink);
  border: 1px solid rgba(176, 116, 42, 0.24);
  border-radius: var(--radius-card);
  padding: 38px 26px 30px;
  box-shadow: 0 18px 44px rgba(16, 12, 26, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(176, 116, 42, 0.6);
  box-shadow: 0 30px 60px rgba(16, 12, 26, 0.48);
}
.product-card.featured {
  border: 1.5px solid var(--ochre);
  background: linear-gradient(180deg, #fffef9 0%, #f9f1dc 100%);
  transform: scale(1.045);
  z-index: 2;
}
.product-card.featured:hover { transform: scale(1.045) translateY(-8px); }
.product-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ochre);
  color: #fffdf6;
  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(--lavender-deep);
  border: 1px solid rgba(109, 90, 148, 0.35);
  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(43, 33, 58, 0.2));
  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(--night);
  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(--lavender-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: 700; color: var(--ink-soft); margin-bottom: 6px; }
.product-savings { font-size: 14px; font-weight: 700; color: var(--sage-deep); 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(--ochre);
  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(143, 93, 29, 0.32);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-order:hover {
  background: var(--ochre-text);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(143, 93, 29, 0.42);
}
.product-card.featured .btn-order { background: var(--lavender-deep); box-shadow: 0 12px 24px rgba(46, 36, 70, 0.42); }
.product-card.featured .btn-order:hover { background: var(--lavender); }

/* 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.93) sepia(0.12);
  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(240, 223, 192, 0.07);
  border: 1px solid rgba(217, 155, 78, 0.32);
  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(241, 236, 223, 0.92);
  text-align: left;
  margin: 0;
}
.guarantee p strong { color: var(--ochre-bright); font-weight: 700; }

/* Bottom wellness variant */
.shapeon-section--bottom {
  background:
    radial-gradient(900px 520px at 90% 0%, rgba(217, 155, 78, 0.12), transparent 55%),
    radial-gradient(880px 620px at 4% 100%, rgba(109, 90, 148, 0.24), transparent 55%),
    linear-gradient(196deg, var(--night) 0%, var(--night-soft) 100%);
}

/* ===== RECIPES ===== */
.recipes-section { padding: 112px 28px 100px; }
.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(38, 32, 56, 0) 62%, rgba(38, 32, 56, 0.3) 100%);
  pointer-events: none;
}
.recipe-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(253, 251, 244, 0.94);
  color: var(--lavender-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(38, 32, 56, 0.18);
}
.recipe-info { display: flex; flex-direction: column; flex: 1; padding: 28px 28px 26px; }
.recipe-info h3 {
  font-size: 29px;
  color: var(--night);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.recipe-meta .sep { color: var(--ochre); }
.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(109, 90, 148, 0.45);
  border-radius: var(--radius-btn);
  color: var(--lavender-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(--lavender-deep); border-color: var(--lavender-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(176, 116, 42, 0.5);
  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(--lavender-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(--ochre); font-weight: 700; }

/* ===== 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-frame {
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1.5px solid rgba(109, 90, 148, 0.45);
  border-radius: var(--radius-card);
  pointer-events: none;
}
.about-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-photo img { width: 100%; height: 460px; object-fit: cover; transition: transform 5s ease; }
.about-figure:hover .about-photo img { transform: scale(1.05); }
.about-copy .kicker { margin-bottom: 20px; }
.about-copy h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  color: var(--night);
  letter-spacing: -0.005em;
  margin-bottom: 22px;
}
.about-copy h2 em { font-style: italic; font-weight: 500; color: var(--lavender); }
.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-weight: 500;
  font-size: 25px;
  color: var(--lavender-deep);
  margin-top: 10px;
}
.about-sign .bon { color: var(--ochre-text); }

/* ===== FOOTER ===== */
.footer {
  background: var(--night);
  color: rgba(241, 236, 223, 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(240, 223, 192, 0.14);
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 29px;
  font-weight: 700;
  color: #faf6ec;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 15.5px; line-height: 1.75; max-width: 360px; color: rgba(241, 236, 223, 0.7); }
.footer-tag {
  display: inline-block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ochre-bright);
}
.footer h4 {
  font-family: var(--body-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ochre-bright);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(241, 236, 223, 0.72);
  font-size: 15.5px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-links a:hover { color: var(--ochre-bright); padding-left: 5px; }
.footer-company p { font-size: 14.5px; line-height: 1.85; color: rgba(241, 236, 223, 0.68); }
.footer-company strong { color: #faf6ec; font-weight: 700; }
.footer-company a { color: rgba(241, 236, 223, 0.82); text-decoration: underline; text-underline-offset: 3px; }
.footer-company a:hover { color: var(--ochre-bright); }
.footer-disclaimer { padding: 30px 0 22px; }
.footer-disclaimer p { font-size: 13px; line-height: 1.75; color: rgba(241, 236, 223, 0.48); max-width: 1080px; }
.footer-bottom { border-top: 1px solid rgba(240, 223, 192, 0.1); padding-top: 22px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(241, 236, 223, 0.44); }

/* ===== 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(--night);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.legal-meta {
  font-family: var(--heading-font);
  font-style: italic;
  color: var(--ink-faint);
  font-size: 18px;
}
.legal-main h2 {
  font-size: clamp(25px, 3vw, 32px);
  color: var(--lavender-deep);
  margin: 44px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal-main h3 { font-size: 22px; color: var(--lavender-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(--ochre); }
.legal-main a { color: var(--lavender); text-decoration: underline; text-underline-offset: 3px; }
.legal-main a:hover { color: var(--ochre-text); }
.legal-main strong { color: var(--ink); font-weight: 700; }
.company-contact-box {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--ochre);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 28px 32px;
  margin-top: 26px;
}
.company-contact-box h3 { margin-top: 0; color: var(--night); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .hero-photo img { height: 470px; }
  .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; }
  .pantry-item { padding: 8px 28px; }
}
@media (max-width: 768px) {
  html { scroll-padding-top: 86px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 78px;
    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(43, 33, 58, 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 { padding: 56px 24px 76px; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-lede { max-width: none; }
  .hero-photo img { height: 420px; }
  .hero-frame { top: 14px; left: 14px; right: -14px; bottom: -14px; }
  .hero-caption { left: 12px; bottom: 20px; }
  .pantry { padding: 44px 24px; }
  .pantry-grid { grid-template-columns: 1fr; gap: 30px; }
  .pantry-item { border-left: none; padding: 26px 0 0; border-top: 1px solid var(--line-soft); }
  .pantry-item: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-photo img { height: 380px; }
  .about-frame { top: -12px; left: -12px; right: 12px; bottom: 12px; }
  .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: 17px; }
  .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-photo 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; }
}
