/* ============================================================
   Toast & Roast — site styles
   Mobile-first, fully responsive (mobile / tablet / desktop).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: var(--lh-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--olive-700); text-decoration: none; }
a:hover { color: var(--olive-600); }
button { font: inherit; }

/* ---- Material Symbols glyph ---- */
.ms {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 420, 'GRAD' 0, 'opsz' 24;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  user-select: none;
  display: inline-flex;
  vertical-align: middle;
}

.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  padding: 8px 14px;
  background: var(--olive-500);
  color: var(--on-olive);
  border-radius: var(--r-sm);
  font-weight: 700;
  z-index: 100;
}
.skip-link:focus { top: 8px; }

/* ============================================================
   Layout shell
   ============================================================ */

.viewport {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 20px 64px;
  flex: 1 0 auto;
}

@media (min-width: 720px) {
  .viewport { padding: 28px 32px 96px; }
}
@media (min-width: 1024px) {
  .viewport { padding: 40px 40px 120px; }
}

/* ============================================================
   Header — sticky with blurred cream scrim
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 246, 239, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}
.brand-link { display: inline-flex; flex: 0 0 auto; align-items: center; }
/* Official logo (clean, background-knocked-out mark) — sits directly on the
   cream paper, sized by height so the wordmark stays legible. No crop, no fill. */
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}
@media (min-width: 720px)  { .header-inner { padding: 14px 32px; } .brand-logo { height: 54px; } }
@media (min-width: 1024px) { .header-inner { padding: 18px 40px; } .brand-logo { height: 58px; } }

/* ----- Desktop nav ----- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-desktop a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-700);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav-desktop a:hover { color: var(--olive-700); }
.nav-desktop a.active { color: var(--olive-700); border-bottom-color: var(--olive-500); }
.nav-desktop .nav-cta {
  margin-left: 8px;
  padding: 11px 20px;
  font-size: 14.5px;
  border-bottom: none;
}
.nav-desktop .nav-cta:hover { border-bottom: none; }
@media (min-width: 960px)  { .nav-desktop { display: flex; } }

/* ----- Mobile hamburger ----- */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink-900);
  display: inline-flex;
  border-radius: var(--r-sm);
  transition: background .15s;
}
.menu-btn:hover { background: var(--sand-200); }
.menu-btn .ms { font-size: 28px; }
@media (min-width: 960px) { .menu-btn { display: none; } }

/* ----- Mobile collapsible nav ----- */
.nav-mobile {
  display: none;            /* default: hidden */
  flex-direction: column;
  gap: 2px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4px 16px 14px;
  animation: fadeUp .22s ease-out;
}
.site-header.is-open .nav-mobile { display: flex; }
.nav-mobile a {
  background: transparent;
  border-radius: var(--r-sm);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-700);
  transition: background .15s, color .15s;
}
.nav-mobile a:hover { background: var(--sand-200); color: var(--olive-700); }
.nav-mobile a.active { background: var(--sand-200); color: var(--olive-700); }
@media (min-width: 960px) { .nav-mobile, .site-header.is-open .nav-mobile { display: none; } }

/* ============================================================
   Screen container + animations
   ============================================================ */

.screen { display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 720px) { .screen { gap: 36px; } }

.fade-in { animation: fadeUp .26s ease-out; }
@keyframes fadeUp {
  from { transform: translateY(10px); }
  to   { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .nav-mobile { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive-600);
}
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 6px 0 0;
}
.serif-h {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: var(--lh-snug);
  color: var(--ink-900);
  margin: 0;
}
.serif-h--lg {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}
.lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
  max-width: 480px;
}
.lede-sm {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
  max-width: 560px;
}
.prose {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0 0 14px;
  max-width: 640px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .15s, transform .12s, box-shadow .15s, color .15s, border-color .15s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.2;
}
.btn .ms { font-size: 20px; }
.btn:active { transform: scale(.98); }
.btn-full { width: 100%; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }

.btn-primary {
  background: var(--olive-500);
  color: var(--on-olive);
  box-shadow: 0 8px 20px rgba(76, 80, 38, .22);
}
.btn-primary:hover { background: var(--olive-600); color: var(--on-olive); }

.btn-outline {
  background: transparent;
  color: var(--olive-700);
  border: 1.5px solid var(--olive-500);
}
.btn-outline:hover { background: rgba(118, 122, 69, .08); color: var(--olive-700); }

.btn-ghost { background: var(--sand-200); color: var(--ink-700); }
.btn-ghost:hover { background: var(--sage-200); }

