/* =============================================
   Appliance Support Theme — Main Stylesheet
   ============================================= */

/* WordPress admin bar fix */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .header { top: 46px; }
}

/* WordPress menu output normalization */
.nav .menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav .menu li { list-style: none; }
.nav .menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
  text-decoration: none;
}
.nav .menu a:hover { color: var(--c-primary); }
.nav .menu a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-primary);
  transition: width 0.2s;
}
.nav .menu a:hover::after { width: 100%; }

/* WordPress alignment classes */
.alignwide { max-width: var(--container); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(-50vw + 50%); }

/* =============================================
   Base Styles
   ============================================= */

:root {
  --c-primary: #EE0000;
  --c-primary-hover: #C40000;
  --c-dark: #0A0A0A;
  --c-warm-bg: #F2EEE5;        /* slightly deeper warm */
  --c-warm-bg-2: #FBF9F4;
  --c-paper: #EDE8DD;          /* deeper paper tone for variety */
  --c-cream: #F8F4EA;          /* lightest warm */
  --c-stone: #E8E3D6;          /* medium tonal background */
  --c-border: #DDD8CC;
  --c-text: #0A0A0A;
  --c-rule: #E0DBD0;
  --c-green: #2ECC40;
  --c-footer-rule: #2C2C2A;
  --c-muted: #5F5E5A;
  --c-muted-light: #888780;
  --c-soft: #B4B2A9;
  --c-white: #FFFFFF;
  --f-display: 'Newsreader', Georgia, serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --container: 1280px;
  --gutter: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  color: var(--c-dark);
  background: var(--c-warm-bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.04) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(238,0,0,0.015) 1px, transparent 0);
  background-size: 28px 28px, 84px 84px;
  background-position: 0 0, 14px 14px;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ========================================
   UTILITY BAR
======================================== */
.util-bar {
  background: var(--c-dark);
  color: var(--c-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.util-bar .container { display: flex; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.util-bar a { color: var(--c-soft); transition: color 0.15s; }
.util-bar a:hover { color: var(--c-white); }
.util-left, .util-right { display: flex; gap: 24px; }
.util-status::before { content: "\25CF"; color: var(--c-green); margin-right: 6px; }

/* ========================================
   HEADER
======================================== */
.header {
  background: var(--c-warm-bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  border-bottom: 0.5px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-custom {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
}
.logo-text {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.logo-text small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.1em;
  font-weight: 400;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s;
}
.nav a:hover { color: var(--c-primary); }
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-primary);
  transition: width 0.2s;
}
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.15s;
  border: 0.5px solid transparent;
}
.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-primary-hover); }
.btn-outline { background: transparent; color: var(--c-dark); border-color: var(--c-dark); }
.btn-outline:hover { background: var(--c-dark); color: var(--c-white); }
.btn-outline-light { background: transparent; color: var(--c-white); border-color: var(--c-white); }
.btn-outline-light:hover { background: var(--c-white); color: var(--c-dark); }

/* ========================================
   SECTION SCAFFOLDING
======================================== */
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--c-muted-light);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-primary);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 32px;
}
.section-title {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--c-dark);
}
.section-link {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.section-link:hover { gap: 10px; }

/* Skip link for a11y */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 8px 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Atomic answer block — for GEO/LLM citation */
.atomic-answer {
  background: var(--c-cream);
  border-left: 2px solid var(--c-primary);
  padding: 18px 24px;
  margin-bottom: 32px;
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-dark);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 68ch;
  position: relative;
}
.atomic-answer::before {
  content: "TL;DR";
  position: absolute;
  top: -10px;
  left: 16px;
  background: var(--c-warm-bg);
  padding: 2px 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  font-style: normal;
  font-weight: 500;
}
.atomic-answer-hero {
  background: transparent;
  border-left: none;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--c-primary);
  margin: 24px 0 32px;
  max-width: 56ch;
  font-size: 18px;
  font-style: normal;
}
.atomic-answer-hero::before { display: none; }

/* Last updated indicator */
.last-updated {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--c-muted-light);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.last-updated::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--c-green);
}

/* Author / Reviewer block */
.reviewer {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}
.reviewer-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 0.5px solid var(--c-border);
}
.reviewer-avatar {
  width: 56px; height: 56px;
  border: 0.5px solid var(--c-dark);
  background: var(--c-warm-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  flex-shrink: 0;
  color: var(--c-dark);
}
.reviewer-meta { flex-grow: 1; }
.reviewer-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.reviewer-name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.reviewer-title {
  font-size: 13px;
  color: var(--c-muted);
}
.reviewer-creds {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.05em;
  text-align: right;
  line-height: 1.6;
}

/* ========================================
   HERO — full-bleed photo background
======================================== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  border-bottom: 0.5px solid var(--c-border);
  overflow: hidden;
  color: var(--c-white);
  background-color: #1a1a1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}
.hero-bg svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.15) 85%, rgba(10,10,10,0.05) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.4) 100%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-primary) 20%, var(--c-primary) 80%, transparent);
  opacity: 0.7;
  z-index: 3;
}
.hero-tag-corner {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  z-index: 3;
}
.hero-tag-corner-bl {
  position: absolute;
  bottom: 28px; left: 32px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  z-index: 3;
}
.hero-corner {
  position: absolute;
  width: 24px; height: 24px;
  z-index: 3;
  pointer-events: none;
}
.hero-corner.tl { top: 18px; left: 18px; border-top: 0.5px solid rgba(255,255,255,0.4); border-left: 0.5px solid rgba(255,255,255,0.4); }
.hero-corner.tr { top: 18px; right: 18px; border-top: 0.5px solid rgba(255,255,255,0.4); border-right: 0.5px solid rgba(255,255,255,0.4); }
.hero-corner.bl { bottom: 18px; left: 18px; border-bottom: 0.5px solid rgba(255,255,255,0.4); border-left: 0.5px solid rgba(255,255,255,0.4); }
.hero-corner.br { bottom: 18px; right: 18px; border-bottom: 0.5px solid rgba(255,255,255,0.4); border-right: 0.5px solid rgba(255,255,255,0.4); }
.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-content {
  max-width: 720px;
  width: 100%;
}
.hero-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(238,0,0,0.15);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--f-display);
  font-size: 68px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--c-white);
  max-width: 14ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-primary);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin-bottom: 32px;
}
.hero-answer {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0.5px solid rgba(255,255,255,0.18);
  padding: 18px 24px;
  margin-bottom: 36px;
  max-width: 56ch;
  font-family: var(--f-display), Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  position: relative;
  min-height: 59px;
}
.hero-answer::before {
  content: "TL;DR";
  position: absolute;
  top: -8px;
  left: 18px;
  background: var(--c-dark);
  padding: 2px 8px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  font-weight: 500;
}
.hero-cta-row { display: flex; gap: 12px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.hero .btn-outline {
  color: var(--c-white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.04);
}
.hero .btn-outline:hover { background: var(--c-white); color: var(--c-dark); border-color: var(--c-white); }
.hero-meta {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding: 18px 28px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0.5px solid rgba(255,255,255,0.18);
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-meta-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--c-white);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  text-transform: none;
}

/* ========================================
   TRUST STRIP
======================================== */
.trust {
  background: var(--c-white);
  border-bottom: 0.5px solid var(--c-border);
}
.trust .container { padding-top: 0; padding-bottom: 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 36px 28px;
  border-right: 0.5px solid var(--c-border);
  display: flex;
  gap: 18px;
  align-items: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  border: 0.5px solid var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-num {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.trust-label-strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 2px;
  display: block;
}
.trust-label-desc {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.4;
}

/* ========================================
   APPLIANCES (main block)
======================================== */
.appliances {
  background: var(--c-paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.05) 1px, transparent 0);
  background-size: 32px 32px;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.app-card {
  padding: 28px 24px 22px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.app-card:hover { background: var(--c-warm-bg-2); }
.app-card:nth-child(4n) { border-right: none; }
.app-card:nth-last-child(-n+4) { border-bottom: none; }
.app-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-soft);
  letter-spacing: 0.05em;
}
.app-icon-wrap {
  width: 88px; height: 88px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.app-icon-wrap svg { width: 100%; height: 100%; }

/* Photo variant — when card has <img> instead of <svg> */
.app-card.has-photo .app-icon-wrap {
  width: 100%;
  height: 140px;
  border: 0.5px solid var(--c-border);
  background: var(--c-warm-bg);
  overflow: hidden;
  margin-bottom: 18px;
}
.app-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform 0.4s ease, filter 0.3s ease;
}
.app-card.has-photo:hover .app-icon-wrap img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05);
}
.app-icon-wrap-tag {
  position: absolute;
  top: 6px; left: 8px;
  font-family: var(--f-mono);
  font-size: 8px;
  color: var(--c-white);
  background: rgba(10,10,10,0.75);
  padding: 3px 6px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.app-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.app-subtypes {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}
.app-meta {
  padding-top: 14px;
  border-top: 0.5px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-count {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
}
.app-arrow {
  color: var(--c-primary);
  font-size: 16px;
  transition: transform 0.2s;
}
.app-card:hover .app-arrow { transform: translateX(4px); }

/* ========================================
   PROCESS
======================================== */
.process {
  background: var(--c-cream);
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 7px, rgba(10,10,10,0.018) 7px, rgba(10,10,10,0.018) 8px);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--c-border);
  position: relative;
}
.process-step {
  padding: 36px 32px;
  border-right: 0.5px solid var(--c-border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-primary);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.process-num::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background: var(--c-border);
}
.process-icon {
  width: 56px; height: 56px;
  margin-bottom: 22px;
}
.process-step-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.process-step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
}

