/* ==========================================================================
   Brightly — design tokens + BEM components
   Methodology: BEM. Mobile-first (min-width media queries only, no max-width).
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --color-primary: #1F74E0;
  --color-primary-dark: #155CBC;
  --color-navy: #0F2138;
  --color-navy-2: #15467F;
  --color-gold: #D99A2B;
  --color-gold-light: #E8B85C;
  --color-green: #1FA971;

  /* Text */
  --color-text: #0F2138;
  --color-text-muted: #4A5C70;
  --color-text-soft: #566879;
  --color-text-faint: #7A8DA0;

  /* Surfaces & borders */
  --color-surface: #ffffff;
  --color-surface-alt: #F6F9FC;
  --color-surface-blue: #EAF3FD;
  --color-surface-gold: #FBF3E2;
  --color-surface-green: #E7F4EE;
  --color-border: #E6EDF4;
  --color-border-light: #EEF2F7;

  /* Typography */
  --font-heading: 'Hanken Grotesk', system-ui, sans-serif;
  --font-body: 'Schibsted Grotesk', system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 11px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(15, 33, 56, .05);
  --shadow-md: 0 12px 30px rgba(15, 33, 56, .10);
  --shadow-lg: 0 26px 56px rgba(15, 33, 56, .16);
  --shadow-cta: 0 8px 18px rgba(31, 116, 224, .26);

  /* Layout */
  --container: 1200px;
  --section-pad-y: 56px;
  --header-h: 64px;

  /* Focus ring (a11y) */
  --focus-ring: 0 0 0 3px rgba(31, 116, 224, .45);
}

/* ---------- Base / reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* keep anchored sections clear of the sticky header */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* hard guarantee against horizontal scroll on mobile */
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -.025em;
  margin: 0;
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; }

/* Visible focus for keyboard users (a11y) */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--space-5);
}

@media (min-width: 600px) {
  .container { padding-inline: var(--space-6); }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -60px;
  z-index: 200;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: var(--space-4); }

.section { padding-block: var(--section-pad-y); }
.section--alt { background: var(--color-surface-alt); }

.section__head {
  max-width: 640px;
  margin: 0 auto var(--space-10);
  text-align: center;
}
.section__eyebrow {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.section__title {
  font-weight: 700;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.1;
  margin: var(--space-3) 0 var(--space-3);
  color: var(--color-text);
  text-wrap: balance;
}
.section__lead {
  font-size: clamp(16px, 4vw, 18px);
  color: var(--color-text-muted);
  font-weight: 500;
  text-wrap: pretty;
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: 12px 22px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  text-align: center;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--white { background: #fff; color: var(--color-navy); }
.btn--white:hover { background: var(--color-surface-blue); }
.btn--ghost {
  background: #fff;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn__icon { flex: none; }

/* ---------- Header ---------- */
body.admin-bar {
  --admin-bar-h: 32px;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: var(--admin-bar-h, 0px);
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
  padding-block: 10px;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
}
.header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -.02em;
  color: var(--color-text);
}

/* Desktop nav — hidden on mobile, shown ≥900px */
.nav { display: none; }
.header__actions { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item { position: relative; list-style: none; }
.nav__subitem { list-style: none; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav__link--parent { gap: 4px; }
.nav__link:hover,
.nav__sublink:hover { color: var(--color-primary); }
.nav__item--current > .nav__link,
.nav__item--current-ancestor > .nav__link {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}
.nav__chevron {
  flex: none;
  color: var(--color-text-faint);
  transition: transform .2s ease;
}
.nav__item--has-children:hover .nav__chevron,
.nav__item--has-children:focus-within .nav__chevron {
  transform: rotate(180deg);
}
.nav__submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 70;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav__item--has-children:hover .nav__submenu,
.nav__item--has-children:focus-within .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__sublink {
  display: block;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.nav__sublink:hover {
  background: var(--color-surface-alt);
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  white-space: nowrap;
}

/* ---------- Burger (mobile menu toggle) ---------- */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.burger__line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: calc(var(--header-h) + var(--admin-bar-h, 0px)) 0 0 0;
  z-index: 55;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: var(--space-6) var(--space-5) var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 8px;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}
.mobile-menu__link:hover { color: var(--color-primary); }
.mobile-menu__group {
  border-bottom: 1px solid var(--color-border-light);
}
.mobile-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 8px;
  font: inherit;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.mobile-menu__trigger:hover { color: var(--color-primary); }
.mobile-menu__trigger:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}
.mobile-menu__chevron {
  flex: none;
  color: var(--color-text-faint);
  transition: transform .2s ease;
}
.mobile-menu__trigger[aria-expanded="true"] .mobile-menu__chevron {
  transform: rotate(180deg);
}
.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px 12px 16px;
}
.mobile-menu__panel[hidden] { display: none; }
.mobile-menu__sublink {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-muted);
}
.mobile-menu__sublink:hover { color: var(--color-primary); }
.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.mobile-menu__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-weight: 700;
  font-size: 17px;
  color: var(--color-navy);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F4F8FD 0%, #FAFCFE 100%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  padding-block: var(--space-12) var(--space-12);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--color-text-muted);
  box-shadow: var(--shadow-sm);
}
.hero__stars { color: var(--color-gold); letter-spacing: 1px; }
.hero__title {
  font-weight: 700;
  font-size: clamp(34px, 9vw, 58px);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: var(--space-5) 0 0;
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(16px, 4.5vw, 19px);
  line-height: 1.55;
  color: var(--color-text-muted);
  font-weight: 500;
  max-width: 480px;
  margin: var(--space-5) 0 var(--space-6);
  text-wrap: pretty;
}
.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: var(--space-6);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
}
.hero__assurance { display: inline-flex; align-items: center; gap: 7px; }
.hero__media { position: relative; }
.hero__image {
  display: block;
  width: 100%;
  height: 320px;
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  overflow: hidden;
}
.hero__float { display: none; }