.btn-icon { padding: 14px 16px; flex: 0 0 auto; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  padding: 12px 0 8px;
}
.hero-copy { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.hero .lede { margin: 0 auto; }
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.hero-art { width: 100%; display: flex; justify-content: center; }

/* ----- Cart-with-logo composite -----
   The watercolor cart's painted front panel had off-brand lettering, which
   we cleaned off (coffee-cart-clean.png) leaving its decorative sign frame.
   The real brand mark is laid inside that frame so it reads like a mounted
   food-truck promo sign — no circle crop, no fill, just the knocked-out mark. */
.cart-stack {
  position: relative;
  width: 92%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
}
.cart-stack .cart-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cart-stack .cart-logo {
  position: absolute;
  left: 35.5%;
  top: 68.5%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: auto;
  filter: drop-shadow(0 1px 4px rgba(58, 52, 33, .14));
}

@media (min-width: 960px) {
  .hero {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 56px;
    padding: 56px 0 32px;
  }
  .hero-copy { flex: 1 1 0; align-items: flex-start; gap: 18px; max-width: 560px; }
  .hero .lede { margin: 0; }
  .cta-row { justify-content: flex-start; }
  .hero-art { flex: 1 1 0; }
  .cart-stack { width: 100%; max-width: 520px; margin-left: auto; }
}

/* ============================================================
   Cards + icon wells
   ============================================================ */

.card {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) { .card { padding: 26px; } }

.icon-well {
  border-radius: 50%;
  background: var(--sage-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--olive-600);
}
.icon-well .ms { color: var(--olive-600); }
.icon-well--xl { width: 56px; height: 56px; }
.icon-well--xl .ms { font-size: 28px; }
.icon-well--lg { width: 52px; height: 52px; }
.icon-well--lg .ms { font-size: 26px; }
.icon-well--md { width: 44px; height: 44px; }
.icon-well--md .ms { font-size: 22px; }
.icon-well--sm { width: 40px; height: 40px; }
.icon-well--sm .ms { font-size: 20px; }

/* Trust card */
.trust-card { display: flex; gap: 15px; align-items: flex-start; }
.card-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-900);
  margin: 0;
  line-height: 1.3;
}
.card-body { font-size: 14.5px; line-height: 1.5; color: var(--ink-700); margin: 4px 0 0; }

/* Leaf rule */
.leaf-rule {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; color: var(--olive-500);
}
.leaf-rule .ms { font-size: 20px; color: var(--olive-500); }
.rule-line { height: 1px; width: 56px; background: var(--sage-300); }

/* ============================================================
   Home — "Complete coffee experience" band
   ============================================================ */

.band { display: flex; flex-direction: column; gap: 22px; text-align: center; }
.band-head { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.band-head .lede-sm { margin: 0 auto; }
.band-cta { display: flex; justify-content: center; }

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.feature-card {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  transition: box-shadow .18s, transform .18s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-900);
  margin: 0;
}
.feature-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}
@media (min-width: 720px)  { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   What's Included screen
   ============================================================ */

.screen-header { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; max-width: 720px; }
.screen-header .lede-sm { text-align: left; }

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.service-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; padding-bottom: 0; }
.service-row h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-900);
  margin: 0;
  line-height: 1.3;
}
.service-row p { font-size: 14.5px; line-height: 1.5; color: var(--ink-700); margin: 4px 0 0; }
@media (min-width: 860px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .service-row {
    background: var(--cream-100);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 22px;
  }
}

/* Important info card */
.info-card { padding: 22px; max-width: 720px; }
.info-card-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.info-card-head .ms { color: var(--olive-600); font-size: 22px; }
.info-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink-900);
  margin: 0;
}
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row + .info-row { margin-top: 14px; }
.info-row-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  margin: 0;
}
.info-row-body { font-size: 14px; line-height: 1.5; color: var(--ink-700); margin: 1px 0 0; }

/* ============================================================
   About screen
   ============================================================ */

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.about-copy { display: flex; flex-direction: column; gap: 12px; max-width: 600px; }
.about-art { width: 100%; display: flex; justify-content: center; }
.about-points {
  display: flex; flex-direction: column; gap: 10px; margin: 8px 0 18px;
}
.about-point {
  display: flex; gap: 12px; align-items: center;
  font-size: 15px; color: var(--ink-700);
}
.about-point .ms { color: var(--olive-600); font-size: 22px; }
@media (min-width: 960px) {
  .about-grid {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .about-copy { flex: 1 1 0; }
  .about-art { flex: 1 1 0; }
  .about-art .cart-stack { width: 100%; max-width: 460px; }
}

/* ============================================================
   Quote wizard
   ============================================================ */

.quote-wrap {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 24px 22px;
}
@media (min-width: 720px) { .quote-wrap { padding: 36px 36px; } }

.progress {
  display: flex; gap: 7px; align-items: center; justify-content: center;
}
.progress span {
  height: 6px; width: 6px; border-radius: 999px;
  background: var(--sage-300);
  transition: width .22s ease, background .22s ease;
}
.progress span.passed { background: var(--olive-500); }
.progress span.current { background: var(--olive-500); width: 24px; }

.step-head { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.step-body { display: flex; flex-direction: column; gap: 18px; }
.step-foot { display: flex; gap: 10px; margin-top: 8px; }

.option-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 2), 1fr);
  gap: 10px;
}
.option-grid--3 { --cols: 3; }
@media (min-width: 520px) {
  .option-grid { --cols: 3; }
  .option-grid--3 { --cols: 5; }
}

