/* ============================================
   BIOMERA — Premium Luxury Stylesheet
   Beige + Terracotta + Olive
   Mobile-first, responsive
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --clr-bg: #F5F0EB;
  --clr-bg-warm: #EDE6DD;
  --clr-bg-card: #FDFBF8;
  --clr-terracotta: #C2704E;
  --clr-terracotta-dark: #A85A3A;
  --clr-terracotta-light: #D9956F;
  --clr-olive: #7A8B5C;
  --clr-olive-dark: #5E6D45;
  --clr-olive-light: #9BAA7E;
  --clr-beige: #D4C5B2;
  --clr-beige-dark: #B8A894;
  --clr-text: #3A3028;
  --clr-text-light: #6B5E52;
  --clr-text-muted: #9A8D80;
  --clr-white: #FFFFFF;
  --clr-border: rgba(58, 48, 40, 0.1);
  --clr-shadow: rgba(58, 48, 40, 0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-w: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-terracotta-dark);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-terracotta);
  margin-bottom: 0.75rem;
  display: block;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--clr-terracotta);
  margin: 1.5rem 0;
  opacity: 0.5;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--clr-bg-warm);
}

.section--olive {
  background: var(--clr-olive);
  color: var(--clr-bg);
}

.section--olive h2,
.section--olive h3 {
  color: var(--clr-bg);
}

.section--olive .section-label {
  color: var(--clr-beige);
}

/* --- HEADER / NAV --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--clr-text);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.logo span {
  color: var(--clr-terracotta);
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-terracotta);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-terracotta);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--clr-text);
  transition: var(--transition);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 240, 235, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 2rem 1.25rem;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--clr-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--clr-border);
  display: block;
}

.mobile-menu a:hover {
  color: var(--clr-terracotta);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}

.btn--primary:hover {
  background: var(--clr-terracotta-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 112, 78, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--clr-terracotta);
  border: 1px solid var(--clr-terracotta);
}

.btn--outline:hover {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}

.btn--olive {
  background: var(--clr-olive);
  color: var(--clr-white);
}

.btn--olive:hover {
  background: var(--clr-olive-dark);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-olive-dark);
}

.btn--white:hover {
  background: var(--clr-bg);
  color: var(--clr-olive-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 3rem;
  font-size: 0.82rem;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--clr-bg) 0%, var(--clr-bg-warm) 50%, #E5DDD2 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(194, 112, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
}

.hero-content {
  text-align: center;
  order: 2;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--clr-terracotta);
}

.hero-text {
  font-size: 1rem;
  color: var(--clr-text-light);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-image {
  order: 1;
  text-align: center;
  position: relative;
}

.hero-image img {
  max-height: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(58, 48, 40, 0.12));
  animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: 100px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-olive);
  border-radius: 50%;
}

/* --- TRUST BLOCKS --- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-card {
  background: var(--clr-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  text-align: center;
  transition: all var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--clr-shadow);
}

.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-terracotta), var(--clr-terracotta-light));
  border-radius: 50%;
  color: var(--clr-white);
  font-size: 1.2rem;
}

.trust-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--clr-text-light);
  margin-bottom: 0;
}

/* --- PRODUCT PAGE --- */
.product-hero {
  padding-top: calc(64px + 3rem);
  padding-bottom: 3rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.product-gallery {
  position: relative;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: var(--clr-bg-warm);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.gallery-main img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.gallery-thumb {
  width: 64px;
  height: 64px;
  background: var(--clr-bg-warm);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--clr-terracotta);
}

.gallery-thumb img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.product-info .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-terracotta);
  margin: 1rem 0;
}

.product-info .price small {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--clr-text-muted);
}

.product-details-list {
  margin: 1.5rem 0;
}

.product-details-list dt {
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-light);
  margin-top: 1rem;
}

.product-details-list dd {
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-top: 0.25rem;
}

/* --- ORDER FORM --- */
.order-form-wrap {
  background: var(--clr-bg-card);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  margin-top: 2rem;
}

.order-form-wrap h3 {
  margin-bottom: 0.5rem;
}

.form-group {
  margin-top: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--clr-text);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

.form-btn {
  margin-top: 1.5rem;
  width: 100%;
}

/* --- INGREDIENTS --- */
.ingredient-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.ingredient-card {
  background: var(--clr-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--clr-shadow);
}

.ingredient-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-terracotta-light);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.ingredient-card h3 {
  margin-bottom: 0.75rem;
}

.ingredient-card p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 0;
}

/* --- ABOUT --- */
.about-hero-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 0;
}

.timeline {
  margin-top: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--clr-beige);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--clr-terracotta);
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-terracotta);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-terracotta);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--clr-terracotta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--clr-text-light);
  line-height: 1.8;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-info-block {
  margin-bottom: 1.5rem;
}

.contact-info-block h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-info-block p,
.contact-info-block a {
  font-size: 0.92rem;
  color: var(--clr-text-light);
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--clr-text);
  color: var(--clr-beige);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-beige);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding: 0.2rem 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--clr-white);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-disclaimer strong {
  color: var(--clr-beige);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.footer-bottom a {
  color: var(--clr-text-muted);
}

.footer-bottom a:hover {
  color: var(--clr-white);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--clr-text);
  color: var(--clr-beige);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-modal.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.cookie-inner p a {
  color: var(--clr-terracotta-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--clr-terracotta);
  color: var(--clr-white);
}

.cookie-btn--accept:hover {
  background: var(--clr-terracotta-dark);
}

.cookie-btn--decline {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--clr-white);
}

/* --- PAGE HEADER (inner pages) --- */
.page-header {
  padding-top: calc(64px + 3rem);
  padding-bottom: 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--clr-bg-warm), var(--clr-bg));
}

.page-header h1 {
  margin-bottom: 0.75rem;
}

.page-header .lead {
  max-width: 580px;
  margin: 0 auto;
}

/* --- LEGAL PAGES --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.92rem;
  color: var(--clr-text-light);
}

.legal-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
  list-style: disc;
}

.legal-content ul li {
  font-size: 0.92rem;
  color: var(--clr-text-light);
  margin-bottom: 0.4rem;
}

/* --- SUCCESS PAGE --- */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--clr-olive), var(--clr-olive-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 2.2rem;
}

/* --- RESPONSIVE --- */
@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
  }

  .cookie-inner p {
    flex: 1;
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .burger {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
  }

  .hero-content {
    text-align: left;
    order: 1;
  }

  .hero-text {
    margin: 0 0 2rem;
  }

  .hero-image {
    order: 2;
  }

  .hero-image img {
    max-height: 520px;
  }

  .product-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .ingredient-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1100px) {
  .hero-image img {
    max-height: 580px;
  }

  .section {
    padding: 6rem 0;
  }
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Date badge --- */
.date-badge {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
}