/* ========================================
   DIFFERENTIATORS
======================================== */
.diff {
  background: var(--c-stone);
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.diff-item {
  padding: 36px 32px 32px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  position: relative;
}
.diff-item:nth-child(3n) { border-right: none; }
.diff-item:nth-last-child(-n+3) { border-bottom: none; }
.diff-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-soft);
}
.diff-icon-wrap {
  width: 52px; height: 52px;
  border: 0.5px solid var(--c-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.diff-title {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.diff-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  max-width: 32ch;
}

/* ========================================
   COVERAGE
======================================== */
.coverage {
  background: var(--c-cream);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}
.coverage-wrap {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  padding: 0;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.coverage-map-wrap {
  padding: 40px;
  border-right: 0.5px solid var(--c-border);
  background: var(--c-warm-bg);
  position: relative;
  min-height: 480px;
}
.coverage-map-tag {
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.12em;
}
.coverage-map-scale {
  position: absolute;
  bottom: 20px; right: 24px;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.05em;
}
.coverage-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 0.5px solid var(--c-border);
}
.coverage-stat-num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.coverage-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.coverage-cities-title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--c-muted-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.coverage-cities {
  font-size: 13px;
  line-height: 2;
  color: var(--c-muted);
}
.coverage-city {
  color: var(--c-dark);
  border-bottom: 0.5px solid transparent;
  transition: all 0.15s;
}
.coverage-city:hover { color: var(--c-primary); border-bottom-color: var(--c-primary); }

/* ========================================
   MODELS
======================================== */
.models {
  background: var(--c-paper);
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(10,10,10,0.02) 14px, rgba(10,10,10,0.02) 15px);
}
.models-wrap {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
}
.models-tabs {
  display: flex;
  border-bottom: 0.5px solid var(--c-border);
  overflow-x: auto;
}
.models-tab {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 18px 24px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 1.5px solid transparent;
  margin-bottom: -0.5px;
  white-space: nowrap;
  transition: color 0.15s;
}
.models-tab:hover { color: var(--c-dark); }
.models-tab.active {
  color: var(--c-dark);
  border-bottom-color: var(--c-primary);
  font-weight: 500;
}
.models-strip {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.models-strip::-webkit-scrollbar { height: 4px; }
.models-strip::-webkit-scrollbar-track { background: transparent; }
.models-strip::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }
.models-strip.dragging { cursor: grabbing; scroll-behavior: auto; }
.models-strip:not(.dragging) { scroll-behavior: smooth; }
a.model-mini { color: inherit; text-decoration: none; }
.model-mini {
  padding: 22px 18px 20px;
  border-right: 0.5px solid var(--c-border);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  display: block;
  min-width: 180px;
  flex: 0 0 calc(100% / 6);
  box-sizing: border-box;
}
.model-mini:hover { background: var(--c-warm-bg-2); }
.model-mini:last-child { border-right: none; }
.model-mini-img {
  width: 100%;
  height: 130px;
  background: var(--c-warm-bg);
  border: 0.5px solid var(--c-border);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.model-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.02);
  transition: transform 0.4s ease;
}
.model-mini:hover .model-mini-img img { transform: scale(1.04); }
.model-mini-img-tag {
  position: absolute;
  top: 6px; left: 8px;
  font-family: var(--f-mono);
  font-size: 8px;
  color: var(--c-white);
  background: rgba(10,10,10,0.75);
  padding: 3px 6px;
  letter-spacing: 0.1em;
  z-index: 2;
}
.model-mini-cat {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.model-mini-name {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-dark);
}

/* ========================================
   ERROR CODES
======================================== */
.errors {
  background: var(--c-cream);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(238,0,0,0.03) 1px, transparent 0),
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.025) 1px, transparent 0);
  background-size: 80px 80px, 24px 24px;
}
.errors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--c-border);
}
.error-card {
  padding: 28px 28px 24px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.error-card:hover { background: var(--c-warm-bg); }
.error-card:nth-child(3n) { border-right: none; }
.error-card:nth-last-child(-n+3) { border-bottom: none; }
.error-code {
  font-family: var(--f-mono);
  font-size: 36px;
  color: var(--c-primary);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  min-width: 80px;
}
.error-content { flex-grow: 1; }
.error-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.error-meta {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
}
.error-arrow {
  color: var(--c-soft);
  font-size: 18px;
  transition: all 0.2s;
}
.error-card:hover .error-arrow { color: var(--c-primary); transform: translateX(4px); }

/* ========================================
   SINGLE ERROR CODE
======================================== */
.ec-hero-code {
  font-family: var(--f-mono);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
.ec-hero-icon-appliance {
  width: 64px;
  height: 64px;
  margin: 16px auto 0;
  opacity: 0.5;
}
.ec-hero-icon-appliance svg { width: 100%; height: 100%; }
.ec-severity {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ec-severity-color, var(--c-muted));
  border: 1px solid var(--ec-severity-color, var(--c-border));
  border-radius: 3px;
  padding: 2px 8px;
  line-height: 1.4;
}
.ec-details-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ec-details-grid .entry-content { max-width: 720px; min-width: 0; order: 1; }
.ec-toc {
  order: 0;
  border: 0.5px solid var(--c-border);
  padding: 20px 24px;
  background: var(--c-white);
}
.ec-sidebar { order: 2; }
@media (min-width: 960px) {
  .ec-details-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    grid-template-rows: auto 1fr;
    gap: 24px 64px;
  }
  .ec-details-grid .entry-content { grid-column: 1; grid-row: 1 / -1; order: 0; }
  .ec-toc { grid-column: 2; grid-row: 1; }
  .ec-sidebar { grid-column: 2; grid-row: 2; }
}
.ec-sidebar-inner {
  position: sticky;
  top: 32px;
  border: 0.5px solid var(--c-border);
  padding: 24px;
  background: var(--c-white);
}
.ec-sidebar-block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 0.5px solid var(--c-border);
}
.ec-sidebar-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.ec-sidebar-block--cta { text-align: center; }
.ec-sidebar-heading {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.ec-sidebar-toc {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-sidebar-toc li { margin-bottom: 6px; }
.ec-sidebar-toc a {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s;
}
.ec-sidebar-toc a:hover { color: var(--c-primary); }
.ec-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ec-sidebar-links li { margin-bottom: 4px; }
.ec-sidebar-links a {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.15s;
}
.ec-sidebar-links a:hover { color: var(--c-primary); }
.ec-model-num { color: var(--c-primary); font-family: var(--f-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; }
.ec-sidebar-more {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.ec-sidebar-more:hover { color: var(--c-primary); }
.ec-sidebar-desc {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-muted);
  margin: 0 0 10px;
}
.ec-loc-hidden { display: none; }
.ec-sidebar-toggle {
  display: inline-block;
  margin-top: 8px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--c-primary);
  transition: opacity 0.15s;
}
.ec-sidebar-toggle:hover { opacity: 0.7; }
.ec-sidebar-cta { width: 100%; text-align: center; justify-content: center; margin-bottom: 8px; }
.ec-sidebar-phone {
  display: flex;
  justify-content: center;
  font-size: 13px;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: var(--c-stone);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.05) 1px, transparent 0);
  background-size: 36px 36px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.test-card {
  padding: 36px 32px 32px;
  border-right: 0.5px solid var(--c-border);
  position: relative;
}
.test-card:last-child { border-right: none; }
.test-stars {
  color: var(--c-primary);
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.test-quote {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-dark);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  font-weight: 400;
  font-style: italic;
}
.test-quote::before { content: "\201C"; color: var(--c-primary); margin-right: 4px; }
.test-quote::after { content: "\201D"; color: var(--c-primary); }
.test-author {
  padding-top: 18px;
  border-top: 0.5px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.test-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
}
.test-loc {
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}
.test-meta {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
  text-align: right;
}

/* ========================================
   GUIDES
======================================== */
.guides {
  background: var(--c-cream);
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 7px, rgba(10,10,10,0.018) 7px, rgba(10,10,10,0.018) 8px);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--c-border);
}
.guide-card {
  padding: 0;
  border-right: 0.5px solid var(--c-border);
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
}
.guide-card:hover { background: var(--c-warm-bg); }
.guide-card:last-child { border-right: none; }
.guide-img {
  height: 200px;
  background: var(--c-warm-bg);
  border-bottom: 0.5px solid var(--c-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-img-tag {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.1em;
}
.guide-content {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.guide-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-primary);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.guide-title {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  flex-grow: 1;
}
.guide-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
  padding-top: 16px;
  border-top: 0.5px solid var(--c-border);
  display: flex;
  justify-content: space-between;
}

.guides-grid--archive { grid-template-columns: repeat(3, 1fr); }
.guides-grid--archive .guide-card { border-bottom: 0.5px solid var(--c-border); }
.guide-img-thumb { width: 100%; height: 100%; object-fit: cover; }
.guide-type-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 32px; }
.guide-type-pill {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 0.5px solid var(--c-border);
  cursor: pointer;
  transition: all 0.15s;
  color: var(--c-muted-light);
}
.guide-type-pill:hover { border-color: var(--c-dark); color: var(--c-dark); }
.guide-type-pill.active { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }
.guides-empty {
  padding: 80px 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-muted-light);
  letter-spacing: 0.06em;
}

