/* ====== wianna.com Stylesheet (French Provencal) ====== */
:root {
  --primary-dark: #36412a;   /* deep olive */
  --primary-mid: #586b3e;    /* sage olive */
  --accent: #d9a94f;         /* warm Provencal ochre / honey */
  --accent-light: #ecc578;   /* lighter ochre */
  --wine: #8a2e43;           /* bordeaux */
  --wine-light: #a8455a;
  --lavender: #9385c0;       /* soft lavender */
  --lavender-light: #cdbbe8;
  --bg-cream: #f6f1e6;       /* warm cream */
  --bg-cream-deep: #efe6d4;  /* deeper cream band */
  --text-dark: #2f3325;      /* dark olive charcoal */
  --heading-font: 'Fraunces', Georgia, serif;
  --body-font: 'Inter', system-ui, -apple-system, sans-serif;
  --btn-radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--wine); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wine-light); }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4 { font-family: var(--heading-font); color: var(--text-dark); line-height: 1.2; font-weight: 600; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* editorial kicker label */
.kicker {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 18px;
}

/* ===== SCROLL REVEAL (degrades gracefully without JS) ===== */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,0.84,0.44,1), transform 0.8s cubic-bezier(0.16,0.84,0.44,1);
  will-change: opacity, transform;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,241,230,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(54,65,42,0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled { background: rgba(246,241,230,0.98); box-shadow: 0 2px 18px rgba(54,65,42,0.1); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--heading-font);
  font-size: 23px; font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: -0.2px;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 24px; color: var(--primary-dark);
}
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: var(--text-dark);
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--wine); border-bottom-color: var(--accent); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 90px 24px;
  background:
    linear-gradient(135deg, rgba(40,49,30,0.93) 0%, rgba(54,65,42,0.86) 42%, rgba(138,46,67,0.74) 100%),
    #2c3522;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 78%, rgba(147,133,192,0.22) 0%, transparent 46%),
    radial-gradient(circle at 84% 14%, rgba(217,169,79,0.16) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.hero-tagline {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.06;
  color: #fdf8ef;
  margin-bottom: 26px;
  letter-spacing: -0.6px;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--accent-light); }
.hero-content p {
  font-size: 19.5px;
  color: rgba(253,248,239,0.86);
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto 38px;
  font-weight: 400;
}
.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 17px 42px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: all 0.25s;
  box-shadow: 0 6px 26px rgba(0,0,0,0.28);
}
.btn-hero:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.34);
}

/* hero entrance animation */
@media (prefers-reduced-motion: no-preference) {
  .hero-tagline { animation: heroFade 0.9s ease both; }
  .hero h1 { animation: heroFade 0.9s ease 0.12s both; }
  .hero-content p { animation: heroFade 0.9s ease 0.24s both; }
  .btn-hero { animation: heroFade 0.9s ease 0.36s both; }
  @keyframes heroFade { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
}

/* ===== PRODUCT (NEXBURN) SECTION ===== */
.shapeon-section {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #303b25 100%);
  padding: 90px 24px;
  color: #fff;
  position: relative;
}
#wellness { background: linear-gradient(180deg, #303b25 0%, var(--primary-mid) 100%); }
.shapeon-header { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.shapeon-badge {
  display: inline-block;
  background: rgba(217,169,79,0.14);
  color: var(--accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(217,169,79,0.3);
}
.shapeon-header h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  color: #fdf8ef;
  margin-bottom: 18px;
  line-height: 1.16;
}
.shapeon-header p {
  font-size: 18px;
  color: rgba(253,248,239,0.78);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 52px auto;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,169,79,0.45);
  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
}
.product-card.featured {
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--accent);
  transform: scale(1.045);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}
.product-card.featured:hover { transform: scale(1.045) translateY(-6px); }
.product-label {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.22);
}
.product-card.featured .product-label { background: var(--wine); color: #fdf2f0; border-color: var(--wine-light); }
.product-img { width: 160px; height: 200px; object-fit: contain; margin: 12px auto 20px; }
.product-bottles { font-family: var(--heading-font); color: #fff; font-size: 28px; margin-bottom: 14px; font-weight: 600; }
.product-price-old { color: rgba(255,255,255,0.5); font-size: 15px; text-decoration: line-through; margin-bottom: 6px; }
.product-price { color: var(--accent-light); font-size: 38px; font-weight: 700; margin-bottom: 6px; line-height: 1; font-family: var(--heading-font); }
.product-price span { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 400; margin-left: 4px; font-family: var(--body-font); }
.product-total { color: rgba(255,255,255,0.86); font-size: 15px; margin-bottom: 8px; font-weight: 600; }
.product-savings { color: var(--lavender-light); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.product-shipping { color: rgba(255,255,255,0.78); font-size: 13px; margin-bottom: 24px; }
.btn-order {
  display: block;
  width: 100%;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 15px 20px;
  border-radius: var(--btn-radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-order:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.product-card.featured .btn-order { background: var(--wine); color: #fdf2f0; }
.product-card.featured .btn-order:hover { background: var(--wine-light); color: #fff; }

/* ===== TRUST BADGES + GUARANTEE ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  margin: 34px auto;
  max-width: 800px;
}
.trust-badges img { height: 48px; width: auto; opacity: 0.82; filter: brightness(0) invert(1); }
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 26px 34px;
  max-width: 720px;
  margin: 34px auto 0;
}
.guarantee img { width: 80px; height: 80px; flex-shrink: 0; }
.guarantee p { color: rgba(255,255,255,0.86); font-size: 15px; margin: 0; }

/* ===== RECIPES ===== */
.recipes-section {
  padding: 96px 24px;
  background: var(--bg-cream);
}
.recipes-header { text-align: center; max-width: 740px; margin: 0 auto 60px; }
.recipes-header h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 50px);
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.16;
}
.recipes-header p { font-size: 18px; color: var(--text-dark); opacity: 0.78; line-height: 1.7; }
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.recipe-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(54,65,42,0.08);
  border: 1px solid rgba(54,65,42,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 46px rgba(54,65,42,0.16);
}
.recipe-img-wrap { position: relative; overflow: hidden; }
.recipe-img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.16,0.84,0.44,1); }
.recipe-card:hover .recipe-img { transform: scale(1.07); }
.recipe-time-badge {
  position: absolute; top: 14px; right: 14px;
  background: rgba(246,241,230,0.95);
  color: var(--primary-dark);
  font-size: 12px; font-weight: 700;
  padding: 6px 13px; border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  letter-spacing: 0.3px;
}
.recipe-info { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.recipe-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(138,46,67,0.1);
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.recipe-info h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 23px;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.28;
}
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-dark);
  opacity: 0.62;
  font-size: 13px;
  margin-bottom: 14px;
  font-weight: 500;
}
.recipe-meta span { white-space: nowrap; }
.recipe-desc {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.66;
  margin-bottom: 20px;
  flex-grow: 1;
}
.btn-expand {
  background: var(--primary-dark);
  color: #fdf8ef;
  border: none;
  padding: 13px 20px;
  border-radius: var(--btn-radius);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}
.btn-expand:hover { background: var(--primary-mid); transform: translateY(-1px); }
.recipe-details {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--bg-cream-deep);
  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);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 17px;
  margin: 18px 0 10px;
  letter-spacing: -0.2px;
}
.recipe-details h4:first-child { margin-top: 0; }
.recipe-details ul, .recipe-details ol {
  padding-left: 22px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.75;
}
.recipe-details ul li, .recipe-details ol li { margin-bottom: 6px; }
.recipe-details ul li::marker { color: var(--accent); }
.recipe-details ol li::marker { color: var(--wine); font-weight: 700; }