/* ---------- Estimate (quick ZIP) form ---------- */
.estimate {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: #fff;
  padding: 8px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  max-width: 470px;
}
.estimate__field {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding-left: 12px;
}
.estimate__input {
  flex: 1;
  min-height: 48px;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-text);
  background: transparent;
}
.estimate__success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #BFE6D2;
  border-radius: 14px;
  padding: 20px;
  max-width: 470px;
  box-shadow: var(--shadow-md);
}
.estimate__check {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-green);
  display: grid; place-items: center;
}
.estimate__success-title { font-family: var(--font-heading); font-size: 19px; font-weight: 700; }
.estimate__success-text { font-size: 15px; color: var(--color-text-muted); font-weight: 500; margin-top: 3px; }
.estimate[hidden], .estimate__success[hidden] { display: none; }
.link-button {
  margin-top: 12px;
  background: none; border: none;
  color: var(--color-primary);
  font-weight: 700; font-size: 14px;
  font-family: var(--font-body);
  cursor: pointer; padding: 0;
}

/* ---------- Trust bar ---------- */
.trust-bar { background: #fff; border-bottom: 1px solid var(--color-border-light); }
.trust-bar__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 40px;
  padding-block: var(--space-5);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ---------- Features ---------- */
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.feature-card__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: var(--space-4);
}
.feature-card__icon--blue { background: var(--color-surface-blue); }
.feature-card__icon--gold { background: var(--color-surface-gold); }
.feature-card__icon--green { background: var(--color-surface-green); }
.feature-card__title { font-weight: 700; font-size: 21px; }
.feature-card__text { font-size: 15px; color: var(--color-text-soft); font-weight: 500; margin-top: 6px; }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, var(--color-navy-2) 0%, var(--color-navy) 100%);
  border-radius: var(--radius-xl);
  padding: 44px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.stats__eyebrow {
  font-weight: 700; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  color: #9CC0E8;
}
.stats__big {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(46px, 13vw, 74px);
  line-height: 1;
  margin: 14px 0 4px;
  letter-spacing: -.03em;
}
.stats__caption { font-size: clamp(16px, 4vw, 19px); font-weight: 600; color: #CFDEF0; }
.stats__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  margin-top: var(--space-8);
}
.stats__num { font-family: var(--font-heading); font-weight: 700; font-size: 30px; }
.stats__num--gold { color: var(--color-gold-light); }
.stats__label { font-size: 14px; font-weight: 600; color: #9CC0E8; }
.stats__divider { display: none; width: 1px; background: rgba(255, 255, 255, .14); }

/* ---------- Checklist ---------- */
.checklist__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-6);
}
.tab {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background: #fff;
  color: var(--color-text-muted);
  border: 1.5px solid var(--color-border);
  transition: all .18s ease;
}
.tab[aria-selected="true"] {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.checklist__panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 14px 40px rgba(15, 33, 56, .06);
  text-align: left;
}
.checklist__panel[hidden] { display: none; }
.checklist__panel-head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-6); }
.checklist__panel-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--color-surface-blue); display: grid; place-items: center; }
.checklist__panel-title { font-family: var(--font-heading); font-weight: 700; font-size: 22px; }
.checklist__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 30px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
}
.checklist__item svg { flex: none; margin-top: 1px; }
.checklist__foot {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checklist__foot-text { font-size: 15px; font-weight: 600; color: var(--color-text-soft); }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: block;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 14px 30px rgba(31, 116, 224, .10);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: var(--space-4);
}
.service-card__icon--blue { background: var(--color-surface-blue); }
.service-card__icon--gray { background: #EFF3F8; }
.service-card__icon--green { background: var(--color-surface-green); }
.service-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; }
.service-card__text { font-size: 14px; color: var(--color-text-soft); font-weight: 500; margin-top: 5px; }
.service-card--feature {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--feature:hover { background: var(--color-navy-2); border-color: var(--color-navy-2); }
.service-card__feature-title { font-family: var(--font-heading); font-weight: 700; font-size: 19px; }
.service-card__feature-link { font-size: 14px; color: #9CC0E8; font-weight: 600; margin-top: 6px; display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Compare table ---------- */
.compare {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 33, 56, .06);
  max-width: 920px;
  margin-inline: auto;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--color-border-light);
}
.compare__row:first-child { border-top: none; }
.compare__row--head { background: var(--color-navy); color: #fff; }
.compare__row--zebra { background: #FBFCFE; }
.compare__cell { padding: 16px 14px; font-size: 14px; }
.compare__cell--label { padding-inline: 20px; font-weight: 600; color: var(--color-text-muted); font-size: 15px; }
.compare__row--head .compare__cell--label { color: #fff; font-weight: 700; }
.compare__cell--center { text-align: center; }
.compare__cell--brand { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--color-gold-light); }
.compare__cell--other { font-weight: 600; color: #8AA0B6; }
.compare__dash { display: inline-block; width: 20px; height: 3px; border-radius: 2px; background: #CBD6E0; }

/* ---------- Guarantee ---------- */
.guarantee__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
.guarantee__image {
  display: block;
  width: 100%;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 33, 56, .14);
}
.guarantee__title {
  font-weight: 700;
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.1;
  margin: var(--space-3) 0 var(--space-4);
}
.guarantee__text { font-size: 18px; line-height: 1.6; color: var(--color-text-muted); font-weight: 500; margin-bottom: var(--space-6); }
.guarantee__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-8); }
.guarantee__list-item { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--color-text-muted); }

