/* ==========================================================================
   Home Comfort Review — site.css
   Independent advertising page. Original stylesheet, no third-party assets.
   Mobile-first. No build step, no framework, no external font requests.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --petrol: #102A43;
  --ice: #EAF6FB;
  --action: #0B69A3;
  --action-strong: #095781;
  --neutral: #F7FAFC;
  --ink: #1F2933;

  /* Derived neutrals */
  --ink-muted: #52606D;
  --ink-soft: #7B8794;
  --line: #DCE7EF;
  --line-strong: #C3D4E0;
  --surface: #FFFFFF;

  /* Feedback */
  --notice-bg: #FFF8E6;
  --notice-line: #E8D08A;
  --notice-ink: #6B5312;

  /* Shape */
  --r-sm: 10px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;

  /* Elevation — kept deliberately subtle */
  --shadow-sm: 0 1px 2px rgba(16, 42, 67, 0.05);
  --shadow-md: 0 4px 16px rgba(16, 42, 67, 0.07);
  --shadow-lg: 0 12px 32px rgba(16, 42, 67, 0.10);

  /* Rhythm */
  --gap: 1.25rem;
  --section-y: clamp(3rem, 7vw, 5.5rem);
  --container: 1120px;
  --prose: 68ch;

  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji";
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--petrol);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.85rem, 5.2vw, 3rem); font-weight: 750; }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.125rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2.2vw, 1.3125rem); font-weight: 650; }
h4 { font-size: 1.0625rem; font-weight: 650; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--action); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--action-strong); }

strong { font-weight: 650; color: var(--petrol); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.35em; }
li { margin-bottom: 0.5em; }
li:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* Visible, consistent keyboard focus everywhere */
:focus-visible {
  outline: 3px solid var(--action);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--neutral); }
.section--ice { background: var(--ice); }

.prose { max-width: var(--prose); }
.prose--center { margin-inline: auto; }

.section-head { max-width: var(--prose); margin-bottom: 2.25rem; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--action);
  margin-bottom: 0.75rem;
}

.lede { font-size: 1.125rem; color: var(--ink-muted); }
.small { font-size: 0.875rem; }
.muted { color: var(--ink-muted); }

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 999;
  background: var(--petrol);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0.75rem; color: #fff; }

/* --------------------------------------------------------------------------
   4. Disclosure bar
   -------------------------------------------------------------------------- */
.disclosure-bar {
  background: var(--petrol);
  color: #D7E4EF;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.6rem 0;
}
.disclosure-bar p { margin: 0; text-align: center; }
.disclosure-bar strong { color: #fff; font-weight: 650; }
.disclosure-bar a { color: #BEE0F2; }
.disclosure-bar a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--petrol);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--petrol); }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1.15; }
.brand__sub {
  font-size: 0.6875rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: inline-block;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 550;
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--action); border-bottom-color: var(--action); }

@media (max-width: 719px) {
  .site-header__inner { padding-block: 0.7rem; }
  .site-nav { width: 100%; }
  .site-nav ul { gap: 0.25rem 1.1rem; }
  .site-nav a { font-size: 0.875rem; }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease,
    transform 0.16s ease, box-shadow 0.16s ease;
}

.btn--primary {
  background: var(--action);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--action-strong);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--petrol);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--action); color: var(--action); }

.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.0625rem; }
.btn--block { display: flex; width: 100%; }

.btn__arrow { font-size: 1.1em; line-height: 1; translate: 0 -0.5px; }