.opt-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  padding: 14px 10px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--cream-0);
  color: var(--ink-700);
  transition: background .14s, color .14s, border-color .14s, box-shadow .14s, transform .12s;
}
.opt-btn:hover { border-color: var(--sage-300); }
.opt-btn:active { transform: scale(.98); }
.opt-btn.is-active {
  border: 1.5px solid var(--olive-500);
  background: var(--olive-500);
  color: var(--on-olive);
  box-shadow: 0 6px 16px rgba(76, 80, 38, .22);
}

/* Labeled field */
.labeled { display: flex; flex-direction: column; gap: 10px; }
.labeled-head { display: flex; align-items: center; gap: 9px; }
.labeled-head .ms { color: var(--olive-600); font-size: 20px; }
.labeled-head span:not(.ms) {
  font-weight: 700; font-size: 15px; color: var(--ink-900);
}

/* Select-like button */
.select {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream-0);
  border-radius: 12px;
  padding: 15px 16px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px;
  color: var(--ink-900);
  cursor: pointer;
  transition: border-color .15s;
}
.select:hover { border-color: var(--sage-300); }
.select.is-empty { color: var(--ink-500); }
.select .ms { color: var(--ink-500); font-size: 20px; }

/* Real input field (date / location / contact details) */
.field {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--cream-0);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s;
}
.field::placeholder { color: var(--ink-500); font-weight: 500; }
.field:hover { border-color: var(--sage-300); }
.field:focus {
  outline: none;
  border-color: var(--olive-500);
  box-shadow: 0 0 0 3px rgba(118, 122, 69, .15);
}

/* Stepper */
.stepper { display: flex; align-items: center; gap: 10px; }
.step-btn {
  width: 46px; height: 46px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--cream-0);
  font-size: 22px; color: var(--ink-700);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 0;
  transition: background .15s, border-color .15s, transform .12s;
}
.step-btn:hover { border-color: var(--sage-300); background: var(--cream-100); }
.step-btn:active { transform: scale(.96); }
.step-btn[disabled] { opacity: .45; cursor: not-allowed; }
.step-num {
  flex: 1; text-align: center;
  font-weight: 700; font-size: 19px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 0; background: var(--cream-0);
}
.step-unit {
  background: var(--sand-200); border-radius: 10px;
  padding: 13px 18px;
  font-weight: 600; color: var(--ink-700); font-size: 15px;
  margin-left: 4px;
}

/* Menu radio-cards */
.menu-options { display: flex; flex-direction: column; gap: 10px; }
.menu-card {
  display: flex; gap: 13px; align-items: center;
  padding: 14px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer; text-align: left;
  transition: border-color .15s, box-shadow .15s, transform .12s;
}
.menu-card:hover { border-color: var(--sage-300); }
.menu-card:active { transform: scale(.99); }
.menu-card.is-active {
  border: 1.5px solid var(--olive-500);
  box-shadow: 0 8px 20px rgba(76, 80, 38, .18);
}
.menu-card-body { flex: 1; }
.menu-card-title {
  font-family: var(--font-body);
  font-weight: 700; font-size: 16px;
  color: var(--ink-900); margin: 0;
}
.menu-card-desc { font-size: 13px; color: var(--ink-700); line-height: 1.4; margin: 2px 0 0; }
.menu-card-radio { color: var(--sage-300); }
.menu-card.is-active .menu-card-radio { color: var(--olive-500); }

/* Addons */
.addons { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-body);
  font-weight: 600; font-size: 13.5px;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--cream-0);
  color: var(--ink-700);
  display: inline-flex; align-items: center; gap: 5px;
  transition: background .14s, color .14s, border-color .14s;
}
.chip:hover { border-color: var(--sage-300); }
.chip.is-on {
  border: 1.5px solid var(--olive-500);
  background: var(--olive-500);
  color: var(--on-olive);
}
.chip .ms { font-size: 15px; }

