/* ============================================================
   Café BEK — shared stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #211a14;        /* espresso */
  --paper: #f6f1ea;      /* crema */
  --paper-dim: #ece3d6;
  --accent: #6f4e37;     /* coffee brown */
  --accent-deep: #4a3526;
  --muted: #8c7d6c;
  --line: #ddd2c2;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: rgba(246, 241, 234, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }

nav { display: flex; gap: 1.9rem; align-items: center; }

nav a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}
nav a:hover { color: var(--accent); }
nav a.active { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--accent); color: var(--paper) !important; }

/* ── Hero (home) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem 5rem;
  background: linear-gradient(90deg, rgba(20,14,10,0.78) 0%, rgba(20,14,10,0.55) 45%, rgba(20,14,10,0.15) 100%),
              url('/assets/hero-beans.avif') center/cover no-repeat;
  color: var(--paper);
}

.hero-inner { max-width: 620px; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d9bfa3;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: #e7cdb0; }

.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e7cdb0;
  margin-bottom: 1.8rem;
}

.hero-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(246,241,234,0.86);
  max-width: 44ch;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.btn-group { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

/* ── Page hero (interior pages) ── */
.page-hero {
  position: relative;
  padding: 11rem 5rem 5rem;
  background: linear-gradient(90deg, rgba(20,14,10,0.85) 0%, rgba(20,14,10,0.6) 60%, rgba(20,14,10,0.3) 100%),
              var(--ink);
  background-size: cover;
  background-position: center;
  color: var(--paper);
}
.page-hero.beans  { background-image: linear-gradient(90deg, rgba(20,14,10,0.85) 0%, rgba(20,14,10,0.55) 60%, rgba(20,14,10,0.25) 100%), url('/assets/hero-beans.avif'); }
.page-hero.events { background-image: linear-gradient(90deg, rgba(20,14,10,0.84) 0%, rgba(20,14,10,0.55) 60%, rgba(20,14,10,0.25) 100%), url('/assets/events.avif'); }
.page-hero.bottle { background-image: linear-gradient(90deg, rgba(20,14,10,0.84) 0%, rgba(20,14,10,0.55) 60%, rgba(20,14,10,0.25) 100%), url('/assets/product-bottle.avif'); }
.page-hero.harvest{ background-image: linear-gradient(90deg, rgba(20,14,10,0.84) 0%, rgba(20,14,10,0.55) 60%, rgba(20,14,10,0.25) 100%), url('/assets/harvest.avif'); }
.page-hero.process{ background-image: linear-gradient(90deg, rgba(20,14,10,0.84) 0%, rgba(20,14,10,0.55) 60%, rgba(20,14,10,0.25) 100%), url('/assets/process.avif'); }
.page-hero.carajillo{ background-image: linear-gradient(90deg, rgba(20,14,10,0.84) 0%, rgba(20,14,10,0.55) 60%, rgba(20,14,10,0.25) 100%), url('/assets/carajillo.avif'); }