@media (min-width: 480px) {
  .btn--block { display: inline-flex; width: auto; }
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
@media (min-width: 560px) {
  .cta-group { flex-direction: row; align-items: center; flex-wrap: wrap; }
}

.cta-note {
  margin-top: 0.9rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
  max-width: 46ch;
}

/* Offer status message shown when the destination URL is not configured yet */
.offer-status {
  display: none;
  margin-top: 0.9rem;
  padding: 0.85rem 1.05rem;
  background: var(--notice-bg);
  border: 1px solid var(--notice-line);
  border-left-width: 4px;
  border-radius: var(--r-sm);
  color: var(--notice-ink);
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 52ch;
}
.offer-status.is-visible { display: block; }

.btn[data-offer-state="pending"] { opacity: 0.92; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 88% 6%, #FFFFFF 0%, rgba(255,255,255,0) 58%),
    linear-gradient(168deg, var(--ice) 0%, #F4FBFE 55%, var(--neutral) 100%);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.75rem, 7vw, 4.75rem);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 940px) {
  .hero__grid { grid-template-columns: 1.08fr 0.92fr; gap: 3.5rem; }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 1.15rem;
}
.hero__tag::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--action);
  flex: none;
}

.hero p.lede { font-size: clamp(1.0625rem, 2vw, 1.1875rem); max-width: 56ch; }

.hero__list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.hero__list li {
  position: relative;
  padding-left: 1.9rem;
  margin: 0;
  font-size: 0.9875rem;
  color: var(--ink);
}
.hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--action);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M8.2 13.6 5 10.4l1.2-1.2 2 2 5.6-5.6L15 6.8z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M8.2 13.6 5 10.4l1.2-1.2 2 2 5.6-5.6L15 6.8z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.hero__media img { width: 100%; }
.hero__caption {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  text-align: center;
}

/* --------------------------------------------------------------------------
   8. Cards & grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.15rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; color: var(--ink-muted); }
.card p:last-child { margin-bottom: 0; }

.card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: var(--ice);
  color: var(--action);
  margin-bottom: 1rem;
}
.card__icon svg { width: 1.35rem; height: 1.35rem; }

/* Spec card — value defaults to an explicit "verify" state */
.spec-card { display: flex; flex-direction: column; }
.spec-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.55rem;
}
.spec-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 0.55rem;
}
.spec-card__value[data-confirmed="no"] {
  font-weight: 550;
  color: var(--ink-muted);
  font-style: italic;
}
.spec-card__note { font-size: 0.875rem; color: var(--ink-muted); margin: 0; }

/* Checklist items */
.checklist { display: grid; gap: 1rem; list-style: none; padding: 0; margin: 0; }
@media (min-width: 720px) { .checklist { grid-template-columns: repeat(2, 1fr); } }

.checklist li {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.checklist h3 {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
}
.checklist__num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--action);
  font-variant-numeric: tabular-nums;
  flex: none;
}
.checklist p { font-size: 0.9375rem; color: var(--ink-muted); margin: 0; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 1.15rem; list-style: none; padding: 0; margin: 0; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }

.steps li {
  counter-increment: step;
  margin: 0;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--petrol);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}
.steps h3 { font-size: 1.0625rem; margin-bottom: 0.4rem; }
.steps p { font-size: 0.9375rem; color: var(--ink-muted); margin: 0; }

/* Callout */
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--action);
  border-radius: var(--r-md);
  padding: 1.35rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.callout h3 { font-size: 1rem; margin-bottom: 0.45rem; }
.callout p { font-size: 0.9375rem; color: var(--ink-muted); margin-bottom: 0.75rem; }
.callout p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   9. Comparison table
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

table.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
table.compare caption {
  caption-side: top;
  text-align: left;
  padding: 1.15rem 1.35rem 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
}
table.compare th,
table.compare td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
table.compare thead th {
  background: var(--ice);
  color: var(--petrol);
  font-weight: 650;
  font-size: 0.875rem;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-strong);
}
table.compare tbody th {
  font-weight: 600;
  color: var(--petrol);
  background: var(--neutral);
  width: 30%;
  min-width: 170px;
}
table.compare tbody tr:last-child th,
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td { color: var(--ink-muted); }

.table-scroll-hint {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 0.65rem;
}
@media (min-width: 760px) { .table-scroll-hint { display: none; } }

