/* ============================================================
   Relmoa Mezze · relmoa.com
   Levantine editorial stylesheet
   Palette: paper cream, deep olive, cedar terracotta, aged gold
   Type: Amiri (display serif) + Jost (body sans)
   ============================================================ */

:root {
  --ink: #221c12;
  --ink-soft: #5d5443;
  --ink-faint: #8a8070;
  --paper: #fffdf6;
  --cream: #f7f1e2;
  --cream-deep: #efe5cd;
  --sand: #e3d4b2;
  --olive: #3c4d2e;
  --olive-deep: #27331e;
  --olive-night: #1d2716;
  --cedar: #a04a30;
  --cedar-deep: #823a25;
  --gold: #b3852f;
  --gold-bright: #d9ad57;
  --gold-pale: #ecd9ae;
  --line: rgba(74, 60, 34, 0.16);
  --line-soft: rgba(74, 60, 34, 0.09);
  --shadow-soft: 0 1px 2px rgba(46, 36, 18, 0.05), 0 10px 30px rgba(46, 36, 18, 0.07);
  --shadow-lift: 0 2px 6px rgba(46, 36, 18, 0.08), 0 24px 48px rgba(46, 36, 18, 0.13);
  --heading-font: 'Amiri', 'Times New Roman', Georgia, serif;
  --body-font: 'Jost', 'Avenir Next', 'Segoe UI', sans-serif;
  --radius-card: 16px;
  --radius-btn: 999px;
}

/* ===== 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:
    radial-gradient(rgba(74, 60, 34, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cedar); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}
::selection { background: var(--gold-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: 12.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cedar);
}
.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(36px, 4.4vw, 54px);
  letter-spacing: -0.01em;
  margin: 18px 0 20px;
}
.section-head h2 em { font-style: italic; color: var(--cedar); }
.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: 18px;
  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: 15px; line-height: 1; transform: translateY(-1px); }

/* 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(247, 241, 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, 253, 246, 0.95);
  box-shadow: 0 6px 24px rgba(46, 36, 18, 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: 26px;
  font-weight: 700;
  color: var(--olive-deep);
  letter-spacing: 0.01em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--cedar); }
.nav-logo .logo-mark { font-size: 22px; transform: translateY(1px); }
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  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(--gold);
  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(--olive-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(--cedar); color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--olive-deep);
  padding: 8px 12px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 28px 96px;
  background:
    radial-gradient(1000px 520px at 88% -10%, rgba(179, 133, 47, 0.14), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(60, 77, 46, 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: 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(48px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--olive-night);
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--cedar);
  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(--olive-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.06em;
  padding: 17px 38px;
  border-radius: var(--radius-btn);
  box-shadow: 0 14px 30px rgba(39, 51, 30, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary:hover {
  background: var(--olive);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(39, 51, 30, 0.32);
}
.btn-ghost {
  display: inline-block;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.06em;
  color: var(--cedar-deep);
  padding: 16px 30px;
  border: 1.5px solid rgba(160, 74, 48, 0.45);
  border-radius: var(--radius-btn);
  transition: all 0.25s ease;
}
.btn-ghost:hover { background: var(--cedar); border-color: var(--cedar); 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; }
.hero-figure { position: relative; animation: heroRise 0.9s 0.15s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.hero-arch {
  position: relative;
  border-radius: 300px 300px 22px 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(34, 28, 18, 0) 58%, rgba(34, 28, 18, 0.38) 100%);
  pointer-events: none;
}
.hero-arch img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 6s ease;
}
.hero-figure:hover .hero-arch img { transform: scale(1.06); }
.hero-frame {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1.5px solid rgba(179, 133, 47, 0.5);
  border-radius: 316px 316px 30px 30px;
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  left: -28px;
  bottom: 34px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  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(--gold);
  line-height: 1;
}
.hero-caption .cap-title {
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--olive-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); }
}

/* ===== PRINCIPLES STRIP ===== */
.principles {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 54px 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: 24px; margin-bottom: 8px; color: var(--olive-deep); }
.principle p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

