/* ── Variables — sage green + coral, dark by default ── */
:root {
  --primary:       #7fbf9f;
  --primary-bright:#9ad4b6;
  --primary-deep:  #4f8a6b;
  --accent:        #e8834f;
  --accent-bright: #f2986a;
  --bg:            #132920;
  --bg-alt:        #0e2018;
  --bg-card:       #1c3a2c;
  --text:          #eef7f1;
  --text-muted:    #a8c9b8;
  --border:        rgba(127, 191, 159, 0.2);
  --shadow:        rgba(127, 191, 159, 0.14);

  --font-heading: 'Lora', serif;
  --font-body:    'Nunito', sans-serif;

  --radius:       22px;
  --radius-sm:    14px;
  --radius-pill:  999px;
  --max-width:    1140px;
  --section-pad:  84px;
  --utility-height: 38px;
  --nav-height:     76px;
}

/* ── Light theme ── */
html[data-theme="light"] {
  --primary:       #3f7a5c;
  --primary-bright:#4f8a6b;
  --primary-deep:  #2f5f45;
  --accent:        #d9683a;
  --accent-bright: #e8834f;
  --bg:            #f7fbf8;
  --bg-alt:        #eef6f1;
  --bg-card:       #ffffff;
  --text:          #16261f;
  --text-muted:    #3f6350;
  --border:        rgba(63, 122, 92, 0.22);
  --shadow:        rgba(63, 122, 92, 0.12);
}
html[data-theme="light"] .contact-form__field input::placeholder,
html[data-theme="light"] .contact-form__field textarea::placeholder { color: rgba(63, 122, 92, 0.4); }
html[data-theme="light"] .hero__blob { opacity: 0.16; }

/* ── Theme Toggle ── */
.theme-toggle {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--text-muted); display: flex; align-items: center;
  border-radius: var(--radius-sm); transition: color 0.15s, background 0.15s;
}
.theme-toggle:hover { color: var(--text); background: rgba(63, 107, 82, 0.1); }
.theme-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
.theme-toggle__sun { display: none; }
html[data-theme="light"] .theme-toggle__moon { display: none; }
html[data-theme="light"] .theme-toggle__sun { display: block; }

/* ── Logo ── */
.logo-img { display: block; flex-shrink: 0; border-radius: 10px; }
.logo-img--nav    { height: 44px; width: auto; }
.logo-img--footer { height: 28px; width: auto; }
.logo-img--hero   { height: 250px; width: auto; position: relative; z-index: 1; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: 24px; }
.container--narrow { max-width: 700px; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; font-family: var(--font-heading); }
p { font-size: 1.05rem; }
em, .italic { font-style: italic; }

.accent { color: var(--primary); }

/* Small serif "chapter kicker" instead of an uppercase pill badge */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 6px;
}
.kicker::before { content: '\2766'; font-size: 0.9em; }

/* ── Buttons — soft pills ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn--primary { background: var(--accent); color: #fff9f0; }
.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--shadow);
}
.btn--outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--large { padding: 17px 36px; font-size: 1.1rem; }

/* ── Utility bar — service area / trust line, local-business convention ── */
.utility-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  height: var(--utility-height);
  background: var(--primary-deep);
  color: var(--bg);
}
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  font-size: 0.85rem; font-weight: 700;
}