/* ===== ABOUT / MEET THE COOK ===== */
.about-section {
  background: var(--bg-cream-deep);
  padding: 96px 24px;
  position: relative;
}
.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(54,65,42,0.22);
}
.about-media::after {
  content: "";
  position: absolute;
  left: -16px; bottom: -16px;
  width: 130px; height: 130px;
  border: 2px solid var(--accent);
  border-radius: 14px;
  z-index: -1;
}
.about-text h2 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.18;
}
.about-text p {
  font-size: 17px;
  color: var(--text-dark);
  opacity: 0.84;
  line-height: 1.78;
  margin-bottom: 16px;
}
.about-signature {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 22px;
  color: var(--wine);
  margin-top: 24px;
}
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.about-values span {
  background: rgba(54,65,42,0.07);
  color: var(--primary-dark);
  border: 1px solid rgba(54,65,42,0.12);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(253,248,239,0.85);
  padding: 70px 24px 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-brand p { color: rgba(253,248,239,0.68); font-size: 15px; line-height: 1.65; }
.footer-links h4, .footer-company h4 { color: var(--accent); font-size: 14px; text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 18px; font-weight: 700; font-family: var(--body-font); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(253,248,239,0.68); font-size: 15px; transition: color 0.2s; display: inline-block; padding: 4px 0; }
.footer-links a:hover { color: var(--accent); }
.footer-company p { color: rgba(253,248,239,0.68); font-size: 14px; line-height: 1.7; }
.footer-company strong { color: #fff; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  margin-bottom: 20px;
}
.footer-disclaimer p { color: rgba(253,248,239,0.52); font-size: 13px; line-height: 1.7; max-width: 1100px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
}
.footer-bottom p { color: rgba(253,248,239,0.5); font-size: 13px; margin: 0; }

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
  line-height: 1.75;
  color: var(--text-dark);
}
.legal-main h1 {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--primary-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.legal-main h2 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--primary-dark);
  margin: 38px 0 14px;
  letter-spacing: -0.3px;
}
.legal-main h3 { font-family: var(--heading-font); font-weight: 600; font-size: 19px; color: var(--primary-dark); margin: 18px 0 10px; }
.legal-main p { margin-bottom: 14px; font-size: 16px; color: var(--text-dark); }
.legal-main ul, .legal-main ol { margin: 14px 0 14px 28px; }
.legal-main li { margin-bottom: 8px; font-size: 16px; }
.legal-main a { color: var(--wine); text-decoration: underline; }
.legal-main a:hover { color: var(--wine-light); }
.legal-main strong { color: var(--primary-dark); font-weight: 700; }
.legal-meta { opacity: 0.65; font-style: italic; margin-bottom: 32px; }
.company-contact-box {
  background: rgba(54,65,42,0.05);
  border-left: 4px solid var(--accent);
  padding: 24px;
  border-radius: 8px;
  margin-top: 24px;
}
.company-contact-box h3 { margin-top: 0; color: var(--primary-dark); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 44px; }
  .hero-content { padding: 30px 0; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: 24px;
    gap: 14px;
    box-shadow: 0 6px 24px rgba(54,65,42,0.14);
    transform: translateY(-220%);
    transition: transform 0.3s;
  }
  .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: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media::after { display: none; }
  .hero { min-height: 76vh; padding: 64px 20px; }
  .hero h1 { font-size: clamp(36px, 8vw, 56px); }
  .trust-badges { gap: 22px; }
  .trust-badges img { height: 38px; }
  .guarantee { flex-direction: column; padding: 22px; text-align: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-content p { font-size: 16.5px; }
  .recipes-section, .about-section { padding: 64px 16px; }
  .shapeon-section { padding: 64px 16px; }
}