/* ===== SHAPEON / WELLNESS SECTIONS ===== */
.shapeon-section {
  position: relative;
  padding: 104px 28px 96px;
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(217, 173, 87, 0.10), transparent 55%),
    radial-gradient(900px 600px at 95% 100%, rgba(160, 74, 48, 0.14), transparent 55%),
    linear-gradient(170deg, var(--olive-deep) 0%, var(--olive-night) 100%);
  color: #f4eedc;
}
.shapeon-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(236, 217, 174, 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(217, 173, 87, 0.4);
  border-radius: var(--radius-btn);
  padding: 9px 22px;
  margin-bottom: 24px;
  background: rgba(217, 173, 87, 0.07);
}
.shapeon-header h2 {
  font-size: clamp(34px, 4.2vw, 50px);
  color: #fbf6e8;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.shapeon-header h2 em { font-style: italic; color: var(--gold-bright); }
.shapeon-header p {
  font-size: 18.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(244, 238, 220, 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%, #f8f1de 100%);
  color: var(--ink);
  border: 1px solid rgba(179, 133, 47, 0.22);
  border-radius: var(--radius-card);
  padding: 38px 26px 30px;
  box-shadow: 0 18px 44px rgba(15, 20, 11, 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(179, 133, 47, 0.55);
  box-shadow: 0 30px 60px rgba(15, 20, 11, 0.45);
}
.product-card.featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, #fffef9 0%, #faf2dc 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: #2c1f08;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}
.product-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cedar);
  border: 1px solid rgba(160, 74, 48, 0.3);
  border-radius: var(--radius-btn);
  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(46, 36, 18, 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: 30px;
  font-weight: 700;
  color: var(--olive-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: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--cedar-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(--cedar);
  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(130, 58, 37, 0.3);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-order:hover {
  background: var(--cedar-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(130, 58, 37, 0.4);
}
.product-card.featured .btn-order { background: var(--olive-deep); box-shadow: 0 12px 24px rgba(29, 39, 22, 0.4); }
.product-card.featured .btn-order:hover { background: var(--olive); }

/* 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(236, 217, 174, 0.07);
  border: 1px solid rgba(217, 173, 87, 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(244, 238, 220, 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(217, 173, 87, 0.10), transparent 55%),
    radial-gradient(900px 600px at 5% 100%, rgba(160, 74, 48, 0.16), transparent 55%),
    linear-gradient(195deg, var(--olive-night) 0%, var(--olive-deep) 100%);
}

/* ===== RECIPES ===== */
.recipes-section { padding: 110px 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: 248px; 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(34, 28, 18, 0) 62%, rgba(34, 28, 18, 0.3) 100%);
  pointer-events: none;
}
.recipe-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(255, 253, 246, 0.94);
  color: var(--cedar-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  box-shadow: 0 4px 12px rgba(34, 28, 18, 0.18);
}
.recipe-info { display: flex; flex-direction: column; flex: 1; padding: 28px 28px 26px; }
.recipe-info h3 {
  font-size: 27px;
  color: var(--olive-deep);
  letter-spacing: -0.01em;
  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(60, 77, 46, 0.4);
  border-radius: var(--radius-btn);
  color: var(--olive-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(--olive-deep); border-color: var(--olive-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(179, 133, 47, 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: 20px;
  color: var(--cedar-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 / MEET THE COOK ===== */
.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-arch {
  border-radius: 240px 240px 18px 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-arch img { width: 100%; height: 460px; object-fit: cover; transition: transform 5s ease; }
.about-figure:hover .about-arch img { transform: scale(1.05); }
.about-frame {
  position: absolute;
  inset: -14px;
  border: 1.5px solid rgba(160, 74, 48, 0.4);
  border-radius: 254px 254px 26px 26px;
  pointer-events: none;
}
.about-copy .kicker { margin-bottom: 20px; }
.about-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  color: var(--olive-night);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.about-copy h2 em { font-style: italic; color: var(--cedar); }
.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: 24px;
  color: var(--cedar);
  margin-top: 10px;
}
.about-sign .sahtein { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--olive-night);
  color: rgba(244, 238, 220, 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(236, 217, 174, 0.14);
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: #fbf6e8;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 15.5px; line-height: 1.75; max-width: 360px; color: rgba(244, 238, 220, 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(244, 238, 220, 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(244, 238, 220, 0.68); }
.footer-company strong { color: #fbf6e8; font-weight: 600; }
.footer-company a { color: rgba(244, 238, 220, 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(244, 238, 220, 0.46); max-width: 1080px; }
.footer-bottom { border-top: 1px solid rgba(236, 217, 174, 0.1); padding-top: 22px; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(244, 238, 220, 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(40px, 5vw, 58px);
  color: var(--olive-night);
  letter-spacing: -0.01em;
  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(24px, 3vw, 30px);
  color: var(--olive-deep);
  margin: 44px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.legal-main h3 { font-size: 21px; color: var(--olive-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(--cedar); text-decoration: underline; text-underline-offset: 3px; }
.legal-main a:hover { color: var(--gold); }
.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(--olive-deep); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .hero-arch img { height: 480px; }
  .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) {
  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(46, 36, 18, 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 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .hero-lede { max-width: none; }
  .hero-arch img { height: 420px; }
  .hero-caption { left: 12px; bottom: 20px; }
  .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: 52px; }
  .about-arch img { height: 380px; }
  .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(38px, 11vw, 48px); }
  .hero-lede { font-size: 17.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; }
  .hero-arch img { height: 340px; }
  .hero-caption { padding: 11px 16px; }
  .section-head h2 { font-size: 32px; }
  .recipe-info { padding: 24px 22px 22px; }
  .product-card { padding: 32px 22px 26px; }
  .legal-main { padding: 56px 22px 64px; }
  .company-contact-box { padding: 22px; }
}