/* ── Nav — solid, warm, no glass/blur ── */
.nav {
  position: fixed; top: var(--utility-height); left: 0; right: 0; z-index: 100;
  background: var(--bg-alt);
  border-bottom: 2px dashed var(--border);
}
.nav__inner { display: flex; align-items: center; height: var(--nav-height); }
.nav__logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 600;
  color: var(--text);
  margin-right: auto;
}
.nav__logo:hover { color: var(--primary); }
.nav__controls { display: flex; align-items: center; gap: 4px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-size: 0.98rem; font-weight: 700; color: var(--text-muted); transition: color 0.15s; }
.nav__links a:hover { color: var(--text); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── Hero — centered, storybook cover feel ── */
.hero { padding-top: calc(var(--utility-height) + var(--nav-height) + 64px); padding-bottom: 64px; position: relative; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 48px; }
.hero__eyebrow {
  font-family: var(--font-heading); font-style: italic;
  font-size: 1.05rem; font-weight: 500;
  color: var(--accent); margin-bottom: 14px;
}
.hero__text h1 { margin-bottom: 20px; }
.hero__sub { font-size: 1.14rem; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__graphic { display: flex; justify-content: center; align-items: center; position: relative; }
.hero__blob {
  position: absolute;
  width: 320px; height: 320px;
  background: var(--primary);
  opacity: 0.22;
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  z-index: 0;
}

/* ── Sections ── */
.section { padding-block: var(--section-pad); background: var(--bg); }
.section--alt { background: var(--bg-alt); }
.section--contact, .section--cta { text-align: center; }
.section--contact p, .section--cta p { color: var(--text-muted); margin-block: 16px 32px; font-size: 1.1rem; }
.section__header { margin-bottom: 10px; }
.section__lead { font-size: 1.12rem; color: var(--text-muted); max-width: 620px; margin-top: 12px; margin-bottom: 44px; }
.section h2 { margin-top: 4px; }

/* ── Panels — dashed storybook cards, replacing SaaS icon-cards ── */
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.panels--2 { grid-template-columns: repeat(2, 1fr); }
.panel {
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.panel:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px var(--shadow);
}
.panel__icon {
  width: 50px; height: 50px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.panel__icon svg { width: 24px; height: 24px; stroke: var(--primary); }
.panel h3 { margin-bottom: 10px; color: var(--text); }
.panel p { font-size: 0.98rem; color: var(--text-muted); margin: 0; }

/* ── Checklist ── */
.list-check { display: flex; flex-direction: column; gap: 14px; }
.list-check--grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.list-check li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--text); }
.list-check svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--accent); margin-top: 2px; }

/* ── Numbered steps (Book page) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 36px; }
.step { text-align: center; }
.step__num {
  width: 44px; height: 44px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.2rem;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── Menu board pricing (replaces SaaS pricing-card grid) ── */
.menu-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card {
  position: relative;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column;
}
.menu-card--featured { border-style: solid; border-color: var(--accent); }
.menu-card__ribbon {
  position: absolute; top: -14px; left: 24px;
  background: var(--accent); color: #fff9f0;
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-pill);
}
.menu-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem; margin-bottom: 6px; }
.menu-card__desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; }
.menu-card__price {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: var(--font-heading); font-size: 1.7rem; font-weight: 600;
  color: var(--primary); margin-bottom: 18px;
}
.menu-card__price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.menu-card p:last-child { margin: 0; }

/* ── Feature panel — single-plan spotlight (Concierge membership), not a 3-up grid ── */
.feature-panel {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-panel__cta { text-align: center; }
.feature-panel__price {
  font-family: var(--font-heading); font-size: 2.2rem; font-weight: 600;
  color: var(--primary); margin-bottom: 16px;
}
.feature-panel__price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.feature-panel__note { font-size: 0.88rem; color: var(--text-muted); margin-top: 14px; }

.table-wrap { overflow-x: auto; margin-block: 20px; }
table.table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: var(--radius); overflow: hidden; }
table.table th, table.table td { text-align: left; padding: 14px 18px; border-bottom: 1px dashed var(--border); font-size: 0.98rem; }
table.table th { color: var(--primary); font-family: var(--font-heading); font-weight: 600; }
table.table tr:last-child td { border-bottom: none; }

/* ── Bio panel (About — "meet your sitter") ── */
.bio { display: flex; align-items: center; gap: 36px; }
.bio__avatar {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
}
.bio__avatar svg { width: 52px; height: 52px; stroke: var(--primary); }
.bio__text p { margin: 0; }

