/* Pekárenka – shared styles */
:root {
  --cream: #FAF3E7;
  --cream2: #F3E8D6;
  --beige: #EAD9BC;
  --gold: #C08A32;
  --gold-light: #E3B481;
  --brown: #3B2A1E;
  --brown2: #6B5641;
  --terracotta: #A85A38;
  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown2);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

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

a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Header ---------- */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
}
.site-header .container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-weight: 700; font-size: 26px; color: var(--brown); letter-spacing: 0.3px; }
.brand-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-top: 4px; }

.main-nav { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.main-nav a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
  font-size: 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); font-weight: 800; border-bottom-color: var(--gold); }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 15px 30px;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(192,138,50,0.35);
}
.btn-primary:hover { background: #A8752A; }
.btn-outline {
  background: transparent;
  color: var(--brown);
  padding: 15px 30px;
  font-size: 15px;
  border: 2px solid var(--beige);
}
.btn-header {
  background: var(--gold);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(192,138,50,0.35);
}
.btn-header:hover { background: #A8752A; }
.btn-white {
  background: #fff;
  color: var(--terracotta);
  padding: 15px 30px;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--beige);
  border-radius: 10px;
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 20px;
  color: var(--brown);
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--beige);
  color: var(--terracotta);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-gold { color: var(--gold); }
h1, h2, h3 { font-family: var(--font-serif); color: var(--brown); font-weight: 700; margin: 0; }
.hero h1 { font-size: 52px; line-height: 1.12; margin: 0 0 20px; }
.hero p.lead { font-size: 17px; line-height: 1.75; max-width: 480px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-serif); font-size: 26px; font-weight: 700; color: var(--brown); }
.hero-stats .label { font-size: 13px; color: var(--brown2); }

.photo-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(59,42,30,0.18);
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ratio-4-5 { aspect-ratio: 4/5; }
.ratio-5-4 { aspect-ratio: 5/4; }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-1-1 { aspect-ratio: 1/1; }

/* ---------- USPs ---------- */
.usp-strip { background: var(--cream2); padding: 36px 24px; }
.usp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.usp-grid .usp { padding: 12px; }
.usp-title { font-family: var(--font-serif); font-weight: 700; color: var(--brown); font-size: 16px; margin-bottom: 6px; }
.usp-desc { font-size: 13.5px; color: var(--brown2); line-height: 1.5; }

/* ---------- Sections ---------- */
.section { padding: 80px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 36px; margin: 12px 0 0; }
.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.section-head-row h2 { font-size: 32px; margin: 10px 0 0; }
.link-underline {
  color: var(--brown);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--beige);
  padding-bottom: 4px;
}
.link-gold { color: var(--gold-light); font-weight: 700; text-decoration: none; border-bottom: 2px solid var(--gold-light); padding-bottom: 4px; display: inline-block; margin-top: 20px; }