/* ========================================
   SINGLE GUIDE
======================================== */
.guide-header { padding: 60px 0 40px; border-bottom: 0.5px solid var(--c-border); }
.guide-header-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.guide-header-cat {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-primary); text-decoration: none;
  padding: 4px 10px; border: 0.5px solid var(--c-primary);
}
.guide-header-cat:hover { background: var(--c-primary); color: #fff; }
.guide-header-type {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-muted-light);
}
.guide-header-title {
  font-family: var(--f-display); font-size: 42px; font-weight: 500;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.guide-header-excerpt { font-size: 17px; line-height: 1.6; color: var(--c-soft); max-width: 680px; }
.guide-header-info {
  display: flex; gap: 16px; margin-top: 20px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em;
  color: var(--c-muted-light); text-transform: uppercase;
}
.guide-featured { padding: 40px 0 0; }
.guide-featured-img { width: 100%; height: 400px; object-fit: cover; display: block; border: 0.5px solid var(--c-border); }
.guide-body { padding: 48px 0 80px; }
.guide-article .entry-content h2 { font-family: var(--f-display); font-size: 26px; font-weight: 500; margin: 40px 0 16px; letter-spacing: -0.01em; }
.guide-article .entry-content h2:first-child { margin-top: 0; }
.guide-article .entry-content h3 { font-family: var(--f-display); font-size: 20px; font-weight: 500; margin: 32px 0 12px; }
.guide-article .entry-content p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; color: var(--c-dark); }
.guide-article .entry-content ul, .guide-article .entry-content ol { margin: 0 0 20px 20px; font-size: 16px; line-height: 1.7; }
.guide-article .entry-content li { margin-bottom: 8px; }
.guide-article .entry-content strong { font-weight: 600; }
.guide-article .entry-content a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 2px; }
.guide-article .entry-content a:hover { color: var(--c-primary-hover); }
.guide-article .entry-content blockquote {
  border-left: 3px solid var(--c-primary); margin: 24px 0; padding: 16px 24px;
  background: var(--c-warm-bg); font-style: italic; color: var(--c-soft);
}

/* ========================================
   FAQ
======================================== */
.faq {
  background: var(--c-paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: flex-start;
}
.faq-side {
  position: sticky;
  top: 100px;
}
.faq-side-title {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.faq-side-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 28px;
  max-width: 32ch;
}
.faq-list {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
}
.faq-item {
  border-bottom: 0.5px solid var(--c-border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
  width: 100%;
  text-align: left;
  background: var(--c-white);
  transition: background 0.15s;
}
.faq-q:hover { background: var(--c-warm-bg); }
.faq-q-text {
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.faq-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
  min-width: 22px;
}
.faq-q-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-toggle {
  color: var(--c-primary);
  font-family: var(--f-mono);
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-a {
  padding: 0 28px 22px 68px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { color: var(--c-dark); }

/* ========================================
   CTA BANNER
======================================== */
.cta {
  background: var(--c-dark);
  background-image:
    repeating-linear-gradient(135deg, transparent 0, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-primary) 50%, transparent);
  opacity: 0.4;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 84px 0;
}
.cta-kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--c-primary);
}
.cta-title {
  font-family: var(--f-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  max-width: 22ch;
}
.cta-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-soft);
  max-width: 38ch;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-actions .btn { width: 100%; justify-content: center; padding: 18px 24px; font-size: 14px; }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--c-dark);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 32px 32px;
  color: var(--c-soft);
  padding: 64px 0 28px;
  border-top: 0.5px solid var(--c-footer-rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--c-footer-rule);
}
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 4px;
}
.footer-brand-link:hover .footer-brand-name { opacity: 0.85; }
.footer-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer-brand-mark {
  width: 36px; height: 36px;
  background: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white);
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.footer-brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.015em;
  transition: opacity 0.15s;
}
.footer-brand-tagline {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--c-soft);
  margin-bottom: 22px;
  max-width: 42ch;
}
.footer-contact {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted-light);
  line-height: 2;
  letter-spacing: 0.05em;
}
.footer-contact strong {
  color: var(--c-white);
  font-weight: 500;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.social-link svg {
  width: 15px;
  height: 15px;
}
.social-links--footer .social-link {
  color: var(--c-soft);
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.08);
}
.social-links--footer .social-link:hover {
  color: var(--c-white);
  background: rgba(255,255,255,0.12);
}
.social-links--author .social-link {
  color: var(--c-muted);
  background: var(--c-paper);
  border: 0.5px solid var(--c-rule);
}
.social-links--author .social-link:hover {
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.footer-col-title {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--c-muted-light);
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--c-footer-rule);
}
.footer-link {
  display: block;
  font-size: 13px;
  color: var(--c-soft);
  line-height: 2.1;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--c-white); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color 0.15s; }
.footer-legal a:hover { color: var(--c-white); }

/* ========================================
   FEATURED LOCATIONS
======================================== */
.featured-loc {
  background: var(--c-paper);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.loc-card {
  padding: 24px 22px 20px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
}
.loc-card:hover { background: var(--c-warm-bg-2); }
.loc-card:nth-child(4n) { border-right: none; }
.loc-card:nth-last-child(-n+4) { border-bottom: none; }
.loc-grid.collapsed .loc-card.loc-overflow { display: none; }
.loc-grid.collapsed ~ .loc-show-all { display: flex; }
.loc-grid.expanded ~ .loc-show-all { display: none; }
.loc-num {
  position: absolute;
  top: 16px; right: 18px;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-soft);
  letter-spacing: 0.05em;
}
.loc-coords {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.loc-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.loc-state {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.loc-meta {
  padding-top: 12px;
  border-top: 0.5px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--c-muted);
}
.loc-arrow { color: var(--c-primary); font-size: 13px; transition: transform 0.2s; }
.loc-card:hover .loc-arrow { transform: translateX(3px); }

/* ── Single Location (State / Metro) ── */
.loc-hero-code {
  font-family: var(--f-mono);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-primary);
  line-height: 1;
  text-align: center;
}
.loc-hero-coords {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted-light);
  letter-spacing: 0.06em;
  margin-top: 8px;
  text-align: center;
}
.loc-grid--archive .loc-num {
  font-weight: 600;
  color: var(--c-primary);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}