/* ---------- Reviews ---------- */
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15, 33, 56, .04);
}
.review-card__stars { color: var(--color-gold); font-size: 17px; letter-spacing: 2px; }
.review-card__quote { font-size: 16px; line-height: 1.55; color: var(--color-text-muted); font-weight: 500; margin: 14px 0 20px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 17px;
}
.review-card__avatar--blue { background: var(--color-primary); }
.review-card__avatar--green { background: var(--color-green); }
.review-card__avatar--navy { background: var(--color-navy-2); }
.review-card__name { font-weight: 700; font-size: 15px; color: var(--color-text); }
.review-card__meta { font-size: 13px; color: var(--color-text-faint); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  margin-bottom: var(--space-3);
  overflow: hidden;
}
.faq__item:has(.faq__trigger[aria-expanded="true"]) {
  border-color: var(--color-primary);
  box-shadow: 0 10px 28px rgba(31, 116, 224, .08);
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
}
.faq__icon {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  color: var(--color-primary);
  transition: transform .25s ease;
}
.faq__trigger[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq__panel.is-open { grid-template-rows: 1fr; }
.faq__panel-inner { overflow: hidden; }
.faq__answer {
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---------- Multi-step booking form ---------- */
.booking {
  max-width: 720px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 44px rgba(15, 33, 56, .08);
  padding: 28px 22px;
}
.booking__progress { margin-bottom: var(--space-8); }
.booking__progress-bar {
  height: 6px;
  border-radius: 3px;
  background: var(--color-border);
  overflow: hidden;
}
.booking__progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--color-primary);
  border-radius: 3px;
  transition: width .3s ease;
}
.booking__steps {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  gap: 8px;
}
.booking__step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-faint);
}
.booking__step-dot {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-border);
  color: var(--color-text-faint);
  font-size: 13px;
}
.booking__step.is-active { color: var(--color-primary); }
.booking__step.is-active .booking__step-dot { background: var(--color-primary); color: #fff; }
.booking__step.is-done .booking__step-dot { background: var(--color-green); color: #fff; }
.booking__step-label { display: none; }

.booking__fieldset { border: none; margin: 0; padding: 0; }
.booking__fieldset[hidden] { display: none; }
.booking__legend {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  padding: 0;
}
.booking__hint { font-size: 15px; color: var(--color-text-soft); font-weight: 500; margin-bottom: var(--space-6); }

.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.option:hover { border-color: var(--color-primary); }
.option__input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
}
.option__input:checked + .option__body { color: var(--color-primary); }
.option:has(.option__input:checked) {
  border-color: var(--color-primary);
  background: var(--color-surface-blue);
}
.option:has(.option__input:focus-visible) { box-shadow: var(--focus-ring); }
.option__body { display: flex; flex-direction: column; }
.option__title { font-weight: 700; font-size: 16px; color: var(--color-text); }
.option__desc { font-size: 13px; color: var(--color-text-soft); font-weight: 500; }

.field { margin-bottom: var(--space-4); }
.field__label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 6px;
}
.field__control {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  background: #fff;
}
.field__control:focus-visible { box-shadow: var(--focus-ring); border-color: var(--color-primary); }
.field__error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #C0392B;
}
.field.has-error .field__control { border-color: #C0392B; }
.field.has-error .field__error { display: block; }

.booking__nav {
  display: flex;
  gap: 12px;
  margin-top: var(--space-8);
}
.booking__nav .btn { flex: 1; }
.booking__success {
  text-align: center;
  padding: 20px 0;
}
.booking__success[hidden] { display: none; }
.booking__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-green);
  display: grid; place-items: center;
  margin: 0 auto var(--space-5);
}
.booking__success-title { font-family: var(--font-heading); font-weight: 700; font-size: 26px; }
.booking__success-text { font-size: 16px; color: var(--color-text-muted); font-weight: 500; margin-top: 8px; }