.page-hero-inner { max-width: 700px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.page-hero h1 em { font-style: italic; color: #e7cdb0; }
.page-hero p.lead {
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(246,241,234,0.86);
  font-weight: 300;
  max-width: 52ch;
  margin-bottom: 2.2rem;
}

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d9bfa3;
  margin-bottom: 1.6rem;
}
.breadcrumb a { color: #d9bfa3; text-decoration: none; }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb span { color: rgba(246,241,234,0.5); margin: 0 0.5rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  padding: 0.95rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}
.btn-primary:hover { background: var(--accent); color: var(--paper); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  color: var(--paper);
  text-decoration: none;
  padding: 0.95rem 2.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(246,241,234,0.5);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--paper); background: rgba(246,241,234,0.1); }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #08361a;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: #1fbb59; transform: translateY(-2px); }
.btn-wa svg { width: 18px; height: 18px; fill: currentColor; }

/* ── Section headings ── */
.section-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-body {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  max-width: 46ch;
}
.section-body + .section-body { margin-top: 1.1rem; }

/* ── Intro / two-column feature row ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--line);
}
.intro.flip .intro-text { order: 2; }
.intro.flip .intro-img { order: 1; }
.intro-text { padding: 6rem 4rem 6rem 5rem; }
.intro-img { align-self: stretch; min-height: 460px; background: center/cover no-repeat; }
.intro-img.harvest { background-image: url('/assets/harvest.avif'); }
.intro-img.process { background-image: url('/assets/process.avif'); }
.intro-img.events  { background-image: url('/assets/events.avif'); }
.intro-img.bottle  { background-image: url('/assets/product-bottle.avif'); }
.intro-img.carajillo { background-image: url('/assets/carajillo.avif'); }
.intro-img.bag     { background-image: url('/assets/product-bag.avif'); }
.intro-text .btn-dark, .intro-text .btn-wa { margin-top: 2rem; }

/* ── Units / feature cards ── */
.units { padding: 6rem 5rem; border-top: 1px solid var(--line); text-align: center; }
.units.tinted { background: #fbf8f3; }
.units-head { max-width: 660px; margin: 0 auto 3.5rem; }
.units-head .section-tag, .units-head .section-body { text-align: center; }
.units-head .section-body { margin: 1rem auto 0; }

.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.units-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.units-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.unit {
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fbf8f3;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s;
}
.units.tinted .unit { background: var(--paper); }
.unit.visible { opacity: 1; transform: none; }
.unit:nth-child(2){ transition-delay:.08s } .unit:nth-child(3){ transition-delay:.16s }
.unit:nth-child(4){ transition-delay:.24s } .unit:nth-child(5){ transition-delay:.32s } .unit:nth-child(6){ transition-delay:.40s }
.unit:hover { box-shadow: 0 14px 30px -18px rgba(33,26,20,0.4); }
.unit-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}
.unit-title { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.6rem; letter-spacing: 0.01em; }
.unit-desc { font-size: 0.9rem; line-height: 1.65; color: var(--muted); font-weight: 300; }

/* ── Packages (pricing-style cards) ── */
.packages { padding: 6rem 5rem; border-top: 1px solid var(--line); text-align: center; }
.packages-head { max-width: 660px; margin: 0 auto 3.5rem; }
.packages-head .section-tag, .packages-head .section-body { text-align: center; }
.packages-head .section-body { margin: 1rem auto 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  text-align: left;
  align-items: stretch;
}
.pkg {
  display: flex;
  flex-direction: column;
  padding: 2.6rem 2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  position: relative;
}
.pkg.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pkg.featured .pkg-name { color: var(--paper); }
.pkg.featured .pkg-tagline, .pkg.featured .pkg-list li { color: rgba(246,241,234,0.78); }
.pkg.featured .pkg-list li::before { color: #e7cdb0; }
.pkg-badge {
  position: absolute; top: -0.8rem; left: 2rem;
  background: var(--accent); color: var(--paper);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 2px;
}
.pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 500; margin-bottom: 0.4rem; }
.pkg-tagline { font-size: 0.9rem; color: var(--muted); font-weight: 300; margin-bottom: 1.6rem; line-height: 1.6; }
.pkg-list { list-style: none; margin-bottom: 2rem; flex: 1; }
.pkg-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem;
  font-size: 0.92rem; line-height: 1.6; color: var(--muted); font-weight: 300;
}
.pkg-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.pkg .btn-dark, .pkg .btn-primary { align-self: stretch; text-align: center; }