/* ========================================
   COMPARISON BLOCK (specialists vs general shop)
======================================== */
.compare {
  background: var(--c-cream);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.025) 1px, transparent 0);
  background-size: 32px 32px;
}
.compare-table {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
.compare-cell {
  padding: 18px 22px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  font-size: 14px;
  line-height: 1.5;
}
.compare-cell:nth-child(3n) { border-right: none; }
.compare-cell.head {
  background: var(--c-cream);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  padding: 16px 22px;
}
.compare-cell.head-us {
  background: var(--c-dark);
  color: var(--c-white);
  font-weight: 500;
}
.compare-cell.head-us::before {
  content: "\2605 ";
  color: var(--c-primary);
}
.compare-cell.feat {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-dark);
  letter-spacing: -0.005em;
}
.compare-cell.us {
  background: var(--c-warm-bg-2);
  border-left: 1.5px solid var(--c-primary);
  margin-left: -0.5px;
}
.compare-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.compare-mark.yes { color: var(--c-primary); }
.compare-mark.yes::before { content: "\2713"; font-size: 14px; }
.compare-mark.no { color: var(--c-soft); }
.compare-mark.no::before { content: "\2715"; font-size: 14px; }
.compare-mark.partial { color: var(--c-muted); }
.compare-mark.partial::before { content: "~"; font-size: 14px; }
.compare-cell:nth-last-child(-n+3) { border-bottom: none; }

/* ========================================
   GLOSSARY
======================================== */
.glossary {
  background: var(--c-stone);
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.glossary-item {
  padding: 24px 26px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
}
.glossary-item:nth-child(3n) { border-right: none; }
.glossary-item:nth-last-child(-n+3) { border-bottom: none; }
.glossary-term {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.glossary-abbr {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: normal;
}
.glossary-def {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-muted);
}

/* ========================================
   BOOKING — INLINE STRIP (after Trust)
======================================== */
.booking-inline {
  background: var(--c-stone);
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  padding: 80px 0;
  border-bottom: 0.5px solid var(--c-border);
}
.bk-embed { display: flex; align-items: center; justify-content: center; }
.bk-embed iframe { display: block; width: 100%; border: none; min-height: 600px; background: transparent; }
.bk-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.bk-side .section-label { margin-bottom: 24px; }
.bk-title {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 14ch;
}
.bk-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 24px;
  max-width: 36ch;
}
.bk-bullets {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  line-height: 2.2;
  list-style: none;
}
.bk-bullets li { display: flex; gap: 10px; align-items: center; }
.bk-bullets li::before { content: "\2713"; color: var(--c-primary); font-weight: 500; }
.bk-form {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.bk-cell {
  padding: 18px 20px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
}
.bk-cell:nth-child(2n) { border-right: none; }
.bk-cell.full {
  grid-column: 1 / -1;
  border-right: none;
}
.bk-cell.section-divider {
  grid-column: 1 / -1;
  border-right: none;
  background: var(--c-cream);
  padding: 12px 20px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--c-muted-light);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bk-cell.section-divider::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--c-primary);
}
.bk-cell.submit-cell {
  grid-column: 1 / -1;
  padding: 0;
  border-bottom: none;
}
.bk-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.bk-label .req {
  color: var(--c-primary);
  font-size: 9px;
  letter-spacing: 0.05em;
}
.bk-input, .bk-select, .bk-textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--c-border);
  color: var(--c-dark);
  outline: none;
  transition: border 0.15s;
}
.bk-input:focus, .bk-select:focus, .bk-textarea:focus { border-bottom-color: var(--c-primary); }
.bk-input::placeholder, .bk-textarea::placeholder { color: var(--c-soft); }
.bk-textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--f-body);
  line-height: 1.5;
  padding: 8px 0;
}
.bk-select {
  appearance: none;
  padding-right: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230A0A0A' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.bk-select:disabled { color: var(--c-soft); cursor: not-allowed; }
.bk-warranty-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.bk-warranty-opt {
  padding: 10px 12px;
  background: var(--c-cream);
  border: 0.5px solid var(--c-border);
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  transition: all 0.15s;
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.bk-warranty-opt:hover { border-color: var(--c-dark); }
.bk-warranty-opt.active {
  background: var(--c-warm-bg);
  border-color: var(--c-primary);
  color: var(--c-dark);
  font-weight: 500;
}
.bk-submit {
  width: 100%;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  padding: 22px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s;
}
.bk-submit:hover { background: var(--c-primary-hover); }

/* ========================================
   BOOKING — DRAWER + FAB (global)
======================================== */
.fab {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 16px 22px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(238,0,0,0.3);
  transition: background 0.15s, transform 0.15s;
}
.fab:hover { background: var(--c-primary-hover); transform: translateY(-2px); }
.fab svg { width: 14px; height: 14px; }

.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.45);
  backdrop-filter: blur(2px);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 480px;
  max-width: 100%;
  background: var(--c-warm-bg);
  border-left: 0.5px solid var(--c-border);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
  z-index: 310;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 32px;
  border-bottom: 0.5px solid var(--c-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-cream);
}
.drawer-head-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-muted-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.drawer-head-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.drawer-close {
  width: 36px; height: 36px;
  background: transparent;
  border: 0.5px solid var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.drawer-close:hover { background: var(--c-dark); color: var(--c-white); }
.drawer-body { flex-grow: 1; overflow-y: auto; padding: 28px 32px; }
.drawer-embed { height: 100%; }
.drawer-embed iframe { display: block; width: 100%; height: 100%; border: none; min-height: 600px; }
.drawer-section { margin-bottom: 24px; }
.drawer-section-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.dr-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.dr-field { display: flex; flex-direction: column; gap: 6px; }
.dr-label {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.dr-label-required::after {
  content: "REQ.";
  color: var(--c-primary);
}
.dr-input {
  font-family: var(--f-body);
  font-size: 14px;
  padding: 11px 12px;
  background: var(--c-cream);
  border: 0.5px solid var(--c-border);
  color: var(--c-dark);
  outline: none;
  transition: all 0.15s;
}
.dr-input:focus { border-color: var(--c-dark); background: var(--c-white); }
.dr-input::placeholder { color: var(--c-soft); }
.dr-select {
  font-family: var(--f-body);
  font-size: 14px;
  padding: 11px 12px;
  background: var(--c-cream);
  border: 0.5px solid var(--c-border);
  color: var(--c-dark);
  outline: none;
  transition: all 0.15s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%230A0A0A' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.dr-select:focus { border-color: var(--c-dark); background-color: var(--c-white); }
.dr-select:disabled { color: var(--c-soft); cursor: not-allowed; }
.dr-textarea {
  font-family: var(--f-body);
  font-size: 14px;
  padding: 11px 12px;
  background: var(--c-cream);
  border: 0.5px solid var(--c-border);
  color: var(--c-dark);
  outline: none;
  transition: all 0.15s;
  resize: vertical;
  min-height: 70px;
  line-height: 1.5;
}
.dr-textarea:focus { border-color: var(--c-dark); background: var(--c-white); }
.dr-textarea::placeholder { color: var(--c-soft); }
.dr-warranty {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.dr-warranty-opt {
  padding: 10px 8px;
  background: var(--c-cream);
  border: 0.5px solid var(--c-border);
  cursor: pointer;
  font-size: 11px;
  text-align: center;
  transition: all 0.15s;
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.dr-warranty-opt:hover { border-color: var(--c-dark); }
.dr-warranty-opt.active {
  background: var(--c-warm-bg);
  border-color: var(--c-primary);
  color: var(--c-dark);
  font-weight: 500;
}
.dr-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.dr-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--c-cream);
  border: 0.5px solid var(--c-border);
  cursor: pointer;
  font-size: 12px;
  transition: all 0.15s;
}
.dr-check:hover { border-color: var(--c-dark); }
.dr-check.active {
  background: var(--c-warm-bg);
  border-color: var(--c-primary);
  font-weight: 500;
}
.dr-check-mark {
  width: 14px; height: 14px;
  border: 0.5px solid var(--c-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-check.active .dr-check-mark {
  background: var(--c-primary);
  border-color: var(--c-primary);
}
.dr-check.active .dr-check-mark::after {
  content: "";
  width: 6px; height: 3px;
  border-left: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
  transform: rotate(-45deg) translate(1px, -1px);
}
.dr-trust {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--c-muted-light);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 0.5px solid var(--c-border);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.dr-trust span::before { content: "\2713 "; color: var(--c-primary); }
.dr-submit {
  width: 100%;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  padding: 16px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s;
  cursor: pointer;
}
.dr-submit:hover { background: var(--c-primary-hover); }
.dr-foot {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--c-muted-light);
  text-align: center;
  margin-top: 12px;
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-btn {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0.5px solid var(--c-dark);
  cursor: pointer;
  color: var(--c-dark);
  transition: all 0.15s;
}
.mobile-menu-btn:hover { background: var(--c-dark); color: var(--c-white); }
.btn-label-short { display: none; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-warm-bg);
  border-top: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  padding: 12px 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 14px var(--gutter);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 0.5px solid var(--c-border);
  transition: background 0.15s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { background: var(--c-cream); color: var(--c-primary); }
.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-primary);
  letter-spacing: 0.02em;
  margin-top: 6px;
  border-top: 0.5px solid var(--c-border);
  padding-top: 18px;
}

/* ========================================
   INNER PAGES
   ======================================== */

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0 0;
  background: var(--c-paper);
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(10,10,10,0.02) 14px, rgba(10,10,10,0.02) 15px);
}
.breadcrumb-list {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  line-height: 1.6;
}
.breadcrumb-list li { white-space: nowrap; }
.breadcrumb-list li:last-child {
  white-space: normal;
  min-width: 0;
  overflow-wrap: break-word;
}
.breadcrumb-list li + li::before {
  content: "/";
  margin: 0 10px;
  color: var(--c-soft);
}
.breadcrumb-list a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb-list a:hover { color: var(--c-primary); }
.breadcrumb-list [aria-current] { color: var(--c-dark); font-weight: 500; }

/* Inner Hero */
.inner-hero {
  padding: 60px 0 80px;
  background: var(--c-paper);
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(10,10,10,0.02) 14px, rgba(10,10,10,0.02) 15px);
  border-bottom: 0.5px solid var(--c-border);
}
.inner-hero-title {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
  max-width: 720px;
}
.inner-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 640px;
  margin-bottom: 40px;
}
.inner-hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
  padding: 28px 0;
  border-top: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
}
.inner-hero-stat-num {
  font-family: var(--f-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  display: block;
  color: var(--c-dark);
}
.inner-hero-stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  margin-top: 4px;
  display: block;
}
.inner-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.inner-hero-icon-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.inner-hero-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.inner-hero-icon svg {
  width: 100%;
  height: 100%;
}

