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

/* ── VARIABLES ── */
:root {
  --cream: #F7F3EE;
  --warm: #FEFCF9;
  --terracotta: #C4622D;
  --terracotta-light: #E8855A;
  --sage: #6B7C5C;
  --sage-light: #A8B89A;
  --dark: #1C1A17;
  --mid: #4A4540;
  --light: #7A7570;
  --border: #E5DDD4;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--dark); font-family: 'DM Sans', sans-serif; font-size: 16px; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── ANNOUNCEMENT BAR ── */
.announcement {
  background: var(--sage);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement strong { font-weight: 700; }
.announcement a { color: white; text-decoration: underline; }

/* ── NAV ── */
.nav {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.nav__logo span { color: var(--terracotta); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--terracotta); background: var(--cream); }
.nav__links a.active { color: var(--terracotta); font-weight: 600; }
.nav__links .btn-nav {
  background: var(--terracotta);
  color: white !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
}
.nav__links .btn-nav:hover { background: var(--terracotta-light) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--warm);
  border-top: 1px solid var(--border);
  padding: 16px 32px 24px;
}
.nav__mobile a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a.btn-nav-mobile {
  background: var(--terracotta);
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 14px;
  margin-top: 12px;
  border-bottom: none;
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terracotta-light); border-color: var(--terracotta-light); color: white; }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: white; }
.btn-white { background: transparent; color: white; border-color: white; }
.btn-white:hover { background: white; color: var(--terracotta); }
.btn-whatsapp { background: #25D366; color: white; border-color: #25D366; }
.btn-whatsapp:hover { background: #20b858; color: white; }
.btn-sage { background: var(--sage); color: white; border-color: var(--sage); }

/* ── LAYOUT UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 32px; }
.section-sm { padding: 64px 32px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--sage-light); }
.eyebrow-white { color: rgba(255,255,255,0.7); }
h1, h2, h3 { line-height: 1.15; }
.display-xl { font-family: 'Playfair Display', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 700; letter-spacing: -1.5px; }
.display-lg { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; letter-spacing: -0.8px; }
.display-md { font-family: 'Playfair Display', serif; font-size: clamp(26px, 3.5vw, 42px); font-weight: 600; letter-spacing: -0.5px; }
.display-sm { font-family: 'DM Serif Display', serif; font-size: clamp(20px, 2.5vw, 28px); }
.lead { font-size: 18px; color: var(--mid); line-height: 1.8; max-width: 620px; }
.body-text { font-size: 16px; color: var(--mid); line-height: 1.8; }
.small-text { font-size: 14px; color: var(--light); }
.highlight { color: var(--terracotta); }
.highlight-sage { color: var(--sage); }
em { font-style: italic; }

/* ── GRID SYSTEMS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-text { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .lead { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.card-body { padding: 28px; }
.card-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── PILLAR CARDS ── */
.pillar-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terracotta);
}
.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

/* ── KIT CARD ── */
.kit-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.kit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.kit-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.kit-card__image img { width: 100%; height: 100%; object-fit: cover; }
.kit-card__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sage-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.kit-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sage);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.kit-badge-new { background: var(--terracotta); }
.kit-meta { display: flex; gap: 16px; margin-bottom: 8px; }
.kit-meta span { font-size: 12px; color: var(--light); font-weight: 500; }
.kit-price { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; }
.kit-price small { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; color: var(--light); }

/* ── STEP CARDS ── */
.step-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.step-item {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: var(--warm);
  transition: background 0.2s;
}
.step-item:last-child { border-right: none; }
.step-item:hover { background: var(--cream); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.stars { color: var(--terracotta); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  margin-bottom: 20px;
}
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--mid); }
.testimonial-location { font-size: 13px; color: var(--light); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 18px 32px;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--terracotta);
  padding: 88px 32px;
  text-align: center;
}
.cta-banner h2 { color: white; }
.cta-banner p { color: rgba(255,255,255,0.85); }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* ── HERO ── */
.hero {
  background: var(--warm);
  padding: 100px 32px 80px;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--sage-light);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero__title { margin-bottom: 24px; }
.hero__desc { margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__note { font-size: 13px; color: var(--light); line-height: 1.7; }
.hero__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--border) 50%, var(--terracotta-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 100px 32px 80px;
  text-align: center;
}
.page-hero h1 { color: white; margin: 16px 0 24px; }
.page-hero p { color: rgba(255,255,255,0.75); margin: 0 auto; }

/* ── VALUE CARDS ── */
.value-card {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
}
.value-card__icon { font-size: 32px; margin-bottom: 16px; display: block; }

