/* ====== vitnar.com | Vitnar Supra | Georgian Table Stylesheet ====== */
:root {
  --wine: #5a1226;
  --wine-deep: #3a0a18;
  --wine-bright: #7c1f38;
  --walnut: #4a3428;
  --walnut-deep: #2c1e15;
  --gold: #c9a24b;
  --gold-soft: #e3c27d;
  --gold-ink: #8a6b22;
  --cream: #f6efe1;
  --paper: #fffdf7;
  --ink: #2b1c12;
  --ink-soft: #5c4a3a;
  --heading-font: 'Fraunces', Georgia, serif;
  --body-font: 'Karla', 'Helvetica Neue', sans-serif;
  --btn-radius: 2px;
  --shadow-soft: 0 6px 24px rgba(44, 30, 21, 0.10);
  --shadow-lift: 0 18px 48px rgba(44, 30, 21, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  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(--gold-ink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wine); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--heading-font); color: var(--ink); line-height: 1.2; font-weight: 600; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.kicker {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 18px;
}

/* ===== SCROLL REVEALS (degrade gracefully) ===== */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  html.js .reveal.revealed { opacity: 1; transform: none; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(120deg, var(--wine-deep) 0%, var(--wine) 70%, #4a2418 100%);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 22px rgba(30, 8, 14, 0.45); }
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: baseline; gap: 10px;
  font-family: var(--heading-font);
  font-size: 23px; font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.2px;
}
.nav-logo:hover { color: #f1dba6; }
.nav-logo .logo-ka {
  font-family: var(--body-font);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px;
  color: rgba(246, 239, 225, 0.6);
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 26px; color: var(--gold-soft);
  line-height: 1;
}
.nav-links { list-style: none; display: flex; gap: 26px; align-items: center; }
.nav-links a {
  color: rgba(246, 239, 225, 0.88);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.6px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold-soft); border-bottom-color: var(--gold); }

/* ===== HERO (split editorial) ===== */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 600px at 85% 15%, rgba(201, 162, 75, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 700px 500px at 5% 95%, rgba(124, 31, 56, 0.5) 0%, transparent 60%),
    linear-gradient(150deg, var(--wine-deep) 0%, var(--wine) 46%, var(--walnut-deep) 100%);
  padding: 96px 24px 104px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.7;
}
.hero-split {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-tagline {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201, 162, 75, 0.45);
  padding-bottom: 10px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.06;
  color: #fdf7ea;
  margin-bottom: 26px;
  letter-spacing: -0.5px;
  font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero-content p {
  font-size: 19px;
  color: rgba(250, 242, 228, 0.82);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 0 38px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn-hero {
  display: inline-block;
  background: var(--gold);
  color: #241505;
  padding: 17px 36px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.btn-hero:hover {
  background: var(--gold-soft);
  color: #241505;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.45);
}
.btn-hero-ghost {
  display: inline-block;
  padding: 16px 30px;
  border: 1px solid rgba(227, 194, 125, 0.55);
  border-radius: var(--btn-radius);
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-hero-ghost:hover { border-color: var(--gold-soft); color: #fdf7ea; background: rgba(201, 162, 75, 0.12); }
.hero-media { position: relative; z-index: 2; }
.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.hero-frame {
  position: relative;
  padding: 0;
}
.hero-frame::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(201, 162, 75, 0.55);
  border-radius: 2px;
  pointer-events: none;
}
.hero-media figcaption {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(227, 194, 125, 0.75);
  text-align: right;
}

/* ===== SHAPEON / WELLNESS SECTIONS ===== */
.shapeon-section {
  background:
    radial-gradient(ellipse 800px 500px at 15% 10%, rgba(201, 162, 75, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--walnut-deep) 0%, var(--wine-deep) 100%);
  padding: 92px 24px;
  color: #fdf7ea;
}
#wellness.shapeon-section {
  background:
    radial-gradient(ellipse 800px 500px at 85% 90%, rgba(201, 162, 75, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--wine-deep) 0%, var(--walnut-deep) 100%);
}
.shapeon-header { max-width: 780px; margin: 0 auto 24px; text-align: center; }
.shapeon-badge {
  display: inline-block;
  background: rgba(201, 162, 75, 0.14);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 75, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.shapeon-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 4vw, 46px);
  color: #fdf7ea;
  margin-bottom: 18px;
  line-height: 1.15;
  font-weight: 600;
}
.shapeon-header h2 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.shapeon-header p {
  font-size: 18px;
  color: rgba(250, 242, 228, 0.78);
  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: 1080px;
  margin: 54px auto;
}
.product-card {
  background: rgba(253, 247, 234, 0.04);
  border: 1px solid rgba(227, 194, 125, 0.22);
  border-radius: 6px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 194, 125, 0.55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.product-card.featured {
  background: rgba(201, 162, 75, 0.10);
  border-color: var(--gold);
  transform: scale(1.045);
}
.product-card.featured:hover { transform: scale(1.045) translateY(-6px); }
.product-label {
  display: inline-block;
  background: rgba(253, 247, 234, 0.10);
  color: #fdf7ea;
  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(253, 247, 234, 0.25);
}
.product-card.featured .product-label { background: var(--gold); color: #241505; border-color: var(--gold); }
.product-img { width: 160px; height: 200px; object-fit: contain; margin: 12px auto 20px; }
.product-bottles { font-family: var(--heading-font); color: #fdf7ea; font-size: 28px; margin-bottom: 14px; font-weight: 600; }
.product-price-old { color: rgba(250, 242, 228, 0.5); font-size: 15px; text-decoration: line-through; margin-bottom: 6px; }
.product-price { color: var(--gold-soft); font-family: var(--heading-font); font-size: 40px; font-weight: 600; margin-bottom: 6px; line-height: 1; }
.product-price span { font-family: var(--body-font); font-size: 14px; color: rgba(250, 242, 228, 0.7); font-weight: 400; margin-left: 4px; }
.product-total { color: rgba(250, 242, 228, 0.88); font-size: 15px; margin-bottom: 8px; font-weight: 700; }
.product-savings { color: #8fce8f; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.product-shipping { color: rgba(250, 242, 228, 0.75); font-size: 13px; margin-bottom: 22px; letter-spacing: 0.4px; }
.btn-order {
  display: block;
  width: 100%;
  background: var(--gold);
  color: #241505;
  padding: 15px 20px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-order:hover { background: var(--gold-soft); color: #241505; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); }

/* ===== TRUST BADGES + GUARANTEE ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  margin: 36px auto;
  max-width: 800px;
}
.trust-badges img { height: 46px; width: auto; opacity: 0.8; filter: brightness(0) invert(0.92) sepia(0.25); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(253, 247, 234, 0.05);
  border: 1px solid rgba(227, 194, 125, 0.28);
  border-radius: 6px;
  padding: 26px 34px;
  max-width: 720px;
  margin: 36px auto 0;
}
.guarantee img { width: 82px; height: 82px; flex-shrink: 0; }
.guarantee p { color: rgba(250, 242, 228, 0.88); font-size: 15.5px; margin: 0; line-height: 1.65; }
.section-note {
  text-align: center;
  font-size: 13px;
  color: rgba(250, 242, 228, 0.55);
  max-width: 640px;
  margin: 26px auto 0;
  line-height: 1.7;
}

/* ===== RECIPES ===== */
.recipes-section {
  padding: 96px 24px;
  background:
    radial-gradient(ellipse 700px 420px at 92% 4%, rgba(201, 162, 75, 0.10) 0%, transparent 60%),
    var(--cream);
}
.recipes-header { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.recipes-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--wine);
  margin: 6px 0 18px;
  line-height: 1.12;
  font-weight: 600;
}
.recipes-header h2 em { font-style: italic; font-weight: 400; color: var(--walnut); }
.recipes-header p { font-size: 18px; color: var(--ink-soft); line-height: 1.75; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.recipe-card {
  background: var(--paper);
  border: 1px solid rgba(74, 52, 40, 0.12);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.recipe-img-wrap { overflow: hidden; position: relative; }
.recipe-img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1); }
@media (prefers-reduced-motion: no-preference) {
  .recipe-card:hover .recipe-img { transform: scale(1.06); }
}
.recipe-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(58, 10, 24, 0.85);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 2px;
}
.recipe-info { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.recipe-info h3 {
  font-family: var(--heading-font);
  font-size: 24px;
  color: var(--wine);
  margin-bottom: 6px;
  line-height: 1.25;
  font-weight: 600;
}
.recipe-ka {
  font-size: 13px;
  color: var(--gold-ink);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-weight: 700;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 13.5px;
  margin-bottom: 14px;
  font-weight: 700;
}
.recipe-meta span { white-space: nowrap; }
.recipe-desc {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-expand {
  background: var(--wine);
  color: #fdf7ea;
  border: none;
  padding: 13px 20px;
  border-radius: var(--btn-radius);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  text-align: center;
}
.btn-expand:hover { background: var(--wine-bright); transform: translateY(-1px); }
.recipe-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 162, 75, 0.45);
}
@media (prefers-reduced-motion: no-preference) {
  .recipe-details { animation: fadeIn 0.3s ease; }
}
.recipe-details.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.recipe-details h4 {
  font-family: var(--heading-font);
  color: var(--walnut);
  font-size: 18px;
  margin: 18px 0 10px;
  font-weight: 600;
}
.recipe-details h4:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol {
  padding-left: 22px;
  color: var(--ink-soft);
  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(--gold-ink); font-weight: 700; }

/* ===== ABOUT / OUR TABLE ===== */
.about-section {
  background: linear-gradient(180deg, #efe5d2 0%, var(--cream) 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.4);
  border-bottom: 1px solid rgba(201, 162, 75, 0.4);
  padding: 96px 24px;
}
.about-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-lift);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(138, 107, 34, 0.5);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}
.about-copy h2 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--wine);
  margin: 4px 0 20px;
  line-height: 1.15;
  font-weight: 600;
}
.about-copy h2 em { font-style: italic; font-weight: 400; color: var(--walnut); }
.about-copy p { color: var(--ink-soft); font-size: 17.5px; line-height: 1.8; margin-bottom: 18px; }
.about-principles {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}
.about-principles li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 16px;
  color: var(--ink);
}
.about-principles li::before {
  content: "\2726";
  color: var(--gold-ink);
  font-size: 14px;
  flex-shrink: 0;
}
.about-principles strong { color: var(--wine); font-weight: 700; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(160deg, var(--walnut-deep) 0%, var(--wine-deep) 85%);
  border-top: 4px solid var(--gold);
  color: rgba(250, 242, 228, 0.85);
  padding: 68px 24px 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 42px;
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 600;
  color: var(--gold-soft);
  display: inline-block;
  margin-bottom: 14px;
}
.footer-brand p { color: rgba(250, 242, 228, 0.68); font-size: 15px; line-height: 1.75; max-width: 340px; }
.footer-links h4, .footer-company h4 {
  color: var(--gold-soft);
  font-family: var(--body-font);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(250, 242, 228, 0.7); font-size: 15px; transition: color 0.2s; display: inline-block; padding: 3px 0; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-company p { color: rgba(250, 242, 228, 0.7); font-size: 14px; line-height: 1.8; }
.footer-company strong { color: #fdf7ea; }
.footer-disclaimer {
  border-top: 1px solid rgba(227, 194, 125, 0.2);
  padding-top: 28px;
  margin-bottom: 20px;
}
.footer-disclaimer p { color: rgba(250, 242, 228, 0.55); font-size: 13px; line-height: 1.75; max-width: 1080px; }
.footer-bottom {
  border-top: 1px solid rgba(227, 194, 125, 0.14);
  padding-top: 22px;
  text-align: center;
}
.footer-bottom p { color: rgba(250, 242, 228, 0.5); font-size: 13px; margin: 0; letter-spacing: 0.4px; }

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 880px;
  margin: 64px auto 88px;
  padding: 0 24px;
  line-height: 1.8;
  color: var(--ink);
}
.legal-main h1 {
  font-family: var(--heading-font);
  font-size: clamp(38px, 5vw, 54px);
  color: var(--wine);
  margin-bottom: 10px;
  font-weight: 600;
}
.legal-main h2 {
  font-family: var(--heading-font);
  font-size: clamp(23px, 3vw, 28px);
  color: var(--wine);
  margin: 40px 0 14px;
  font-weight: 600;
}
.legal-main h3 { font-family: var(--heading-font); font-size: 20px; color: var(--walnut); margin: 20px 0 10px; font-weight: 600; }
.legal-main p { margin-bottom: 15px; font-size: 17px; color: var(--ink); }
.legal-main ul, .legal-main ol { margin: 15px 0 15px 28px; }
.legal-main li { margin-bottom: 9px; font-size: 17px; }
.legal-main a { color: var(--gold-ink); text-decoration: underline; }
.legal-main a:hover { color: var(--wine); }
.legal-main strong { color: var(--wine-deep); font-weight: 700; }
.legal-meta { opacity: 0.65; font-style: italic; margin-bottom: 34px; }
.company-contact-box {
  background: rgba(90, 18, 38, 0.05);
  border-left: 4px solid var(--gold);
  padding: 26px;
  border-radius: 4px;
  margin-top: 26px;
}
.company-contact-box h3 { margin-top: 0; color: var(--wine); }
.company-contact-box p { margin-bottom: 7px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 52px; }
  .hero-media img { height: 400px; }
  .hero { padding: 72px 24px 84px; }
  .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-media img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--wine-deep);
    border-bottom: 1px solid rgba(201, 162, 75, 0.35);
    flex-direction: column;
    padding: 26px 24px;
    gap: 14px;
    box-shadow: 0 18px 40px rgba(20, 5, 10, 0.5);
    transform: translateY(-130%);
    transition: transform 0.3s;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .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; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding: 60px 20px 72px; }
  .hero h1 { font-size: clamp(36px, 8vw, 52px); }
  .hero-media img { height: 320px; }
  .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: 33px; }
  .hero-content p { font-size: 16.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .recipes-section { padding: 64px 16px; }
  .shapeon-section { padding: 64px 16px; }
  .about-section { padding: 64px 16px; }
  .hero-media img { height: 250px; }
  .about-media img { height: 260px; }
}
