/* ==========================================================================
   AUREEVA — Design System
   ========================================================================== */

:root {
  --bg: #FAF8F1;
  --bg-alt: #F3F1E4;
  --sage: #DCE5CE;
  --sage-deep: #C9D3AE;
  --forest: #4B6350;
  --forest-deep: #3E5240;
  --forest-darkest: #2C3B2A;
  --ink: #262620;
  --ink-soft: #5B5B4E;
  --cream: #FBFAF3;
  --gold: #D79A4B;
  --lilac: #8C87A6;
  --line: rgba(38, 38, 32, 0.12);
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow: 0 20px 50px -25px rgba(43, 55, 40, 0.35);
  --container: 1200px;
  --ff-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

/* Grid/flex items default to min-width:auto, which lets long content or
   oversized replaced elements blow out their track past the viewport. */
.hero-inner > *, .story-grid > *, .detail-row > *, .pd-grid > *, .contact-grid > *,
.products-grid > *, .pillars > *, .footer-grid > *, .testimonial-grid > *, .values-grid > *,
.detail-sections > *, .cross-sell > .cs-info {
  min-width: 0;
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--forest-darkest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { margin: 0 0 1em; color: var(--ink-soft); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--forest);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest-deep);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--forest-darkest); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--forest-deep);
  color: var(--forest-deep);
}
.btn-outline:hover { background: var(--forest-deep); color: var(--cream); }

.btn-light {
  background: var(--cream);
  color: var(--forest-darkest);
}
.btn-light:hover { transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 0.85rem; }

.btn-amazon svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 241, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo img { height: 26px; width: auto; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-darkest);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions .icon-link {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background .25s ease, border-color .25s ease;
}
.header-actions .icon-link:hover { background: var(--sage); border-color: var(--forest); }
.header-actions .icon-link svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--forest-darkest); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 96px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 6px;
}
.badge {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest-darkest);
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 5/6;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .float-card {
  position: absolute;
  left: 22px; top: 22px;
  background: rgba(251, 250, 243, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-m);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.float-card .stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.float-card strong { display: block; font-size: 0.85rem; }
.float-card span { font-size: 0.76rem; color: var(--ink-soft); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-sage { background: var(--sage); }
.section-forest { background: var(--forest-darkest); color: var(--cream); }
.section-forest h2, .section-forest h3 { color: var(--cream); }
.section-forest p { color: rgba(251, 250, 243, 0.75); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin: 0 0 56px; text-align: left; }

/* ---------- Story / intro ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.story-media {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.pull-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--forest-darkest);
  line-height: 1.4;
  margin: 22px 0 28px;
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 34px 26px;
  border: 1px solid var(--line);
}
.pillar .pillar-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.pillar .pillar-icon svg { width: 22px; height: 22px; color: var(--forest-deep); }
.pillar h3 { font-size: 1.08rem; margin-bottom: 8px; }
.pillar p { font-size: 0.92rem; margin: 0; }

/* ---------- Product cards (home) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .pc-media { aspect-ratio: 4/3; overflow: hidden; background: var(--sage); display: flex; align-items: center; justify-content: center; padding: 28px; }
.product-card .pc-media img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.pc-body { padding: 30px 32px 32px; }
.pc-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 10px;
  display: block;
}
.pc-body h3 { margin-bottom: 10px; }
.pc-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 22px;
}
.pc-benefits li {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--forest-darkest);
}
.pc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.price-block { display: flex; align-items: baseline; gap: 8px; }
.price { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--forest-darkest); }
.price-old { font-size: 0.9rem; color: var(--ink-soft); text-decoration: line-through; }
.price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest-deep);
  background: var(--sage);
  padding: 3px 8px;
  border-radius: 6px;
}

/* ---------- Instagram profile card ---------- */
.ig-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.ig-card .ig-avatar {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sage);
  box-shadow: var(--shadow);
}
.ig-card .ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-card .ig-handle { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--forest-darkest); }
.ig-card p { max-width: 34ch; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 32px;
  border: 1px solid var(--line);
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; display: block; }
.testimonial p { color: var(--ink); font-size: 0.95rem; }
.testimonial .who { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; margin-top: 14px; }

/* ---------- Reviews (Amazon) ---------- */
.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
}
.review-card {
  scroll-snap-align: start;
  flex: 0 0 280px;
  background: var(--cream);
  border-radius: var(--radius-m);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.95rem; }