/* --------------------------------------------------------------------------
   10. FAQ — native details/summary, no JavaScript required
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.85rem; max-width: 820px; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-weight: 650;
  color: var(--petrol);
  font-size: 1rem;
  line-height: 1.45;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2em;
  background: var(--action);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 13.4 4.6 8l1.3-1.3L10 10.8l4.1-4.1L15.4 8z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 13.4 4.6 8l1.3-1.3L10 10.8l4.1-4.1L15.4 8z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.18s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq summary:hover { background: var(--neutral); }

.faq__body {
  padding: 0 1.35rem 1.35rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.faq__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   11. Final CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(160deg, var(--petrol) 0%, #17395A 100%);
  color: #E3EDF5;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #C3D7E6; max-width: 58ch; margin-inline: auto; }
.cta-band .btn--primary { background: #1287CC; }
.cta-band .btn--primary:hover { background: #0B69A3; }
.cta-band .cta-note { color: #9FBBD0; margin-inline: auto; }
.cta-band .cta-group { justify-content: center; }
.cta-band .offer-status {
  margin-inline: auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.94);
}

/* --------------------------------------------------------------------------
   12. Article pages (legal / institutional)
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--ice);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.25rem, 6vw, 3.5rem);
}
.page-hero p { color: var(--ink-muted); max-width: var(--prose); margin-bottom: 0; }

.doc { max-width: var(--prose); }
.doc h2 { margin-top: 2.5rem; font-size: clamp(1.25rem, 2.6vw, 1.5rem); }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { margin-top: 1.75rem; }
.doc ul { padding-left: 1.25em; }
.doc .updated {
  font-size: 0.875rem;
  color: var(--ink-soft);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumb li { margin: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 0.4rem; color: var(--line-strong); }

/* --------------------------------------------------------------------------
   13. Ad landing route (/blizzair/)
   -------------------------------------------------------------------------- */
.ad-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(110% 80% at 50% 0%, #FFFFFF 0%, rgba(255,255,255,0) 62%),
    linear-gradient(170deg, var(--ice) 0%, var(--neutral) 100%);
}
.ad-page__main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 6vw, 3.5rem);
}
.ad-card {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}
.ad-card h1 { font-size: clamp(1.5rem, 4.4vw, 2rem); }
.ad-card ul { margin-top: 1.25rem; }
.ad-card li { font-size: 0.9375rem; color: var(--ink-muted); }
.ad-page__legal {
  padding-block: 1.5rem 2.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.ad-page__legal a { color: var(--action); }
.ad-page__legal nav { margin-bottom: 0.6rem; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--petrol);
  color: #B9CCDC;
  padding-block: clamp(2.5rem, 6vw, 3.5rem) 2rem;
  font-size: 0.9rem;
  line-height: 1.65;
}
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer h3 {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer a { color: #BEE0F2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; } }

.footer__grid ul { list-style: none; margin: 0; padding: 0; }
.footer__grid li { margin-bottom: 0.55rem; }

.footer__brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.footer__brand span { color: #fff; font-weight: 700; font-size: 1.0625rem; }
.footer__brand svg { width: 28px; height: 28px; flex: none; }

.footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8125rem;
  color: #93AABF;
}
.footer__legal p { margin-bottom: 0.9rem; }
.footer__legal strong { color: #D7E4EF; }

/* --------------------------------------------------------------------------
   15. Media-rich blocks
   -------------------------------------------------------------------------- */

/* Trust strip under the hero */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
}
.trust-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1rem;
}
@media (min-width: 800px) { .trust-strip ul { grid-template-columns: repeat(4, 1fr); } }
.trust-strip li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--petrol);
  line-height: 1.35;
}
.trust-strip svg { width: 1.6rem; height: 1.6rem; flex: none; color: var(--action); }

/* Figure with caption + source attribution */
.figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.figure img { width: 100%; display: block; }
.figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  background: var(--neutral);
}