/* ---------- Category cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(59,42,30,0.08);
  transition: transform 0.2s;
}
.card:hover { transform: translateY(-4px); }
.card-photo { height: 170px; overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; }
.card-title { font-family: var(--font-serif); font-weight: 700; font-size: 19px; color: var(--brown); margin-bottom: 6px; }
.card-desc { font-size: 14px; color: var(--brown2); line-height: 1.5; }

/* ---------- Story ---------- */
.story { background: var(--brown); padding: 80px 24px; }
.story .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story h2 { color: #F3E8D6; font-size: 32px; margin: 12px 0 18px; }
.story p { font-size: 15.5px; line-height: 1.8; color: #D8C3A0; }

/* ---------- Seasonal ---------- */
.seasonal-card { background: var(--cream2); border-radius: 20px; overflow: hidden; }
.seasonal-photo { height: 150px; overflow: hidden; }
.seasonal-photo img { width: 100%; height: 100%; object-fit: cover; }
.seasonal-body { padding: 20px; }
.seasonal-title { font-family: var(--font-serif); font-weight: 700; font-size: 17px; color: var(--brown); margin-bottom: 4px; }
.seasonal-desc { font-size: 13.5px; color: var(--brown2); margin-bottom: 10px; line-height: 1.5; }
.price { font-weight: 800; color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonials-strip { background: var(--cream2); padding: 80px 24px; }
.testimonials-strip .inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.testi-card { background: #fff; border-radius: 18px; padding: 26px; text-align: left; box-shadow: 0 6px 20px rgba(59,42,30,0.06); }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 10px; }
.testi-text { font-size: 14.5px; line-height: 1.7; color: var(--brown2); font-style: italic; margin: 0; }
.testi-name { margin-top: 14px; font-weight: 700; color: var(--brown); font-size: 14px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  margin: 60px auto 80px;
  padding: 0 24px;
}
.cta-inner {
  background: linear-gradient(120deg, #C08A32, #A85A38);
  border-radius: 28px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-inner h2 { color: #fff; font-size: 30px; margin: 0 0 10px; }
.cta-inner p { color: #FBE9CF; font-size: 15px; max-width: 480px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { width: 100%; background: #332217; color: #EAD9BC; }
.footer-grid {
  max-width: 1240px; margin: 0 auto; padding: 56px 24px 32px;
  display: grid; grid-template-columns: repeat(4,minmax(180px,1fr)); gap: 36px;
}
.footer-brand { font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: #F3E8D6; margin-bottom: 10px; }
.footer-grid p { font-size: 14px; line-height: 1.7; color: #D8C3A0; max-width: 260px; margin: 0; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  color: #EAD9BC; text-decoration: none; font-size: 13px;
  border: 1px solid #6B5641; border-radius: 999px; padding: 6px 14px;
}
.footer-social a:hover { border-color: #C08A32; color: #C08A32; }
.footer-col-title { font-weight: 700; color: #F3E8D6; margin-bottom: 14px; font-size: 15px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #D8C3A0; text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #C08A32; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #D8C3A0; line-height: 1.6; }
.footer-contact .muted { margin-top: 6px; color: #B79A6E; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 20px 24px;
  border-top: 1px solid #4A3625; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #A78B63;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: #332217; color: #EAD9BC;
  padding: 18px 24px; display: none; gap: 20px; align-items: center;
  justify-content: center; flex-wrap: wrap;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
}
.cookie-banner.visible { display: flex; }
.cookie-banner span.text { font-size: 13.5px; max-width: 560px; line-height: 1.6; }
.cookie-banner a { color: #E3B481; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-info { text-decoration: none; color: #D8C3A0; font-size: 13px; padding: 9px 16px; border: 1px solid #6B5641; border-radius: 999px; }
.btn-cookie-accept { background: #C08A32; color: #fff; border: none; padding: 9px 20px; border-radius: 999px; font-weight: 700; font-size: 13px; cursor: pointer; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 10px 30px rgba(59,42,30,0.08);
}
.form-card h2 { font-size: 22px; margin: 0 0 6px; }
.form-card .hint { font-size: 13.5px; margin: 0 0 24px; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-2 textarea, .form-grid-2 .span-2 { grid-column: span 2; }
input[type=text], input[type=email], input[type=tel], input[type=date], textarea {
  padding: 13px 16px; border-radius: 12px; border: 1px solid var(--beige);
  font-size: 14px; font-family: var(--font-sans); width: 100%;
}
textarea { min-height: 120px; resize: vertical; }
.checkbox-row { display: flex; gap: 8px; font-size: 12px; color: var(--brown2); align-items: flex-start; }
.checkbox-row input { margin-top: 2px; }
.checkbox-row a { color: var(--gold); text-decoration: underline; }
.form-submit {
  background: var(--gold); color: #fff; border: none; padding: 14px;
  border-radius: 999px; font-weight: 800; font-size: 15px; cursor: pointer; margin-top: 6px; width: 100%;
}
.form-submit:hover { background: #A8752A; }
.form-success { text-align: center; padding: 30px 0; color: var(--brown); font-weight: 700; font-size: 15.5px; }
.form-error { background: #FDECEA; color: #8a2c1e; border: 1px solid #f2b8ae; border-radius: 12px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 14px; }
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Legal pages ---------- */
.legal-section { max-width: 820px; margin: 0 auto; padding: 56px 24px 90px; }
.legal-section h1 { font-size: 32px; margin: 0 0 8px; }
.legal-date { font-size: 13px; color: var(--brown2); margin: 0 0 36px; }
.legal-blocks { display: flex; flex-direction: column; gap: 28px; font-size: 14.5px; line-height: 1.75; }
.legal-blocks h2 { font-size: 19px; }
.legal-blocks a { color: var(--gold); text-decoration: underline; }
.cookie-type-card { background: #fff; border-radius: 14px; padding: 18px 20px; }
.cookie-type-card .t { font-weight: 700; color: var(--brown); font-size: 15px; margin-bottom: 4px; }
.cookie-type-card p { margin: 0; font-size: 13.5px; }
.cookie-types { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }

/* ---------- Contact page ---------- */
.contact-grid { padding: 56px 24px 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.info-list .label { font-weight: 700; color: var(--brown); font-size: 14.5px; margin-bottom: 2px; }
.info-list .value { font-size: 14px; }
.map-box {
  width: 100%; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden;
  position: relative;
}
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Shop / catalog ---------- */
.shop-intro { padding: 52px 24px 20px; text-align: center; }
.shop-intro h1 { font-size: 38px; margin: 12px 0 10px; }
.shop-intro p { max-width: 560px; margin: 0 auto; font-size: 15px; line-height: 1.6; }
.cat-nav {
  position: sticky; top: 78px; z-index: 40; background: var(--cream);
  border-bottom: 1px solid var(--beige); padding: 14px 24px;
  display: flex; justify-content: center;
}
.cat-nav-inner { display: flex; gap: 10px; flex-wrap: wrap; max-width: 1240px; }
.cat-pill {
  text-decoration: none; color: var(--brown); background: var(--cream2);
  padding: 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
}
.cat-pill:hover { background: var(--beige); }
.catalog-section { padding: 48px 24px; }
.catalog-section h2 { font-size: 26px; margin: 0 0 22px; display: flex; align-items: center; gap: 10px; }
.badge-new {
  background: var(--terracotta); color: #fff; font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.5px;
}
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 18px rgba(59,42,30,0.07); display: flex; flex-direction: column; }
.product-photo { height: 130px; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-name { font-weight: 700; color: var(--brown); font-size: 15px; }
.product-desc { font-size: 12.5px; color: var(--brown2); line-height: 1.4; flex: 1; }
.product-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.product-price { font-weight: 800; color: var(--gold); font-size: 15px; }
.btn-add {
  background: var(--brown); color: #fff; border: none; padding: 8px 14px;
  border-radius: 999px; font-size: 12.5px; font-weight: 700; cursor: pointer;
}
.btn-add:hover { background: var(--gold); }

.cta-lower { max-width: 1240px; margin: 20px auto 80px; padding: 0 24px; }
.cta-lower-inner { background: var(--cream2); border-radius: 24px; padding: 40px; text-align: center; }
.cta-lower-inner h3 { font-size: 24px; margin: 0 0 10px; }
.cta-lower-inner p { font-size: 14.5px; margin: 0 0 18px; }

/* ---------- Cart ---------- */
.cart-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  background: var(--brown); color: #fff; border: none; width: 64px; height: 64px;
  border-radius: 50%; font-size: 22px; cursor: pointer;
  box-shadow: 0 10px 26px rgba(59,42,30,0.35);
  display: none; align-items: center; justify-content: center;
}
.cart-fab.visible { display: flex; }
.cart-count {
  position: absolute; top: -4px; right: -4px; background: var(--terracotta); color: #fff;
  font-size: 12px; font-weight: 800; border-radius: 50%; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.cart-overlay { position: fixed; inset: 0; background: rgba(59,42,30,0.45); z-index: 200; display: none; }
.cart-overlay.visible { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -100%; bottom: 0; width: min(420px,100%); background: #fff;
  z-index: 210; padding: 28px; display: flex; flex-direction: column;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15); transition: right 0.25s ease;
  overflow-y: auto;
}
.cart-drawer.visible { right: 0; }
.cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.cart-head h3 { font-size: 22px; margin: 0; }
.cart-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--brown2); }
.cart-empty { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--brown2); font-size: 14.5px; }
.cart-lines { display: flex; flex-direction: column; gap: 16px; }
.cart-line { display: flex; gap: 12px; align-items: center; }
.cart-line .info { flex: 1; }
.cart-line .name { font-weight: 700; color: var(--brown); font-size: 14px; }
.cart-line .unit-price { font-size: 12.5px; color: var(--gold); font-weight: 700; }
.qty-control { display: flex; align-items: center; gap: 8px; background: var(--cream2); border-radius: 999px; padding: 4px 8px; }
.qty-control button { border: none; background: none; width: 22px; height: 22px; cursor: pointer; font-size: 15px; color: var(--brown); }
.qty-control span { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.line-total { font-weight: 800; font-size: 13.5px; color: var(--brown); min-width: 48px; text-align: right; }
.cart-summary { border-top: 1px solid var(--beige); padding-top: 16px; margin-top: 16px; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 16px; color: var(--brown); margin-bottom: 14px; }
.cart-checkout-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.cart-note { font-size: 11.5px; color: var(--brown2); text-align: center; margin: 10px 0 0; }
.cart-order-success { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; }
.cart-order-success .emoji { font-size: 40px; }
.cart-order-success .title { font-family: var(--font-serif); font-size: 19px; color: var(--brown); font-weight: 700; }
.cart-order-success p { font-size: 14px; color: var(--brown2); max-width: 280px; }

/* ---------- Values / timeline / team (o-nas) ---------- */
.values-strip { background: var(--cream2); padding: 60px 24px; }
.values-strip h2, .team-strip h2 { text-align: center; margin: 0 0 36px; font-size: 28px; }
.value-item { text-align: center; padding: 10px; }
.value-title { font-family: var(--font-serif); font-weight: 700; font-size: 17px; color: var(--brown); margin-bottom: 8px; }
.value-desc { font-size: 13.5px; line-height: 1.6; }

.timeline { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 28px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: start; }
.timeline-year { font-family: var(--font-serif); font-weight: 700; color: var(--gold); font-size: 20px; }
.timeline-body { border-left: 2px solid var(--beige); padding-left: 20px; }
.timeline-title { font-weight: 700; color: var(--brown); font-size: 15px; margin-bottom: 4px; }
.timeline-desc { font-size: 13.5px; line-height: 1.5; }

.team-strip { background: var(--cream2); padding: 60px 24px; }
.team-item { text-align: center; }
.team-photo { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 12px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; color: var(--brown); font-size: 14.5px; }
.team-role { font-size: 12.5px; color: var(--gold); }

/* ---------- Occasions / steps / pricing (objednavky) ---------- */
.occasion-card { background: #fff; border-radius: 18px; padding: 26px 20px; text-align: center; box-shadow: 0 6px 18px rgba(59,42,30,0.07); }
.occasion-title { font-family: var(--font-serif); font-weight: 700; font-size: 17px; color: var(--brown); margin-bottom: 8px; }
.occasion-desc { font-size: 13px; line-height: 1.5; }

.steps-strip { background: var(--cream2); padding: 60px 24px; }
.step-item { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: #fff;
  font-family: var(--font-serif); font-weight: 700; font-size: 20px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.step-title { font-weight: 700; color: var(--brown); font-size: 15px; margin-bottom: 6px; }
.step-desc { font-size: 13px; line-height: 1.5; }

.pricing-card { background: #fff; border: 1px solid var(--beige); border-radius: 18px; padding: 26px; }
.pricing-title { font-family: var(--font-serif); font-weight: 700; font-size: 18px; color: var(--brown); margin-bottom: 8px; }
.pricing-desc { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.pricing-price { font-weight: 800; color: var(--gold); font-size: 16px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero, .story .container, .contact-grid { grid-template-columns: 1fr; }
  .story .photo-box { order: -1; }
  .usp-grid, .cards-4, .product-grid { grid-template-columns: repeat(2,1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 textarea, .form-grid-2 .span-2 { grid-column: span 1; }
}
@media (max-width: 640px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    position: absolute; top: 78px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--beige);
    flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 12px 24px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; border-bottom: none; }
  .hero h1 { font-size: 38px; }
  .usp-grid, .cards-4, .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-inner { padding: 36px; }
  .form-card { padding: 26px; }
}