/* ---------- CTA banner ---------- */
.cta {
  background: linear-gradient(135deg, var(--color-navy-2) 0%, var(--color-navy) 100%);
  border-radius: var(--radius-xl);
  padding: 44px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__title { font-weight: 700; font-size: clamp(28px, 7vw, 44px); color: #fff; margin-bottom: var(--space-3); text-wrap: balance; }
.cta__text { font-size: clamp(16px, 4vw, 19px); color: #CFDEF0; font-weight: 500; margin: 0 auto var(--space-6); max-width: 540px; }

/* ---------- Footer ---------- */
.footer { background: var(--color-navy); color: #C2D2E2; padding: 48px 0 28px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.footer__logo { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer__logo-text { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: #fff; }
.footer__about { font-size: 15px; line-height: 1.55; font-weight: 500; color: #93A9BF; max-width: 320px; }
.footer__phone { display: inline-block; margin-top: 16px; font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: #fff; }
.footer__heading { font-weight: 700; font-size: 14px; color: #fff; letter-spacing: .04em; margin-bottom: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; font-weight: 500; }
.footer__links a { color: #A8BACD; }
.footer__links a:hover { color: #fff; }
.footer__news-text { font-size: 14px; font-weight: 500; color: #93A9BF; margin-bottom: 12px; }
.footer__news { display: flex; gap: 8px; background: #1A3454; border-radius: 11px; padding: 6px; }
.footer__news-input {
  flex: 1;
  min-height: 44px;
  background: transparent;
  border: none; outline: none;
  color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 0 10px;
  font-family: var(--font-body);
}
.footer__news-btn {
  background: var(--color-primary);
  color: #fff; font-weight: 700;
  border: none; border-radius: 8px;
  padding: 9px 16px; font-size: 14px;
  cursor: pointer; font-family: var(--font-body);
}
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 44px; height: 44px; border-radius: 10px; background: #1A3454; display: grid; place-items: center; }
.footer__social a:hover { background: var(--color-primary); }
.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid #1E3A5C;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #7790A8;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a:hover { color: #fff; }

/* ==========================================================================
   Responsive enhancements — mobile-first, min-width only (no max-width)
   ========================================================================== */

@media (min-width: 600px) {
  .estimate { flex-direction: row; }
  .trust-bar__list { grid-template-columns: 1fr 1fr; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .checklist__items { grid-template-columns: 1fr 1fr; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .booking__step-label { display: inline; }
  .booking { padding: 36px 32px; }
  .stats { padding: 58px 40px; }
  .hero__image { height: 400px; }
  .booking__nav .btn { flex: none; min-width: 140px; }
  .booking__nav { justify-content: space-between; }
}

@media (min-width: 900px) {
  :root { --section-pad-y: 84px; }
  .nav {
    display: flex;
    flex: 1;
    min-width: 0;
    justify-content: center;
  }
  .header__actions { display: flex; align-items: center; gap: 18px; flex: none; }
  .burger { display: none; }
  .mobile-menu { display: none; }
  .nav__list { gap: 16px; }
  .nav__link { font-size: 14px; }
  .header__inner { gap: 12px; }
  .header__phone { font-size: 14px; }
  .header__actions .btn--primary {
    padding-inline: 16px;
    font-size: 14px;
  }
  .hero__inner { grid-template-columns: 1.05fr .95fr; padding-block: 74px 80px; }
  .hero__float {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: -20px; bottom: 30px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 16px 36px rgba(15, 33, 56, .18);
  }
  .hero__float-icon { width: 44px; height: 44px; border-radius: 11px; background: var(--color-surface-gold); display: grid; place-items: center; }
  .hero__float-num { font-family: var(--font-heading); font-weight: 700; font-size: 20px; line-height: 1; }
  .hero__float-label { font-size: 11px; font-weight: 700; color: var(--color-text-faint); margin-top: 3px; letter-spacing: .04em; }
  .hero__image { height: 460px; }
  .trust-bar__list { grid-template-columns: repeat(4, auto); justify-content: space-between; }
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .stats__divider { display: block; }
  .guarantee__inner { grid-template-columns: .92fr 1.08fr; gap: 56px; }
  .guarantee__image { height: 420px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 58px; }
}

@media (min-width: 1200px) {
  .nav__list { gap: var(--space-8); }
  .nav__link { font-size: 15px; }
  .header__inner { gap: var(--space-4); }
  .header__phone { font-size: 15px; }
  .header__actions .btn--primary {
    padding-inline: 22px;
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav__submenu,
  .nav__chevron,
  .mobile-menu__chevron {
    transition: none;
  }
}


/* ==========================================================================
   Sub-page components (service / locations / about / faq / reviews / contact)
   ========================================================================== */
.page-hero {
  background: linear-gradient(180deg, #F4F8FD 0%, #FAFCFE 100%);
  border-bottom: 1px solid var(--color-border);
  padding-block: 40px;
}
.page-hero--center { text-align: center; }
.page-hero__inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.page-hero__eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--color-primary);
}
.page-hero__title {
  font-weight: 700; font-size: clamp(30px, 7vw, 48px);
  line-height: 1.06; margin: 12px 0; text-wrap: balance;
}
.page-hero__lead {
  font-size: clamp(16px, 4vw, 19px); color: var(--color-text-muted);
  font-weight: 500; max-width: 560px; text-wrap: pretty;
}
.page-hero--center .page-hero__lead,
.page-hero__lead--center { margin-inline: auto; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.page-hero--center .page-hero__actions { justify-content: center; }
.page-hero__media {
  display: block; width: 100%; height: 260px;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
}

.breadcrumb { margin-bottom: 16px; }
.page-hero--center .breadcrumb__list { justify-content: center; }
.breadcrumb__list {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--color-text-faint);
}
.breadcrumb__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb__list li:not(:last-child)::after { content: '/'; color: var(--color-border); }
.breadcrumb__list a { color: var(--color-text-muted); }
.breadcrumb__list a:hover { color: var(--color-primary); }
.breadcrumb__list [aria-current="page"] { color: var(--color-text); }

.split { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.split__title { font-weight: 700; font-size: clamp(26px, 5vw, 36px); line-height: 1.12; margin: 12px 0 14px; }
.split__text { font-size: 17px; line-height: 1.6; color: var(--color-text-muted); font-weight: 500; margin-bottom: 14px; }
.split__media {
  display: block; width: 100%; height: 300px;
  border-radius: 18px; overflow: hidden; box-shadow: 0 22px 50px rgba(15, 33, 56, .14);
}

.steps__grid { display: grid; grid-template-columns: 1fr; gap: 20px; list-style: none; padding: 0; margin: 0; }
.step { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; }
.step__num {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; background: var(--color-surface-blue); color: var(--color-primary);
  font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 14px;
}
.step__title { font-weight: 700; font-size: 19px; }
.step__text { font-size: 15px; color: var(--color-text-soft); font-weight: 500; margin-top: 6px; line-height: 1.5; }

.location-grid { display: grid; grid-template-columns: 1fr; gap: 16px; list-style: none; }
.location-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; }
.location-card__city { font-weight: 700; font-size: 19px; }
.location-card__meta { font-size: 14px; color: var(--color-text-faint); font-weight: 600; margin-top: 4px; }
.location-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--color-primary); }
.locations__bar { max-width: 470px; margin: 24px auto 0; }
.locations__bar .estimate { margin-inline: auto; }

.rating-summary {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 24px;
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-pill);
  padding: 10px 20px; box-shadow: var(--shadow-sm);
}
.rating-summary__score { font-family: var(--font-heading); font-weight: 700; font-size: 24px; }
.rating-summary__stars { color: var(--color-gold); letter-spacing: 2px; font-size: 18px; }
.rating-summary__count { font-size: 14px; font-weight: 600; color: var(--color-text-muted); }

.faq-help { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; margin-top: 32px; }
.faq-help__text { font-size: 16px; font-weight: 600; color: var(--color-text-soft); }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-xl); padding: 28px 22px; box-shadow: 0 16px 44px rgba(15, 33, 56, .08); }
.contact-form__title { font-weight: 700; font-size: 22px; margin-bottom: 20px; }
.field__control--area { resize: vertical; min-height: 120px; line-height: 1.5; }
.contact-form__success { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid #BFE6D2; border-radius: 14px; padding: 18px; margin-top: 18px; }
.contact-form__success[hidden] { display: none; }
.contact-aside {}
.contact-info { background: var(--color-navy); color: #fff; border-radius: var(--radius-xl); padding: 28px 24px; }
.contact-info__title { font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 18px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; padding-block: 14px; border-top: 1px solid rgba(255, 255, 255, .12); }
.contact-info__item:first-of-type { border-top: none; padding-top: 0; }
.contact-info__icon { flex: none; width: 40px; height: 40px; border-radius: 10px; background: #fff; display: grid; place-items: center; }
.contact-info__label { font-size: 13px; font-weight: 700; color: #9CC0E8; letter-spacing: .04em; }
.contact-info__value { display: inline-block; font-size: 16px; font-weight: 600; color: #fff; margin-top: 2px; }
a.contact-info__value:hover { color: #9CC0E8; }
.contact-info .btn { margin-top: 20px; }
.contact-info .btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.contact-info .btn--ghost:hover { border-color: #fff; color: #fff; }
.contact-info .btn--ghost svg path { stroke: #fff; }

@media (min-width: 600px) {
  .page-hero { padding-block: 56px; }
  .checklist__items--plain { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .page-hero { padding-block: 72px; }
  .page-hero__inner { grid-template-columns: 1.05fr .95fr; }
  .page-hero__media { height: 380px; }
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split__media { height: 380px; }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1.4fr .9fr; }
}

/* ==========================================================================
   Real imagery — photographs now fill the former image-slot frames
   ========================================================================== */
.hero__image,
.guarantee__image,
.page-hero__media,
.split__media {
  -o-object-fit: cover;
  object-fit: cover;
  background: var(--color-surface-blue);
}

/* ==========================================================================
   Document pages (Privacy / Terms / Accessibility / 404)
   ========================================================================== */
.doc { padding-block: var(--section-pad-y); }
.doc__inner { max-width: 760px; margin-inline: auto; }
.doc__meta { font-size: 14px; font-weight: 600; color: var(--color-text-faint); margin-bottom: 28px; }
.doc__inner h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 4vw, 26px);
  margin: 36px 0 12px;
  color: var(--color-text);
}
.doc__inner h3 { font-weight: 700; font-size: 18px; margin: 24px 0 8px; color: var(--color-text); }
.doc__inner p,
.doc__inner li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  font-weight: 500;
}
.doc__inner p { margin-bottom: 14px; }
.doc__inner ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.doc__inner ul li { display: list-item; }
.doc__inner a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.doc__inner a:hover { color: var(--color-primary-dark); }
.doc__toc {
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.doc__toc-title { font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--color-text-faint); margin-bottom: 12px; }
.doc__toc ul { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
.doc__toc a { color: var(--color-text-muted); font-weight: 600; text-decoration: none; }
.doc__toc a:hover { color: var(--color-primary); }

/* 404 */
.notfound { text-align: center; padding-block: 80px 96px; }
.notfound__code {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(72px, 18vw, 132px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--color-primary);
}
.notfound__title { font-weight: 700; font-size: clamp(26px, 6vw, 38px); margin: 8px 0 12px; }
.notfound__text { font-size: 18px; color: var(--color-text-muted); font-weight: 500; max-width: 460px; margin: 0 auto 28px; }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Checklist page — full grid of room cards */
.checklist-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.checklist-room {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.checklist-room__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.checklist-room__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.checklist-room__title { font-family: var(--font-heading); font-weight: 700; font-size: 22px; }
.checklist-room__count { font-size: 13px; font-weight: 700; color: var(--color-text-faint); margin-left: auto; }
.checklist-room__list { display: flex; flex-direction: column; gap: 12px; }
.checklist-addon {
  margin-top: 24px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.checklist-addon__title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; }
.checklist-addon__text { font-size: 15px; font-weight: 500; color: var(--color-text-soft); margin-top: 2px; }
@media (min-width: 760px) {
  .checklist-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Print — the Checklist page is designed to be printed
   ========================================================================== */
@media print {
  .header, .mobile-menu, .footer, .skip-link, .page-hero__actions,
  .checklist-addon, .breadcrumb, .cta, .no-print { display: none !important; }
  body { background: #fff; }
  .page-hero { padding-block: 0 12px; border: none; background: #fff; }
  .section { padding-block: 8px; }
  .checklist-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .checklist-room { box-shadow: none; border: 1px solid #ccc; -webkit-column-break-inside: avoid; break-inside: avoid; page-break-inside: avoid; padding: 14px 16px; }
  .checklist-room__title { font-size: 17px; }
  .checklist__item { font-size: 12px; color: #111; }
  a { color: #111 !important; text-decoration: none !important; }
}