/* Hub Grid (appliances listing) */
.appliances-hub {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--c-warm-bg);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.hub-card {
  padding: 32px 28px 28px;
  border-bottom: 0.5px solid var(--c-border);
  border-right: 0.5px solid var(--c-border);
  transition: background 0.15s;
}
.hub-card:hover { background: var(--c-warm-bg-2); }
.hub-card:nth-child(2n) { border-right: none; }
.hub-card:nth-last-child(-n+2) { border-bottom: none; }
.hub-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hub-grid--3 .hub-card:nth-child(2n) { border-right: 0.5px solid var(--c-border); }
.hub-grid--3 .hub-card:nth-child(3n) { border-right: none; }
.hub-grid--3 .hub-card:nth-last-child(-n+2) { border-bottom: 0.5px solid var(--c-border); }
.hub-grid--3 .hub-card:nth-last-child(-n+3) { border-bottom: none; }
.hub-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hub-card-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-soft);
  letter-spacing: 0.08em;
}
.hub-card-icon {
  width: 72px;
  height: 72px;
}
.hub-card-icon svg { width: 100%; height: 100%; }
.hub-card-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.hub-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.hub-card-title a:hover { color: var(--c-primary); }
.hub-card-subtypes {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hub-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.hub-card-problems {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--c-warm-bg);
  border: 0.5px solid var(--c-border);
}
.hub-card-problems-title {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  display: block;
  margin-bottom: 10px;
}
.hub-card-problems ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hub-card-problems li {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  padding: 4px 10px;
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  letter-spacing: 0.02em;
}
.hub-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 0.5px solid var(--c-border);
}
.hub-card-models {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-muted-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hub-card-link {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-dark);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: color 0.15s;
}
.hub-card-link:hover { color: var(--c-primary); }

/* ========================================
   SINGLE SERVICE PAGE
======================================== */
.svc-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.svc-hero-content { min-width: 0; }
.svc-hero-icon {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}
.svc-hero-icon svg { width: 100%; height: 100%; }
.svc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
}
.svc-hero-meta-item {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
}
.svc-hero-meta-item strong {
  display: block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  margin-bottom: 4px;
  font-weight: 400;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--c-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-phone:hover { color: var(--c-primary); }

/* Problems */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
}
.problem-card {
  padding: 28px 24px 24px;
  border-right: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
  transition: background 0.15s;
}
.problem-card:hover { background: var(--c-warm-bg-2); }
.problem-card:nth-child(3n) { border-right: none; }
.problem-card:nth-last-child(-n+3) { border-bottom: none; }
.problem-num {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-primary);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 14px;
}
.problem-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.problem-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
}

/* Guides grid — always 3-col on desktop, matches query limit */

/* Booking inline (service page variant) */
.booking .bk-grid {
  grid-template-columns: 1.4fr 1fr;
}
.bk-form-wrap {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  padding: 32px;
}
.bk-field {
  margin-bottom: 20px;
}
.bk-label-required::after {
  content: " *";
  color: var(--c-primary);
}
.bk-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--c-border);
}
.bk-bullet:last-child { border-bottom: none; }

/* ========================================
   SEO CONTENT BLOCK
======================================== */
/* ---- seo-content: container ---- */
.seo-content {
  background: var(--c-stone);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(10,10,10,0.04) 1px, transparent 0);
  background-size: 32px 32px;
}
.seo-content-wrap {
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  position: relative;
}
.seo-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 0.5px solid var(--c-border);
  background: var(--c-cream);
}
.seo-content-header-title {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted-light);
}
.seo-content-header-toggle {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
}
.seo-content-header-toggle:hover { color: var(--c-dark); }

/* ---- seo-content: scroll area ---- */
.seo-content-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding: 28px 32px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.seo-content-scroll::-webkit-scrollbar { width: 3px; }
.seo-content-scroll::-webkit-scrollbar-track { background: transparent; }
.seo-content-scroll::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }
.seo-content-scroll.expanded { max-height: none; }
.seo-content-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(transparent, var(--c-white));
  pointer-events: none;
  border-radius: 0 0 0 0;
  transition: opacity 0.25s;
}
.seo-content-scroll.expanded + .seo-content-fade { opacity: 0; }

/* ---- seo-content: typography ---- */
.seo-content-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-muted);
}
.seo-content-body h2 {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted-light);
  margin: 28px 0 14px;
  padding-top: 20px;
  border-top: 0.5px solid var(--c-border);
}
.seo-content-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.seo-content-body h3 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-dark);
  margin: 22px 0 8px;
  line-height: 1.3;
}
.seo-content-body p { margin-bottom: 12px; }
.seo-content-body p:last-child { margin-bottom: 0; }
.seo-content-body ul, .seo-content-body ol {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
}
.seo-content-body li {
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
  font-size: 13px;
}
.seo-content-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: var(--c-primary);
}
.seo-content-body ol { counter-reset: seo-ol; }
.seo-content-body ol li { counter-increment: seo-ol; padding-left: 24px; }
.seo-content-body ol li::before {
  content: counter(seo-ol, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-primary);
  font-weight: 500;
}
.seo-content-body strong { color: var(--c-dark); font-weight: 500; }
.seo-content-body a {
  color: var(--c-dark);
  text-decoration: none;
  border-bottom: 0.5px solid var(--c-primary);
  transition: color 0.15s;
}
.seo-content-body a:hover { color: var(--c-primary); }