/* ── HIW STEPS (full page) ── */
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.hiw-detail {
  list-style: none;
  margin-top: 16px;
}
.hiw-detail li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--mid);
}
.hiw-detail li:last-child { border-bottom: none; }
.check { color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── ZONES ── */
.zones { background: var(--dark); padding: 80px 32px; }
.zones__inner { max-width: 1200px; margin: 0 auto; }
.zones h2 { color: white; margin: 12px 0 16px; }
.zones__lead { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 48px; }
.zones__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.zone-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 28px;
}
.zone-card h3 { color: white; font-size: 17px; margin-bottom: 8px; }
.zone-card p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.zone-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.zone-badge-active { background: var(--sage); color: white; }
.zone-badge-soon { background: var(--terracotta); color: white; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--dark);
  gap: 16px;
}
.faq-icon {
  font-size: 20px;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}
.faq-answer {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  padding-bottom: 24px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── ORDER FORM / MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  background: var(--terracotta);
  color: white;
  padding: 28px 32px;
  border-radius: 12px 12px 0 0;
}
.modal-header h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: white; margin-bottom: 4px; }
.modal-header p { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0; }
.modal-body { padding: 32px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-header { position: relative; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--warm);
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--terracotta-light); }
.form-note { font-size: 13px; color: var(--light); text-align: center; margin-top: 12px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; color: var(--sage); }
.form-success p { color: var(--mid); font-size: 16px; }

/* ── ABOUT PAGE SPECIFICS ── */
.founder-section {
  background: var(--sage);
  padding: 80px 32px;
}
.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: center;
}
.founder-image {
  border-radius: 10px;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.founder-image img { width: 100%; height: 100%; object-fit: cover; }
.founder-content h2 { color: white; margin-bottom: 24px; }
.founder-content p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 16px; line-height: 1.8; }
.founder-sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 22px; color: white; margin-top: 24px; }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--mid); }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: white;
  padding: 72px 32px 40px;
}
.footer__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
}
.footer__brand-name span { color: var(--terracotta-light); }
.footer__brand-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.footer__social:hover { background: var(--terracotta); }
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: white; }
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s;
  border-left: 4px solid var(--sage);
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .grid-2, .grid-2-text, .hero__inner, .founder-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .step-row { grid-template-columns: 1fr 1fr; }
  .step-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .step-item:last-child, .step-item:nth-last-child(2) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .zones__grid { grid-template-columns: 1fr 1fr; }
  .hiw-step { grid-template-columns: 64px 1fr; }
  .hiw-step-num { font-size: 52px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; }
  .zones__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .hero__actions { flex-direction: column; }
  .hero, .section, .section-sm { padding-left: 20px; padding-right: 20px; }
  .container, .container-sm { padding: 0 20px; }
}

/* ══════════════════════════════════
   CART DRAWER
══════════════════════════════════ */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 400;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 95vw;
  background: white;
  z-index: 500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--warm);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark);
}
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--mid);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.cart-drawer__close:hover { background: var(--dark); color: white; border-color: var(--dark); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}

.cart-drawer__footer {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  background: var(--warm);
}

/* Cart Items */
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.cart-item:hover { background: var(--cream); }
.cart-item__emoji {
  font-size: 32px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__price { font-size: 15px; font-weight: 700; color: var(--terracotta); }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cart-item__qty span { font-size: 16px; font-weight: 700; min-width: 20px; text-align: center; }
.qty-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}
.qty-btn:hover { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.cart-item__remove {
  background: none;
  border: none;
  color: var(--light);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.cart-item__remove:hover { color: #C62828; }

/* Cart Summary */
.cart-summary { }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 15px;
  color: var(--mid);
}
.cart-total {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--dark) !important;
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 12px !important;
}

/* Cart Nav Button */
.cart-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
  position: relative;
}
.cart-nav-btn:hover { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.cart-icon { font-size: 18px; }
.cart-count {
  position: absolute;
  top: -8px; right: -8px;
  background: var(--terracotta);
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
}
.cart-nav-btn:hover .cart-count { border-color: var(--terracotta); background: white; color: var(--terracotta); }

@keyframes cartBump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.cart-bump .cart-icon { animation: cartBump 0.4s ease; }

/* Account Button in Nav */
.account-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  background: none;
  border: none;
  transition: all 0.2s;
}
.account-nav-btn:hover { color: var(--terracotta); background: var(--cream); }
.account-name-label {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Add to Cart Button */
.btn-addtocart {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}
.btn-addtocart:hover {
  background: var(--sage-light);
  border-color: var(--sage-light);
  color: white;
}
.btn-addtocart.added {
  background: var(--dark);
  border-color: var(--dark);
}
