/* ============================================
   INFANCIA CONSCIENTE - Main Stylesheet
   Paleta: Verde Salvia · Terracota · Crema · Malva
   ============================================ */

:root {
  --sage: #A47DAB;
  --sage-light: #C9A7D9;
  --sage-dark: #8B5F9D;
  --terracotta: #C4956A;
  --terracotta-light: #E8C4A0;
  --blush: #E8A598;
  --mauve: #8B7BA8;
  --cream: #FAF7F2;
  --cream-dark: #F0EAE0;
  --sand: #E8DDD0;
  --brown: #1A1A1A;
  --text: #1A1A1A;
  --text-light: #555555;
  --white: #FFFFFF;
  
  --yellow: #F5E642;
  --sage-green: #7AB87A;
  --gold: #D4A84B;
  --teal: #3B9E8E;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  
  --shadow-sm: 0 2px 8px rgba(44,44,44,.08);
  --shadow-md: 0 8px 30px rgba(44,44,44,.12);
  --shadow-lg: 0 20px 60px rgba(44,44,44,.15);
  
  --radius: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ---- 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);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title { color: var(--text); }
.section-title em { font-style: italic; color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin-top: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover { background: #C49640; border-color: #C49640; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(212,168,75,.35); }

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--gold);
}
.btn--secondary:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn--tertiary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn--tertiary:hover { background: #9469A8; border-color: #9469A8; transform: translateY(-2px); }

.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--terracotta:hover { background: #B07F54; border-color: #B07F54; transform: translateY(-2px); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.btn--whatsapp:hover { background: #1da851; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
}
.announcement-bar a { color: var(--terracotta-light); font-weight: 600; }
.announcement-bar a:hover { color: var(--white); }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,247,242,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.nav__logo-img { height: 50px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--gold);
  background: var(--cream-dark);
}
.nav__link--admin { color: var(--mauve) !important; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero__label { 
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,230,66,.1);
  border: 1px solid var(--yellow);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.hero__label::before { content: ''; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }

.hero__title { color: var(--text); margin-bottom: 20px; }
.hero__title em { color: var(--gold); font-style: italic; }

.hero__text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

.statistical-card__value { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat__label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }

.hero__image {
  position: relative;
}

.hero__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sage-light);
}
.hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero__img-badge {
  position: absolute;
  bottom: 32px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.badge-icon { font-size: 1.6rem; }
.badge-text strong { display: block; font-size: 0.95rem; color: var(--brown); }
.badge-text span { font-size: 0.75rem; color: var(--text-light); }

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

/* ---- Services Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--sand);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card__icon--sage { background: rgba(212,168,75,.15); color: var(--gold); }
.service-card__icon--terracotta { background: rgba(122,184,122,.15); color: var(--sage-green); }
.service-card__icon--blush { background: rgba(232,165,152,.15); color: #C4706A; }
.service-card__icon--mauve { background: rgba(139,123,168,.15); color: var(--mauve); }

.service-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ---- News / Blog Cards ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.news-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.news-card:hover .news-card__img img { transform: scale(1.05); }

.news-card__body { padding: 24px; }

.news-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card h3 a:hover { color: var(--gold); }

.news-card__excerpt { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- Shop / Tienda Cards ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand);
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.product-card:hover .product-card__img img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__badge--free { background: var(--gold); }
.product-card__badge--libro { background: var(--sage); }
.product-card__badge--recurso { background: var(--blush); color: var(--brown); }

.product-card__body { padding: 20px; }
.product-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 8px; }
.product-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 16px; }

.product-card__price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.price--old { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.price--free { color: var(--gold); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--sand);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 1;
  opacity: 0.6;
}

.testimonial-card__stars { color: var(--terracotta); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-card p { font-style: italic; color: var(--text); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.7; }

.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-light);
  font-size: 1.1rem;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--brown); }

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 70px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
}
.about__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--sage-light);
}
.about__img img { width: 100%; height: 100%; object-fit: cover; }

.about__deco {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--terracotta-light);
  opacity: 0.4;
  z-index: -1;
}
.about__deco2 {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--sage-light);
  opacity: 0.5;
  z-index: -1;
}

.about__credential {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid var(--sand);
  font-size: 0.9rem;
}
.about__credential i { color: var(--sage-green); font-size: 1rem; width: 20px; }

/* ---- Page Hero ---- */
.page-hero {
  background: var(--sage);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  transform: translate(100px, 100px);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.75); margin-top: 12px; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,168,75,.2); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---- Alert / Flash ---- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert--success { background: rgba(122,184,122,.15); color: var(--sage-green); border: 1px solid var(--sage-green); }
.alert--error { background: rgba(232,165,152,.2); color: #a05555; border: 1px solid var(--blush); }
.alert--info { background: rgba(139,123,168,.12); color: var(--mauve); border: 1px solid rgba(139,123,168,.3); }

/* ---- Filters / Tags ---- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--sand);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--sand);
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
}
.pagination a:hover, .pagination span.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; }

/* ---- Footer ---- */
.footer {
  background: #D4C5B0;
  color: #555555;
  margin-top: 80px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer .logo-main { color: #333333; }
.footer .logo-sub { color: var(--terracotta-light); }

.footer__brand p {
  font-size: 0.9rem;
  color: #555555;
  margin-top: 12px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--gold); }

.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 16px;
}
.footer__links ul li { margin-bottom: 8px; }
.footer__links ul li a { font-size: 0.9rem; color: #555555; transition: color var(--transition); }
.footer__links ul li a:hover { color: #333333; }

.footer__newsletter h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555555;
  margin-bottom: 12px;
}
.footer__newsletter p { font-size: 0.88rem; color: #555555; margin-bottom: 16px; }

.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: #555555;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--sage-light); }
.newsletter-form button {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #C49640; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #555555;
}
.footer__bottom a { color: #555555; }
.footer__bottom a:hover { color: #333333; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, rgba(139, 95, 157, 0.5) 0%, rgba(106, 67, 128, 0.5) 100%), url('/images/Salon.png') no-repeat center / cover;
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  z-index: 1;
}
.cta-banner::after {
  content: none;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 14px; position: relative; z-index: 2; }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 28px; position: relative; z-index: 2; }
.cta-banner .section-label { position: relative; z-index: 2; }
.cta-banner .btn { position: relative; z-index: 2; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__image { display: none; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav__menu.open { right: 0; }
  .nav__toggle { display: flex; z-index: 1000; }
  
  .about-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .section { padding: 60px 0; }
  
  .news-grid, .shop-grid { grid-template-columns: 1fr; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-sage { color: var(--sage-green); }
.bg-cream { background: var(--cream-dark); }
.bg-sage { background: var(--sage); }
.mt-auto { margin-top: auto; }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