/* ========================================
   Error Codes Archive
======================================== */

/* ---- Search bar ---- */
.ec-search-wrap { margin-bottom: 32px; }
.ec-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 0.5px solid var(--c-border);
  padding: 12px 18px;
  transition: border-color 0.15s;
}
.ec-search:focus-within { border-color: var(--c-dark); }
.ec-search-icon { flex-shrink: 0; color: var(--c-soft); }
.ec-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--c-dark);
}
.ec-search-input::placeholder { color: var(--c-soft); }
.ec-search-count {
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--c-muted-light);
  white-space: nowrap;
}

/* ---- Filter tabs ---- */
.ec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.ec-tab {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  border: 0.5px solid var(--c-border);
  background: var(--c-white);
  color: var(--c-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.ec-tab:hover { border-color: var(--c-dark); color: var(--c-dark); }
.ec-tab.active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-white);
}
.ec-tab-count {
  margin-left: 6px;
  opacity: 0.5;
  font-size: 9px;
}

/* ---- Error codes grid ---- */
.ec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--c-border);
}
.ec-card {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: var(--c-dark);
  border-bottom: 0.5px solid var(--c-border);
  border-right: 0.5px solid var(--c-border);
  transition: background 0.15s;
}
.ec-card:hover { background: var(--c-warm-bg-2); }
.ec-card:nth-child(4n+1) { border-left: none; }
.ec-card:nth-child(4n) { border-right: none; }
.ec-card-code {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-primary);
  border-right: 0.5px solid var(--c-border);
  padding: 16px 8px;
}
.ec-card-body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.ec-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ec-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ec-card-type {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted-light);
}
.ec-card-arrow {
  font-size: 14px;
  color: var(--c-soft);
  transition: color 0.15s;
}
.ec-card:hover .ec-card-arrow { color: var(--c-primary); }

/* ---- No results ---- */
.ec-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
}
.ec-no-results-icon { margin-bottom: 16px; }
.ec-no-results-text {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--c-dark);
  margin-bottom: 6px;
}
.ec-no-results-hint {
  font-size: 13px;
  color: var(--c-muted-light);
}

/* ---- Hidden / collapsed ---- */
.ec-card.hidden { display: none; }
.ec-card.ec-hidden { display: none; }
.ec-grid.collapsed .ec-card.ec-overflow,
.guides-grid.collapsed .guide-card.ec-overflow { display: none; }
.ec-show-all {
  display: none;
  margin: 24px auto 0;
  padding: 12px 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-dark);
  background: none;
  border: 0.5px solid var(--c-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  gap: 8px;
  align-items: center;
}
.ec-show-all:hover { background: var(--c-warm-bg-2); border-color: var(--c-dark); }

/* ---- Model cards ---- */
.mdl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0.5px solid var(--c-border);
  position: relative;
}
.mdl-grid.collapsed .mdl-card.mdl-overflow { display: none; }
.mdl-grid-fade { display: none; }
.mdl-show-all {
  display: none;
  margin: 24px auto 0;
  padding: 12px 32px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-dark);
  background: none;
  border: 0.5px solid var(--c-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  gap: 8px;
  align-items: center;
}
.mdl-show-all:hover { background: var(--c-warm-bg-2); border-color: var(--c-dark); }
.mdl-show-all svg { transition: transform 0.2s; }
.mdl-grid.collapsed ~ .mdl-show-all { display: flex; }
.mdl-grid.expanded ~ .mdl-show-all { display: none; }
.mdl-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-dark);
  padding: 24px 22px 20px;
  border-bottom: 0.5px solid var(--c-border);
  border-right: 0.5px solid var(--c-border);
  transition: background 0.15s;
  gap: 10px;
}
.mdl-card:hover { background: var(--c-warm-bg-2); }
.mdl-card:nth-child(4n) { border-right: none; }
.mdl-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mdl-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-warm-bg-2);
}
.mdl-card-icon svg { width: 100%; height: 100%; padding: 10px; }
.mdl-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mdl-card-series {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  border: 0.5px solid var(--c-primary);
  padding: 3px 8px;
  line-height: 1;
}
.mdl-card-model {
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-dark);
  line-height: 1.2;
}
.mdl-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.mdl-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.mdl-card-type {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted-light);
}
.mdl-card-arrow {
  font-size: 14px;
  color: var(--c-soft);
  transition: color 0.15s;
}
.mdl-card:hover .mdl-card-arrow { color: var(--c-primary); }
.mdl-card.hidden { display: none; }

.mdl-note {
  margin: 40px 0;
  padding: 20px 24px;
  border: 0.5px solid var(--c-border);
  background: var(--c-warm-bg);
}
.mdl-note p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
}
.mdl-note a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- Entry content (single model specs) ---- */
.entry-content {
  max-width: 720px;
}
.entry-content h2 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0 16px;
  color: var(--c-dark);
}
.entry-content h2:first-child { margin-top: 0; }
.entry-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.entry-content ul li {
  padding: 8px 0;
  border-bottom: 0.5px solid var(--c-border);
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
}
.entry-content ul li:last-child { border-bottom: none; }
.entry-content ul li strong {
  color: var(--c-dark);
  font-weight: 500;
}
.entry-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
  margin: 0 0 16px;
}

/* Spec table (single model) */
.spec-table {
  border: 0.5px solid var(--c-border);
  border-radius: 8px;
  overflow: hidden;
}
.spec-row {
  display: flex;
  border-bottom: 0.5px solid var(--c-border);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd) { background: var(--c-warm-bg-2); }
.spec-label {
  flex: 0 0 220px;
  padding: 12px 20px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-dark);
  border-right: 0.5px solid var(--c-border);
}
.spec-value {
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-muted);
}