/* ── Note card (Safety commitment callout) — sticky-note feel ── */
.note-card {
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transform: rotate(-0.6deg);
}
.note-card p { margin: 0; }

/* ── Footer ── */
.footer { border-top: 2px dashed var(--border); padding-top: 48px; background: var(--bg-alt); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px; margin-bottom: 24px;
  border-bottom: 2px dashed var(--border);
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__blurb { color: var(--text-muted); font-size: 0.95rem; margin: 0; max-width: 300px; }
.footer__heading {
  font-family: var(--font-heading); font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: var(--accent); margin-bottom: 14px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.15s; }
.footer__links a:hover { color: var(--text); }
.footer__col p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 4px; }
.footer__copy { font-size: 0.85rem; color: var(--text-muted); opacity: 0.75; width: 100%; text-align: center; padding-bottom: 24px; }

/* ── Contact / Booking Form ── */
.contact-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; text-align: left; }
.contact-form[hidden] { display: none; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-width: 0; }
.contact-form__field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.contact-form__field[hidden] { display: none; }
.contact-form__field label { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  resize: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form__field select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(63, 122, 92, 0.15);
}
.contact-form__field input.invalid,
.contact-form__field textarea.invalid { border-color: #b3462e; }
.contact-form__submit { align-self: flex-start; }
.contact-form__btn-sending { display: none; }
.contact-form--sending .contact-form__btn-text { display: none; }
.contact-form--sending .contact-form__btn-sending { display: inline; }
.contact-form--sending button { opacity: 0.7; pointer-events: none; }

.contact-form__success {
  margin-top: 32px; padding: 36px;
  background: var(--bg-card);
  border: 2px dashed var(--primary);
  border-radius: var(--radius);
  text-align: center;
}
.contact-form__success svg { width: 48px; height: 48px; stroke: var(--primary); margin: 0 auto 16px; }
.contact-form__success h3 { margin-bottom: 8px; }
.contact-form__success p { color: var(--text-muted); font-size: 0.98rem; margin: 0; }
.contact-form__success p.contact-form__success-summary {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem;
  color: var(--primary-deep); margin: 0 0 14px;
}
.contact-form__success .pricing-lines {
  list-style: none; margin: 0 0 10px; padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  text-align: left; display: flex; flex-direction: column; gap: 8px;
}
.contact-form__success .pricing-lines[hidden] { display: none; }
.contact-form__success .pricing-lines li {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.92rem; color: var(--text);
}
.contact-form__success p.pricing-total {
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--text); margin: 0 0 14px;
}
.contact-form__success p.contact-form__success-disclaimer {
  font-size: 0.78rem; font-style: italic; color: var(--text-muted); margin: 0 0 16px;
}

/* ── Scheduler ── */
.scheduler { margin-top: 32px; text-align: left; }
.scheduler__controls { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.scheduler__slots-wrap { margin-bottom: 8px; }
.scheduler__slots-label { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 12px; display: block; }
.scheduler__slots { display: flex; flex-wrap: wrap; gap: 10px; min-height: 52px; }
.slot-btn {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}
.slot-btn:hover { border-color: var(--primary); color: var(--primary); }
.slot-btn--selected { background: var(--primary); border-color: var(--primary); color: var(--bg-card); }
.scheduler__hint { color: var(--text-muted); font-size: 0.95rem; margin-top: 4px; }
.scheduler__rush-note { color: var(--accent); font-weight: 700; margin-bottom: 16px; }
.scheduler__details { margin-top: 28px; padding-top: 28px; border-top: 2px dashed var(--border); }
.scheduler__details[hidden] { display: none; }
.scheduler__selected-slot {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.addon-disclosure { margin-bottom: 24px; }
.addon-disclosure summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  list-style: none;
  display: inline-block;
}
.addon-disclosure summary::-webkit-details-marker { display: none; }
.addon-disclosure[open] summary { margin-bottom: 14px; }
.addon-list {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.addon-item, .addon-item__toggle {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  cursor: pointer;
}
.addon-item input[type="checkbox"], .addon-item__toggle input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--primary); flex: none;
}
.addon-price { color: var(--text-muted); font-weight: 400; margin-left: auto; }
.addon-item--expandable { flex-direction: column; align-items: stretch; cursor: default; }
.addon-qty {
  margin-top: 8px; margin-left: 28px;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  max-width: 220px;
}
.addon-qty[hidden] { display: none; }