/* ── Catalog (productos) ── */
.products { border-top: 1px solid var(--line); }
.products-head { text-align: center; padding: 6rem 2rem 3rem; max-width: 660px; margin: 0 auto; }
.products-head .section-tag, .products-head .section-body { text-align: center; }
.products-head .section-body { margin: 1rem auto 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.product {
  padding: 3rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.product-grid.no-bottom .product { border-bottom: none; }
.product:last-child { border-right: none; }
.product-img-wrap {
  aspect-ratio: 1/1;
  background: var(--paper-dim);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: center;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product:hover .product-img-wrap img { transform: scale(1.05); }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; margin-bottom: 0.5rem; }
.product-meta { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; }
.product-desc { font-size: 0.92rem; line-height: 1.65; color: var(--muted); font-weight: 300; }

/* ── Process / variedades ── */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.process-img { min-height: 480px; background: url('/assets/process.avif') center/cover no-repeat; }
.process-text { padding: 6rem 5rem 6rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.process-text .btn-dark { align-self: flex-start; margin-top: 2rem; }

/* ── Steps (numbered process) ── */
.steps { padding: 6rem 5rem; border-top: 1px solid var(--line); }
.steps-head { max-width: 660px; margin: 0 auto 3.5rem; text-align: center; }
.steps-head .section-tag, .steps-head .section-body { text-align: center; }
.steps-head .section-body { margin: 1rem auto 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.step-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.4rem;
  color: var(--accent); line-height: 1; margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; line-height: 1.65; color: var(--muted); font-weight: 300; }

/* ── FAQ ── */
.faq { padding: 6rem 5rem; border-top: 1px solid var(--line); }
.faq-head { max-width: 660px; margin: 0 auto 3rem; text-align: center; }
.faq-head .section-tag { text-align: center; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.6rem 0; }
.faq-item h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.7rem; color: var(--ink); }
.faq-item p { font-size: 0.96rem; line-height: 1.75; color: var(--muted); font-weight: 300; }

/* ── CTA band ── */
.cta-band {
  position: relative;
  padding: 6.5rem 5rem;
  text-align: center;
  background: linear-gradient(rgba(20,14,10,0.82), rgba(20,14,10,0.82)), url('/assets/events.avif') center/cover no-repeat;
  color: var(--paper);
}
.cta-band.beans { background: linear-gradient(rgba(20,14,10,0.82), rgba(20,14,10,0.82)), url('/assets/hero-beans.avif') center/cover no-repeat; }
.cta-band.harvest { background: linear-gradient(rgba(20,14,10,0.82), rgba(20,14,10,0.82)), url('/assets/harvest.avif') center/cover no-repeat; }
.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 24ch;
  margin: 0 auto 1.2rem;
}
.cta-band-title em { font-style: italic; color: #e7cdb0; }
.cta-band p { color: rgba(246,241,234,0.8); font-weight: 300; margin-bottom: 2.2rem; font-size: 1.05rem; max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { justify-content: center; }

/* ── Contact / form ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.contact-info { padding: 6rem 4rem 6rem 5rem; background: #fbf8f3; }
.contact-info .info-block { margin-bottom: 2rem; }
.contact-info h4 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem; font-weight: 500;
}
.contact-info p, .contact-info a {
  display: block; font-size: 1rem; line-height: 1.7; color: var(--ink);
  font-weight: 300; text-decoration: none;
}
.contact-info a:hover { color: var(--accent); }
.contact-form { padding: 6rem 5rem 6rem 4rem; }
.form-row { margin-bottom: 1.4rem; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-row label {
  display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-hidden { display: none; }
.form-note { font-size: 0.82rem; color: var(--muted); font-weight: 300; margin-top: 1rem; line-height: 1.6; }

/* ── Floating WhatsApp button ── */
.wa-float {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 22px -6px rgba(8,54,26,0.55);
  transition: transform 0.18s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── Footer ── */
footer { background: var(--ink); color: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 5rem 3rem;
}
.footer-brand img { height: 56px; width: auto; filter: invert(1) brightness(1.6); margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(246,241,234,0.6); font-weight: 300; max-width: 30ch; }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #d9bfa3; margin-bottom: 1.1rem; font-weight: 500;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 0.9rem; line-height: 1.7; color: rgba(246,241,234,0.72);
  font-weight: 300; text-decoration: none; margin-bottom: 0.4rem;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,234,0.12);
  padding: 1.5rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom span, .footer-bottom a { font-size: 0.8rem; color: rgba(246,241,234,0.55); text-decoration: none; }
.footer-bottom .legal { display: flex; gap: 1.8rem; }
.footer-bottom a:hover { color: var(--paper); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-inner > *, .page-hero-inner > * { animation: fadeUp 0.8s ease both; }
.hero-inner > *:nth-child(1), .page-hero-inner > *:nth-child(1){ animation-delay:.1s }
.hero-inner > *:nth-child(2), .page-hero-inner > *:nth-child(2){ animation-delay:.22s }
.hero-inner > *:nth-child(3), .page-hero-inner > *:nth-child(3){ animation-delay:.34s }
.hero-inner > *:nth-child(4), .page-hero-inner > *:nth-child(4){ animation-delay:.46s }
.hero-inner > *:nth-child(5), .page-hero-inner > *:nth-child(5){ animation-delay:.58s }

/* ── Responsive ── */
@media (max-width: 1080px) {
  nav { gap: 1.2rem; }
  nav a { font-size: 0.74rem; letter-spacing: 0.08em; }
}
@media (max-width: 980px) {
  header { padding: 0.8rem 1.5rem; }
  nav { gap: 1rem; }
  nav a:not(.nav-cta) { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .page-hero { padding: 8.5rem 1.5rem 3.5rem; }
  .intro, .intro.flip { grid-template-columns: 1fr; }
  .intro.flip .intro-text, .intro.flip .intro-img { order: initial; }
  .intro-text { padding: 4rem 1.5rem 2.5rem; }
  .intro-img { min-height: 320px; order: -1; }
  .units, .packages, .steps, .faq { padding: 4rem 1.5rem; }
  .units-grid, .units-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .products-head { padding: 4rem 1.5rem 2rem; }
  .product-grid, .product-grid.no-bottom { grid-template-columns: 1fr; }
  .product { border-right: none; border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; }
  .process-img { min-height: 300px; }
  .process-text { padding: 4rem 1.5rem; }
  .cta-band { padding: 4.5rem 1.5rem; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info { padding: 4rem 1.5rem; }
  .contact-form { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .units-grid, .units-grid.cols-3, .units-grid.cols-2, .steps-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