/* Hero product photo (single model) */
.single-model .svc-hero-grid {
  grid-template-columns: 1fr 1fr;
}
.single-model .svc-hero-icon {
  width: 100%;
  height: auto;
  max-height: 460px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--c-warm-bg-2);
}
.mdl-hero-photo {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ========================================
   RESPONSIVE — multi-breakpoint adaptive system
   >=1280  desktop default
   1280   small laptops — minor tweaks
   1024   tablets landscape — major restructure
   768    tablets portrait — single-column layouts begin
   640    phones — full mobile mode
   380    small phones — tight spacing
======================================== */

/* Small laptops — 1280px and below */
@media (max-width: 1280px) {
  :root { --gutter: 28px; }
  .hero-title { font-size: 60px; }
  .section-title { font-size: 36px; }
  .cta-title { font-size: 40px; }
  .coverage-map-wrap { padding: 28px; }
  .model-mini { flex: 0 0 calc(100% / 6); }
  .inner-hero-title { font-size: 44px; }
}

/* Tablets landscape — 1024px and below */
@media (max-width: 1024px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-actions .btn-phone { display: none; }
  .btn-label-long { display: none; }
  .btn-label-short { display: inline; }
  .hero { min-height: auto; padding: 100px 0 80px; }
  .hero-title { font-size: 52px; }
  .hero-content { max-width: 100%; }
  .hero-tag-corner, .hero-tag-corner-bl { display: none; }
  .hero-corner { width: 18px; height: 18px; }
  .hero-meta { gap: 24px; padding: 16px 22px; }
  .hero-meta-item strong { font-size: 26px; }
  .section-title { font-size: 34px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: 0.5px solid var(--c-border) !important; }
  .trust-item:nth-child(2n) { border-right: none !important; }
  .trust-item:nth-child(-n+2) { border-bottom: 0.5px solid var(--c-border); }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .app-card { border-right: 0.5px solid var(--c-border) !important; }
  .app-card:nth-child(2n) { border-right: none !important; }
  .app-card:nth-last-child(-n+2) { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: 0.5px solid var(--c-border) !important; }
  .process-step:nth-child(2n) { border-right: none !important; }
  .process-step:nth-child(-n+2) { border-bottom: 0.5px solid var(--c-border); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-item { border-right: 0.5px solid var(--c-border) !important; }
  .diff-item:nth-child(2n) { border-right: none !important; }
  .diff-item:nth-last-child(-n+2) { border-bottom: none; }
  .compare-table { grid-template-columns: 1.4fr 1fr; }
  .compare-cell:nth-child(3n) { display: none; }
  .compare-cell.us { border-left: none; margin-left: 0; }
  .coverage-grid { grid-template-columns: 1fr; }
  .coverage-map-wrap { border-right: none; border-bottom: 0.5px solid var(--c-border); min-height: 360px; }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-card { border-right: 0.5px solid var(--c-border) !important; }
  .loc-card:nth-child(2n) { border-right: none !important; }
  .loc-card:nth-last-child(-n+2) { border-bottom: none; }
  .model-mini { flex: 0 0 calc(100% / 3); }
  .errors-grid { grid-template-columns: repeat(2, 1fr); }
  .error-card { border-right: 0.5px solid var(--c-border) !important; }
  .error-card:nth-child(2n) { border-right: none !important; }
  .error-card:nth-last-child(-n+2) { border-bottom: none; }
  .test-grid { grid-template-columns: 1fr; }
  .test-card { border-right: none; border-bottom: 0.5px solid var(--c-border); }
  .test-card:last-child { border-bottom: none; }
  .guide-article .ec-details-grid { grid-template-columns: 1fr; }
  .guide-header-title { font-size: 32px; }
  .guide-featured-img { height: 280px; }
  .guides-grid { grid-template-columns: 1fr; }
  .guides-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .guides-grid--archive .guide-card:nth-child(2n) { border-right: none; }
  .guide-card { border-right: none; border-bottom: 0.5px solid var(--c-border); }
  .guide-card:last-child { border-bottom: none; }
  .glossary-grid { grid-template-columns: repeat(2, 1fr); }
  .glossary-item { border-right: 0.5px solid var(--c-border) !important; }
  .glossary-item:nth-child(2n) { border-right: none !important; }
  .glossary-item:nth-last-child(-n+2) { border-bottom: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .cta-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bk-grid { grid-template-columns: 1fr; gap: 32px; }
  .bk-form { grid-template-columns: 1fr 1fr; }
  .inner-hero-stats { gap: 32px; }
  .svc-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .single-model .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-icon { width: 140px; height: 140px; margin: 0 auto; }
  .single-model .svc-hero-icon { width: 100%; height: auto; max-width: 100%; max-height: 320px; margin: 0 auto; }
  .single-model .mdl-hero-photo { max-height: 320px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-card { border-right: 0.5px solid var(--c-border) !important; }
  .problem-card:nth-child(2n) { border-right: none !important; }
  .problem-card:nth-last-child(-n+2) { border-bottom: none; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .booking .bk-grid { grid-template-columns: 1fr; gap: 32px; }
  .seo-content-scroll { padding: 22px 20px 16px; }
  .seo-content-scroll { max-height: 360px; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hub-grid--3 .hub-card:nth-child(3n) { border-right: 0.5px solid var(--c-border); }
  .hub-grid--3 .hub-card:nth-child(2n) { border-right: none; }
  .hub-grid--3 .hub-card:nth-last-child(-n+3) { border-bottom: 0.5px solid var(--c-border); }
  .hub-grid--3 .hub-card:nth-last-child(-n+2) { border-bottom: none; }
  .hub-card { border-right: none; }
  .hub-card:last-child { border-bottom: none; }
  .ec-grid { grid-template-columns: repeat(2, 1fr); }
  .ec-card { border-right: 0.5px solid var(--c-border) !important; }
  .ec-card:nth-child(2n) { border-right: none !important; }
  .ec-tabs { gap: 4px; }
  .mdl-grid { grid-template-columns: repeat(2, 1fr); }
  .mdl-card { border-right: 0.5px solid var(--c-border) !important; }
  .mdl-card:nth-child(2n) { border-right: none !important; }
  .spec-label { flex: 0 0 180px; padding: 10px 16px; }
  .spec-value { padding: 10px 16px; }
}

/* Tablets portrait — 768px and below */
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  .hub-grid--3 { grid-template-columns: 1fr; }
  .hub-grid--3 .hub-card { border-right: none; }
  .hub-grid--3 .hub-card:nth-last-child(-n+3) { border-bottom: 0.5px solid var(--c-border); }
  .hub-grid--3 .hub-card:last-child { border-bottom: none; }
  .util-bar { font-size: 10px; }
  .util-bar .container { padding-top: 6px; padding-bottom: 6px; flex-wrap: wrap; gap: 6px; }
  .util-right a:first-child { display: none; }
  .header .container { padding-top: 14px; padding-bottom: 14px; }
  .logo-text { font-size: 15px; }
  .hero { padding: 80px 0 70px; }
  .hero-title { font-size: 42px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-answer { font-size: 14px; max-width: 100%; }
  .hero-meta { gap: 20px; padding: 14px 18px; }
  .hero-meta-item strong { font-size: 22px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 30px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 22px 18px; gap: 12px; }
  .trust-item .trust-icon { width: 36px; height: 36px; }
  .trust-num { font-size: 24px; }
  .bk-form { grid-template-columns: 1fr; }
  .bk-cell { border-right: none !important; }
  .compare-table { grid-template-columns: 1.2fr 1fr; }
  .compare-cell { padding: 14px 18px; font-size: 13px; }
  .compare-cell.feat { font-size: 14px; }
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
  .coverage-stat-num { font-size: 30px; }
  .ec-grid { grid-template-columns: 1fr; }
  .ec-card { border-right: none !important; }
  .ec-search-count { display: none; }
  .mdl-grid { grid-template-columns: 1fr; }
  .mdl-card { border-right: none !important; }
  .spec-row { flex-direction: column; }
  .spec-label { flex: none; border-right: none; border-bottom: 0.5px solid var(--c-border); padding: 8px 16px 4px; }
  .spec-value { padding: 4px 16px 10px; }
}

/* Phones — 640px and below */
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .inner-hero { padding: 40px 0 50px; }
  .inner-hero-title { font-size: 32px; }
  .inner-hero-desc { font-size: 14px; }
  .inner-hero-stats { flex-wrap: wrap; gap: 24px; }
  .inner-hero-stat { flex: 0 0 calc(50% - 12px); }
  .inner-hero-stat-num { font-size: 22px; }
  .inner-hero-actions { flex-direction: column; align-items: stretch; }
  .inner-hero-actions .btn { width: 100%; justify-content: center; }
  .inner-hero-icon-row { gap: 16px; }
  .inner-hero-icon { width: 48px; height: 48px; }
  .svc-hero-icon { width: 100px; height: 100px; }
  .single-model .svc-hero-icon { width: 100%; height: auto; max-width: 100%; max-height: 240px; margin: 0; border-radius: 10px; }
  .single-model .mdl-hero-photo { max-height: 240px; border-radius: 10px; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none !important; border-bottom: 0.5px solid var(--c-border); }
  .problem-card:last-child { border-bottom: none; }
  .guides-grid { grid-template-columns: 1fr; }
  .hub-card { padding: 24px 20px 22px; }
  .hub-card-icon { width: 56px; height: 56px; }
  .hub-card-title { font-size: 22px; }
  .hub-card-desc { font-size: 13px; }
  .util-bar { font-size: 9px; }
  .util-left, .util-right { gap: 10px; }
  .util-left span:nth-child(2) { display: none; }
  .header { position: static; }
  .logo-text small { display: none; }
  .header-actions .btn { padding: 9px 14px; font-size: 12px; }
  .header-actions .btn svg { display: none; }
  .hero { padding: 64px 0 56px; min-height: 560px; }
  .hero-title { font-size: 34px; line-height: 1.05; }
  .hero-kicker { font-size: 10px; margin-bottom: 22px; }
  .hero-sub { font-size: 14px; margin-bottom: 26px; }
  .hero-answer { font-size: 13px; padding: 14px 18px; margin-bottom: 28px; }
  .hero-answer::before { left: 14px; font-size: 8px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-meta { grid-template-columns: 1fr 1fr 1fr; gap: 12px; padding: 14px 16px; }
  .hero-meta-item { text-align: left; }
  .hero-meta-item strong { font-size: 20px; margin-bottom: 4px; }
  .hero-meta-item { font-size: 8px; }
  .hero-corner { display: none; }
  .section { padding: 48px 0; }
  .section-title { font-size: 26px; }
  .section-label { font-size: 9px; margin-bottom: 18px; }
  .atomic-answer { font-size: 14px; padding: 14px 16px; }
  .atomic-answer::before { left: 12px; font-size: 8px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 0.5px solid var(--c-border); }
  .trust-item:last-child { border-bottom: none; }
  .app-grid { grid-template-columns: 1fr; }
  .app-card { border-right: none !important; border-bottom: 0.5px solid var(--c-border); padding: 24px 20px 20px; min-height: auto; }
  .app-card.has-photo .app-icon-wrap { height: 180px; }
  .app-card:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 0.5px solid var(--c-border); padding: 28px 22px; }
  .process-step:last-child { border-bottom: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { border-right: none !important; border-bottom: 0.5px solid var(--c-border); padding: 26px 22px 22px; }
  .diff-item:last-child { border-bottom: none; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-cell:nth-child(3n) { display: block; }
  .compare-cell.head { padding: 12px 18px; }
  .compare-cell { border-right: none !important; }
  .compare-cell.us { border-left: 1.5px solid var(--c-primary); }
  .coverage-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .coverage-stat-num { font-size: 26px; }
  .coverage-map-wrap { padding: 22px; min-height: 280px; }
  .coverage-info { padding: 26px; }
  .coverage-cities { font-size: 12px; line-height: 1.9; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card { border-right: none !important; border-bottom: 0.5px solid var(--c-border); }
  .loc-card:last-child { border-bottom: none; }
  .models-tabs { padding: 0 4px; }
  .models-tab { padding: 14px 16px; font-size: 10px; }
  .model-mini { flex: 0 0 60%; min-width: 160px; }
  .errors-grid { grid-template-columns: 1fr; }
  .error-card { border-right: none !important; border-bottom: 0.5px solid var(--c-border); padding: 22px 20px; gap: 16px; }
  .error-card:last-child { border-bottom: none; }
  .error-code { font-size: 28px; min-width: 60px; }
  .error-title { font-size: 15px; }
  .test-card { padding: 26px 22px; }
  .glossary-grid { grid-template-columns: 1fr; }
  .glossary-item { border-right: none !important; border-bottom: 0.5px solid var(--c-border); padding: 22px 22px; }
  .glossary-item:last-child { border-bottom: none; }
  .faq-side-title { font-size: 28px; }
  .faq-q { padding: 16px 20px; }
  .faq-q-title { font-size: 14px; }
  .faq-a { padding: 0 20px 18px 52px; font-size: 13px; }
  .reviewer { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px 22px; }
  .reviewer-creds { text-align: left; }
  .cta-grid { padding: 50px 0; }
  .cta-title { font-size: 30px; }
  .cta-sub { font-size: 13px; }
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-col-title { font-size: 9px; margin-bottom: 12px; padding-bottom: 8px; }
  .footer-link { font-size: 12px; line-height: 1.9; }
  .booking-inline { padding: 48px 0; }
  .bk-title { font-size: 26px; }
  .bk-form { grid-template-columns: 1fr; }
  .bk-cell { border-right: none !important; padding: 16px 18px; }
  .bk-warranty { grid-template-columns: 1fr; gap: 6px; }
  .dr-row { grid-template-columns: 1fr; }
  .dr-warranty { grid-template-columns: 1fr; gap: 4px; }
  .drawer { width: 100%; }
  .drawer-head { padding: 18px 22px; }
  .drawer-body { padding: 20px 22px; }
  .fab { bottom: 14px; right: 14px; padding: 13px 16px; font-size: 11px; }
  .ec-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .ec-tabs::-webkit-scrollbar { display: none; }
  .ec-tab { flex-shrink: 0; padding: 7px 12px; font-size: 9px; }
  .ec-card-code { width: 60px; font-size: 12px; padding: 12px 6px; }
  .ec-card-body { padding: 10px 12px; }
  .ec-card-desc { font-size: 12px; }
  .guides-grid--archive { grid-template-columns: 1fr; }
  .guides-grid--archive .guide-card { border-right: none; }
  .guide-type-filters { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .guide-type-filters::-webkit-scrollbar { display: none; }
  .guide-type-pill { flex-shrink: 0; }
}

/* Small phones — 380px and below */
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .util-bar .container { font-size: 9px; }
  .util-right { gap: 8px; }
  .header-actions .btn { padding: 8px 12px; font-size: 11px; }
  .hero-title { font-size: 28px; }
  .hero-meta { grid-template-columns: 1fr; gap: 10px; }
  .hero-meta-item { display: flex; align-items: baseline; gap: 10px; }
  .hero-meta-item strong { font-size: 22px; margin-bottom: 0; }
  .section-title { font-size: 22px; }
  .cta-title { font-size: 24px; }
  .bk-title { font-size: 22px; }
  .faq-side-title { font-size: 22px; }
  .compare-cell.head { font-size: 9px; }
  .compare-cell.feat { font-size: 13px; }
  .compare-cell { padding: 12px 14px; }
}

/* =============================================
   Legal pages (Privacy, Terms, Refund, etc.)
   ============================================= */
.legal-page { padding: 48px 0 64px; }
.legal-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 8px;
}
.legal-meta {
  font-size: 13px;
  color: var(--c-soft);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.legal-body {
  max-width: 780px;
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-dark);
}
.legal-body h2 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 16px;
}
.legal-body h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  margin: 28px 0 12px;
}
.legal-body p { margin: 0 0 16px; }
.legal-body ul, .legal-body ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--c-primary); text-decoration: underline; }
.legal-body a:hover { color: var(--c-primary-hover); }
.legal-body strong { font-weight: 600; }
@media (max-width: 768px) {
  .legal-title { font-size: 28px; }
  .legal-body h2 { font-size: 20px; }
}

/* =============================================
   Author Byline (reusable component)
   ============================================= */
.author-byline {
  margin: 20px 0 24px;
  padding: 16px 0;
  border-top: 0.5px solid var(--c-border);
  border-bottom: 0.5px solid var(--c-border);
}
.author-byline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.author-byline-link:hover .author-byline-name { color: var(--c-primary); }
.author-byline-photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--c-border);
}
.author-byline-info { display: flex; flex-direction: column; }
.author-byline-name {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-dark);
  transition: color .2s;
}
.author-byline-title {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted-light);
}