/* Estimate / summary */
.estimate-card {
  background: var(--olive-700);
  color: var(--on-olive);
  border: none;
  text-align: center;
  padding: 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.estimate-card .eyebrow {
  color: rgba(252, 250, 244, .7);
  letter-spacing: .18em;
}
.estimate-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  margin: 6px 0 0;
  line-height: 1.05;
}
.estimate-meta {
  font-size: 13.5px;
  color: rgba(252, 250, 244, .78);
  margin: 4px 0 0;
}

/* ---- Promo (limited-time discount) ---- */
.estimate-old {
  font-size: 20px;
  color: rgba(252, 250, 244, .6);
  text-decoration: line-through;
  margin-top: 2px;
}
.promo-chip {
  display: inline-block;
  margin-top: 10px;
  background: var(--on-olive);
  color: var(--olive-700);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(38, 39, 26, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: promo-fade .2s ease both;
}
.promo-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--cream-100);
  border-radius: var(--r-lg);
  padding: 32px 24px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: promo-pop .28s cubic-bezier(.2, .9, .3, 1.2) both;
}
.promo-x {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink-500);
  padding: 6px;
  line-height: 0;
  border-radius: var(--r-pill);
}
.promo-x:hover { background: var(--sand-200); color: var(--ink-700); }
.promo-badge {
  display: inline-block;
  background: var(--olive-500);
  color: var(--on-olive);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.promo-title { font-size: 24px; margin: 0 0 12px; color: var(--ink-900); }
.promo-old {
  color: var(--ink-500);
  text-decoration: line-through;
  font-size: 18px;
}
.promo-new {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--olive-700);
  margin: 2px 0 0;
  line-height: 1.05;
}
.promo-note { font-size: 13.5px; color: var(--ink-700); margin: 10px 0 18px; }
@keyframes promo-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes promo-pop {
  from { opacity: 0; transform: translateY(8px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .k {
  font-size: 13.5px; color: var(--ink-500); font-weight: 600;
}
.summary-row .v {
  font-size: 14px; color: var(--ink-900); font-weight: 700;
  text-align: right; max-width: 260px;
}
.note-row {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  color: var(--ink-500); font-size: 12.5px;
}
.note-row .ms { font-size: 16px; }

/* Contact form (final quote step) */
.contact-form {
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px;
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.contact-form-head {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--ink-900);
}
.contact-form-head .ms { color: var(--olive-600); font-size: 20px; }
.contact-hint { font-size: 12.5px; line-height: 1.5; color: var(--ink-500); margin: 0; }

/* Confirmation */
.confirm {
  display: flex; flex-direction: column; gap: 18px;
  align-items: center; text-align: center;
  padding-top: 24px;
}
.confirm-check {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--sage-200);
  display: flex; align-items: center; justify-content: center;
}
.confirm-check .ms { font-size: 56px; color: var(--olive-500); }
.confirm p {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-700); max-width: 360px; margin: 0;
}
.confirm .btn-row { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  margin-top: 32px;
  background: var(--cream-100);
  border-top: 1px solid var(--line);
  padding: 32px 20px;
  flex: 0 0 auto;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex; gap: 12px; align-items: center;
}
.footer-emblem {
  height: 50px;
  width: auto;
  display: block;
}
.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-contact { display: flex; flex-direction: column; gap: 9px; align-items: center; }
.footer-contact-link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--ink-700);
}
.footer-contact-link:hover { color: var(--olive-700); }
.footer-contact-link .ms { font-size: 18px; color: var(--olive-600); }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px;
  color: var(--ink-900);
  line-height: 1.2;
}
.footer-tag {
  font-family: var(--font-body);
  font-weight: 600; font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive-600);
  margin-top: 2px;
}
.footer-nav {
  display: flex; flex-wrap: wrap;
  gap: 6px 22px;
  justify-content: center;
}
.footer-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-700);
}
.footer-nav a:hover { color: var(--olive-700); }
.footer-legal { font-size: 12.5px; color: var(--ink-500); }
@media (min-width: 720px) {
  .site-footer { padding: 40px 32px; }
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 28px;
  }
  .footer-cols { align-items: flex-start; }
  .footer-contact { align-items: flex-start; }
  .footer-legal { text-align: right; }
}

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.fab {
  position: fixed;
  right: 20px; bottom: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--olive-500);
  color: var(--on-olive);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(76, 80, 38, .42);
  cursor: pointer; border: none;
  text-decoration: none;
  transition: background .15s, transform .15s;
  z-index: 50;
}
.fab:hover { background: var(--olive-600); color: var(--on-olive); }
.fab:active { transform: scale(.95); }
.fab .ms { font-size: 30px; }
@media (min-width: 720px) { .fab { right: 28px; bottom: 28px; } }

/* ============================================================
   Focus styles
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.btn:focus-visible { outline-offset: 3px; }