/* Two-column media + text */
.media-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 880px) {
  .media-split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .media-split--reverse .media-split__media { order: 2; }
}
.media-split + .media-split { margin-top: clamp(2.5rem, 6vw, 4rem); }
.media-split__body h3 { font-size: clamp(1.25rem, 2.6vw, 1.625rem); }

/* Steps with photos */
.steps--photo li { padding: 0; overflow: hidden; }
.steps--photo li::before {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  margin: 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(16, 42, 67, 0.35);
}
.steps--photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--ice);
}
.steps--photo .steps__body { padding: 1.35rem 1.5rem 1.5rem; }

/* Attributed spec table */
.spec-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table.specs { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
table.specs th, table.specs td {
  padding: 0.95rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
table.specs tbody th {
  width: 34%;
  min-width: 150px;
  font-weight: 600;
  color: var(--petrol);
  background: var(--neutral);
}
table.specs td { color: var(--ink); }
table.specs tr:last-child th, table.specs tr:last-child td { border-bottom: 0; }
table.specs .verify {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* Source attribution note */
.source-note {
  margin-top: 1rem;
  padding: 0.9rem 1.15rem;
  background: var(--ice);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  color: var(--petrol);
  line-height: 1.55;
}
.source-note strong { font-weight: 700; }

/* Photo slot marker — visible only in local review */
[data-photo-slot] { position: relative; }

/* Feature rows — icon + copy, mirrors a spec sheet */
.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 700px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .features { grid-template-columns: repeat(4, 1fr); } }

.features li {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.features__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--ice);
  flex: none;
}
.features__icon img, .features__icon svg { width: 1.65rem; height: 1.65rem; }
.features h3 { font-size: 1rem; margin: 0; }
.features p { font-size: 0.875rem; color: var(--ink-muted); margin: 0; }
.features .attr {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* Marquee strip */
.strip {
  background: var(--petrol);
  color: #C3D7E6;
  padding-block: 0.85rem;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.1);
}
.strip__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  justify-content: center;
  flex-wrap: wrap;
}
.strip__track span { display: inline-flex; align-items: center; gap: 0.55rem; }
.strip__track span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5FB6E5;
  flex: none;
}

/* Fit / not-fit contrast block */
.fitgrid { display: grid; gap: 1.15rem; }
@media (min-width: 820px) { .fitgrid { grid-template-columns: repeat(2, 1fr); } }

.fitcard {
  border-radius: var(--r-lg);
  padding: 1.6rem 1.65rem;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.fitcard--yes { border-top: 4px solid var(--action); }
.fitcard--no  { border-top: 4px solid #C3D4E0; }
.fitcard h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.0625rem; }
.fitcard ul { list-style: none; padding: 0; margin: 0.9rem 0 0; }
.fitcard li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.7rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}
.fitcard li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
}
.fitcard--yes li::before { content: "\2713"; color: var(--action); }
.fitcard--no  li::before { content: "\2013"; color: var(--ink-soft); }

/* "What we could not verify" panel */
.gaps {
  background: var(--petrol);
  color: #D2E2EE;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4.5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}
.gaps h2, .gaps h3 { color: #fff; }
.gaps > p { color: #B7CCDC; max-width: 62ch; }
.gaps ul { list-style: none; padding: 0; margin: 1.75rem 0 0; display: grid; gap: 1rem; }
@media (min-width: 760px) { .gaps ul { grid-template-columns: repeat(3, 1fr); } }
.gaps li {
  margin: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem;
}
.gaps li h3 { font-size: 0.9375rem; margin-bottom: 0.4rem; }
.gaps li p { font-size: 0.875rem; color: #A9C2D5; margin: 0; }

/* Wide media band */
.media-band {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--ice);
}
.media-band img { width: 100%; display: block; aspect-ratio: 21 / 9; object-fit: cover; }
.media-band figcaption {
  padding: 0.85rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  background: var(--surface);
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   16. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .cta-group, .cta-band, .disclosure-bar { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { text-decoration: underline; }
}