/* =============================================
   Author Page
   ============================================= */
.author-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}
.author-hero-role {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  margin: 8px 0 16px;
  font-weight: 500;
}
.author-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-border);
}
.author-hero-photo { padding-top: 20px; }
.author-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}
.author-credential-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--c-warm-bg);
  border: 0.5px solid var(--c-border);
  border-radius: 2px;
  color: var(--c-dark);
  white-space: nowrap;
}
.author-bio-content {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.75;
}
.author-bio-content p { margin: 0 0 16px; }

/* Author Tabs */
.author-tabs {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid var(--c-border);
  margin-bottom: 32px;
  margin-top: 24px;
}
.author-tab {
  padding: 12px 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.author-tab:hover { color: var(--c-dark); }
.author-tab.active {
  color: var(--c-dark);
  border-bottom-color: var(--c-primary);
  font-weight: 600;
}
.author-tab-panel { display: none; }
.author-tab-panel.active { display: block; }

@media (max-width: 768px) {
  .author-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .author-hero-photo { order: -1; display: flex; justify-content: center; }
  .author-photo { width: 160px; height: 160px; }
  .author-credentials { justify-content: center; }
  .inner-hero-stats { justify-content: center; }
  .inner-hero-actions { justify-content: center; }
  .author-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .author-tab { white-space: nowrap; padding: 12px 16px; }
}

/* =============================================
   Scroll Reveal Animations
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.reveal-fade.in-view {
  opacity: 1;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-fade,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