.review-card .review-title { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--forest-darkest); margin-bottom: 8px; }
.review-card .review-text { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; flex: 1; }
.review-card .review-meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; }
.review-card .review-name { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.review-card .review-product { font-size: 0.76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

@media (max-width: 760px) {
  .review-card { flex-basis: 240px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner .btn-primary { background: var(--cream); color: var(--forest-darkest); }
.cta-banner .btn-primary:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-darkest); color: rgba(251,250,243,0.8); padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,250,243,0.14);
}
.footer-brand img { height: 24px; margin-bottom: 18px; }
.footer-brand p { color: rgba(251,250,243,0.65); font-size: 0.9rem; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(251,250,243,0.3);
  display: grid; place-items: center;
  transition: background .25s ease, border-color .25s ease;
}
.footer-social a:hover { background: rgba(251,250,243,0.12); border-color: rgba(251,250,243,0.6); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(251,250,243,0.72); transition: color .2s ease; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(251,250,243,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { max-width: 900px; margin: 24px auto 0; font-size: 0.76rem; color: rgba(251,250,243,0.45); text-align: center; line-height: 1.7; }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--forest-deep); }

/* ---------- Product detail ---------- */
.product-detail { padding: 32px 0 96px; }
.pd-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
}
.pd-gallery-main {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.pd-gallery-main img { width: auto; height: 100%; max-width: 100%; object-fit: contain; }
.pd-gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pd-gallery-thumbs button {
  border: 2px solid transparent;
  border-radius: var(--radius-s);
  overflow: hidden;
  aspect-ratio: 1;
  padding: 0;
  background: none;
}
.pd-gallery-thumbs button.active { border-color: var(--forest); }
.pd-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pd-info .stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pd-info .stars { color: var(--gold); letter-spacing: 2px; }
.pd-info .rating-count { font-size: 0.85rem; color: var(--ink-soft); }
.pd-tagline { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 24px; }

.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin: 24px 0 6px; }
.pd-price-row .price { font-size: 2.1rem; }
.pd-price-note { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 26px; }

.pd-benefits { margin: 26px 0; display: flex; flex-direction: column; gap: 14px; }
.pd-benefits li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.pd-benefits svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--forest-deep); margin-top: 2px; }

.pd-buybox {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
  margin-top: 30px;
}
.pd-buybox .btn { margin-bottom: 12px; }
.pd-buybox .buybox-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  justify-content: center;
}
.pd-buybox .buybox-note svg { width: 15px; height: 15px; color: var(--forest); }

.pd-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

/* ---------- Detail tabs / sections ---------- */
.detail-sections { display: grid; gap: 96px; margin-top: 40px; }
.detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.detail-row.reverse .detail-media { order: -1; }
.detail-media {
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-copy .num {
  font-family: var(--ff-serif);
  font-size: 0.9rem;
  color: var(--forest);
  margin-bottom: 10px;
  display: block;
}

/* ---------- Ingredients table ---------- */
.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.94rem;
}
.ingredients-table th, .ingredients-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.ingredients-table th { color: var(--forest-darkest); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.ingredients-table td { color: var(--ink-soft); }
.ingredients-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--forest-darkest);
  text-align: left;
}
.faq-q .plus { font-size: 1.4rem; color: var(--forest); transition: transform .25s ease; flex-shrink: 0; margin-left: 20px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 4px 24px; margin: 0; font-size: 0.95rem; }

/* ---------- Full-bleed lifestyle banner ---------- */
.lifestyle-banner {
  width: 100%;
  aspect-ratio: 1464 / 600;
  overflow: hidden;
}
.lifestyle-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 760px) {
  .lifestyle-banner { aspect-ratio: auto; background: var(--bg-alt); }
  .lifestyle-banner img { height: auto; object-fit: contain; }
}

/* ---------- Cross sell ---------- */
.cross-sell {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 26px;
}
.cross-sell img { width: 96px; height: 96px; object-fit: contain; background: var(--sage); border-radius: var(--radius-m); flex-shrink: 0; padding: 12px; }
.cross-sell .cs-info { flex: 1; }
.cross-sell .cs-info span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--forest); font-weight: 700; }
.cross-sell .cs-info h4 { font-family: var(--ff-serif); font-size: 1.15rem; margin: 6px 0 4px; }

@media (max-width: 640px) {
  .cross-sell { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .cross-sell img { width: 64px; height: 64px; }
  .cross-sell .cs-info { flex: 1 1 180px; min-width: 150px; }
  .cross-sell .cs-info h4 { font-size: 1.02rem; }
  .cross-sell .btn { flex: 1 1 100%; text-align: center; }
}

/* ---------- Values grid (Nosotros) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { padding: 8px; }
.value-card .num { font-family: var(--ff-serif); font-size: 2rem; color: var(--sage-deep); display: block; margin-bottom: 12px; }

.timeline { display: grid; gap: 0; margin-top: 20px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.timeline-item .t-year { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--forest-deep); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-card {
  display: flex;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.contact-card:first-child { border-top: none; padding-top: 0; }
.contact-card .cc-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--sage);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-card .cc-icon svg { width: 20px; height: 20px; color: var(--forest-deep); }
.contact-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.contact-card p { margin: 0; font-size: 0.92rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .story-grid, .pd-grid, .detail-row, .contact-grid { grid-template-columns: 1fr; }
  .story-media { order: -1; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .products-grid, .testimonial-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav, .header-actions .icon-link.hide-mobile { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { padding: 16px 20px; }
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; text-align: center; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .pc-footer { flex-direction: column; align-items: stretch; }
  .pc-footer .btn { width: 100%; }
  .price-block { justify-content: center; }
}

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 340px;
    background: var(--cream);
    transform: translateX(100%);
    transition: transform .35s ease;
    padding: 100px 32px 32px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.15);
    display: block;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 26px; }
  .main-nav a { font-size: 1.15rem; }
}