.datepicker { position: relative; }
.datepicker__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  width: 100%;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}
.datepicker__toggle svg { width: 18px; height: 18px; flex: none; color: var(--text-muted); }
.datepicker__toggle:focus, .datepicker__toggle[aria-expanded="true"] {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(63, 122, 92, 0.15);
}
.datepicker__toggle:disabled { color: var(--text-muted); cursor: not-allowed; opacity: 0.7; }
.datepicker__panel {
  position: absolute; z-index: 20; top: calc(100% + 8px); left: 0;
  width: 300px; max-width: 90vw;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(20, 30, 24, 0.18);
  padding: 16px;
}
.datepicker__panel[hidden] { display: none; }
.datepicker__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.datepicker__nav-btn {
  width: 32px; height: 32px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); background: var(--bg);
  color: var(--text); font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.datepicker__nav-btn:hover { border-color: var(--primary); color: var(--primary); }
.datepicker__nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.datepicker__nav-btn:disabled:hover { border-color: var(--border); color: var(--text); }
#dpMonthLabel { font-weight: 700; font-family: var(--font-heading); color: var(--text); }
.datepicker__weekdays, .datepicker__grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center;
}
.datepicker__weekdays span { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); padding-bottom: 6px; }
.datepicker__day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: var(--radius-sm);
  background: transparent; color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem; cursor: pointer;
}
.datepicker__day:hover { background: var(--bg-alt); border-color: var(--primary); }
.datepicker__day--selected { background: var(--primary); border-color: var(--primary); color: var(--bg-card); font-weight: 700; }
.datepicker__day--disabled {
  color: var(--text-muted); opacity: 0.35; cursor: not-allowed; background: transparent;
}
.datepicker__day--disabled:hover { background: transparent; border-color: transparent; }
.datepicker__day--empty { visibility: hidden; cursor: default; }
.datepicker__legend {
  display: flex; align-items: center; gap: 6px;
  margin: 10px 0 0; font-size: 0.75rem; color: var(--text-muted);
}
.datepicker__legend-swatch {
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--text-muted); opacity: 0.35; display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .panels, .menu-board, .steps { grid-template-columns: 1fr 1fr; }
  .list-check--grid { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { max-width: 100%; margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .scheduler__controls { grid-template-columns: 1fr; }
  .bio { flex-direction: column; text-align: center; }
  .feature-panel { grid-template-columns: 1fr; text-align: center; }
  .feature-panel .list-check { text-align: left; }
}

@media (min-width: 641px) {
  .nav__links { order: 2; }
  .nav__controls { order: 3; margin-left: 16px; }
}

@media (max-width: 640px) {
  html { font-size: 17px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form__submit { width: 100%; justify-content: center; }
  :root { --section-pad: 56px; }
  .panels, .menu-board, .steps { grid-template-columns: 1fr; }
  .nav__links { display: none; flex-direction: column; gap: 0; }
  .nav--open .nav__links {
    display: flex; position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--bg-alt); border-bottom: 2px dashed var(--border);
    padding: 16px 24px 20px;
  }
  .nav--open .nav__links li { padding-block: 10px; }
  .nav__toggle { display: flex; }
  .utility-bar__inner span:last-child { display: none; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { align-items: center; }
  .nav__logo { justify-content: center; }
}
