/*
 * Table of contents
 * 01. Foundations and tokens
 * 02. Header and navigation
 * 03. Hero and booking
 * 04. Reviews and services
 * 05. Trust, brands, and FAQ
 * 06. Contact, CTA, and footer
 * 07. Responsive and visual polish
 * 08. WordPress and content templates
 * 09. Articles and optional media
 * 10. Interactive controls
 */

/* == 01. Foundations and tokens == */
:root {
  --ink: #102b33;
  --muted: #5b6e73;
  --paper: #f7faf9;
  --surface: #fff;
  --accent: #e4a340;
  --accent-ink: #142a31;
  --line: #dbe5e3;
  --soft: #edf4f2;
  --deep: #0d3440;
  /* Service-area map boundary (read by service-area.js). Kept out of the basemap's own hues — its
     water is #80deea and its parkland #9cd3b4 — so the border never reads as a bay or a park. Deep
     rather than light for the same reason: a pale teal scores only ~2.6 against that water, and the
     boundary crosses Galveston Bay. This holds 6.3 on land and 5.4 over water. */
  --map-boundary: #075661;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(18, 43, 51, 0.12);
  --font:
    Inter, 'Inter Fallback', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --display:
    Inter, 'Inter Fallback', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
  --shell: min(1180px, calc(100% - 40px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 102px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  /* On <html> this displaces sticky positioning under the WP admin bar — keep it on <body>. */
  overflow-x: clip;
  line-height: 1.6;
}
html[data-theme='dark'] {
  --ink: #ecf5f2;
  --muted: #a9bdb8;
  --paper: #081412;
  --surface: #0f211e;
  --line: #29403b;
  --soft: #122a25;
  --deep: #071d20;
  --accent-ink: #081412;
  /* Near-inverted for the dark basemap (earth #1f1f1f, water #31353f), where the light theme's
     mid-teal would sink into the background instead of reading as a drawn border. */
  --map-boundary: #5ee0d0;
}
.section-shell,
.header-shell,
.hero-shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding: 96px 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.045em;
  line-height: 1.03;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  max-width: 800px;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  margin-bottom: 20px;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: 0.2s ease;
}
.button.is-loading {
  pointer-events: none;
  opacity: 0.85;
}
.button.is-loading::after {
  content: '';
  width: 1.05em;
  height: 1.05em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: np-btn-spin 0.7s linear infinite;
}
@keyframes np-btn-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .button.is-loading::after {
    animation: none;
    border-right-color: currentColor;
    opacity: 0.5;
  }
}
.primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.secondary,
.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
/* == 02. Header and navigation == */
.site-header {
  height: 86px;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow 0.3s ease;
}
/* The glass blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed mobile drawer/overlay, clipping them to header height. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  box-shadow: 0 8px 30px -18px rgba(5, 22, 28, 0.35);
}
/* Keep the sticky header below the WP admin bar for logged-in users. */
.admin-bar .site-header {
  top: 32px;
}
html:has(body.admin-bar) {
  scroll-padding-top: 134px;
}
@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
  html:has(body.admin-bar) {
    scroll-padding-top: 148px;
  }
}
/* Below 600px WordPress makes the admin bar position:absolute (it scrolls away),
   so the sticky header goes back to the very top for logged-in users too. */
@media (max-width: 600px) {
  .admin-bar .site-header {
    top: 0;
  }
  html:has(body.admin-bar) {
    scroll-padding-top: 102px;
  }
}
.header-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-crop {
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  display: block;
}
.logo-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand-copy {
  line-height: 1.1;
}
.brand-copy b {
  display: block;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-copy small {
  font-size: 9px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--muted);
}
nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}
nav a {
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
}
nav a:hover {
  color: var(--ink);
}
nav a.is-current {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.theme-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle {
  display: none;
}
.phone {
  line-height: 1.15;
}
.phone small,
.phone b {
  display: block;
}
.phone small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.phone b {
  font-size: 13px;
}
.header-book {
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}
/* == 03. Hero and booking == */
.hero {
  min-height: 760px;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(5, 22, 28, 0.87), rgba(5, 22, 28, 0.55) 55%, rgba(5, 22, 28, 0.12)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.7fr);
  gap: 64px;
  align-items: center;
  padding: 64px 0;
}
.eyebrow,
.kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 19px;
}
.eyebrow {
  color: #f2c87f;
}
.hero-copy > p {
  font-size: 19px;
  max-width: 610px;
  color: #dce6e8;
  margin-bottom: 28px;
}
.offer {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 18px 11px 11px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.offer > b {
  padding: 10px 16px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 21px;
  border-radius: 999px;
  white-space: nowrap;
  /* The eligibility line can wrap to two lines; the amount must never squeeze with it. */
  flex-shrink: 0;
}
.offer > span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
/* Who the discount is for: one micro-label line, matching .eyebrow/.kicker treatment.
   Kept inside the badge so the hero gains a line of type, not a whole new row. */
.offer-groups {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}
.offer-groups > i {
  font-style: normal;
  color: var(--accent);
  margin: 0 2px;
}
.offer small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: #cbd7d9;
  margin-top: 4px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.proof {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #cfdddf;
}
.form-wrap {
  align-self: center;
}
.booking-form {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  color: var(--ink);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.booking-form [hidden] {
  display: none !important;
}
.form-heading {
  margin-bottom: 22px;
}
.form-heading span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.form-heading b {
  font-size: 22px;
}
/* Name/phone share a row, the appliance select gets a full row, and the service
   address shares the preferred-day row — so the address adds no form height. */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* The compact sidebar form is too narrow for two columns — stack every field. */
.booking-form.compact .form-grid {
  grid-template-columns: 1fr;
}
.booking-form.compact .form-grid > label {
  grid-column: 1 / -1;
}
.form-grid .label-email {
  grid-column: 1 / -1;
}
/* Appliance names are long: the select gets a full row. */
.form-grid label:has(select) {
  grid-column: 1 / -1;
}
/* Brand-styled animated dropdown where customizable <select> is supported; elsewhere the native picker stays. */
@supports (appearance: base-select) {
  .booking-form select {
    appearance: base-select;
  }
  .booking-form select::picker-icon {
    color: var(--accent);
    transition: rotate 0.2s ease;
  }
  .booking-form select:open::picker-icon {
    rotate: 180deg;
  }
  .booking-form select::picker(select) {
    appearance: base-select;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 6px;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      overlay 0.2s ease allow-discrete,
      display 0.2s ease allow-discrete;
  }
  .booking-form select:open::picker(select) {
    opacity: 1;
    transform: none;
  }
  @starting-style {
    .booking-form select:open::picker(select) {
      opacity: 0;
      transform: translateY(-6px);
    }
  }
  .booking-form select option {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 14px;
  }
  .booking-form select option:hover,
  .booking-form select option:focus {
    background: var(--surface);
  }
  .booking-form select option::checkmark {
    color: var(--accent);
  }
}
.booking-form label > span {
  display: block;
  font-size: 11px;
  font-weight: 750;
  margin-bottom: 5px;
  color: var(--muted);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}
.booking-form input,
.booking-form select {
  height: 46px;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--accent);
}
.booking-form textarea {
  resize: vertical;
  min-height: 70px;
  max-height: 280px;
}
.issue {
  display: block;
  margin: 14px 0;
}
.submit {
  width: 100%;
}
.form-note {
  display: block;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.form-confirm:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 10px 0 4px;
  text-align: center;
  animation: form-confirm-in 0.42s ease both;
}
.form-confirm-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 28px;
  font-weight: 800;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 32%, transparent);
}
.form-confirm h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 32px);
}
.form-confirm h3:focus {
  outline: none;
}
.form-confirm-steps {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: confirm-step;
  text-align: left;
}
.form-confirm-steps li {
  position: relative;
  min-height: 34px;
  padding: 5px 0 12px 44px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  counter-increment: confirm-step;
}
.form-confirm-steps li::before {
  content: counter(confirm-step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}
.form-confirm-note {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}
.form-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}
.form-confirm-actions .button {
  min-height: 46px;
  padding: 10px 14px;
  font-size: 13px;
}
.form-confirm .ghost {
  border-color: var(--line);
  color: var(--ink);
}
@keyframes form-confirm-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 480px) {
  .form-confirm-actions {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .form-confirm:not([hidden]) {
    animation: none;
  }
}
/* == 04. Reviews and services == */
.reviews {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.reviews .section-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: center;
}
.reviews-summary {
  display: flex;
  gap: 14px;
  align-items: center;
}
.google-g {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: white;
  font-size: 24px;
  font-weight: 900;
  border: 5px solid var(--surface);
}
.reviews-summary b {
  font-size: 14px;
}
.reviews-summary small {
  color: var(--muted);
  font-size: 10px;
}
.stars {
  color: #efad34;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.stars span {
  color: var(--ink);
  font-weight: 800;
}
.review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 12px;
}
.review-card {
  padding: 17px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-weight: 800;
}
.review-top b {
  font-size: 12px;
  display: block;
  line-height: 1;
}
.verified {
  margin-left: auto;
  background: #4285f4;
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
}
.review-card p {
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  margin: 10px 0;
}
.review-card a {
  font-size: 10px;
  font-weight: 750;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-bottom: 44px;
}
.section-head > div {
  max-width: 680px;
}
.section-head > p {
  max-width: 420px;
  color: var(--muted);
}
.kicker {
  color: var(--accent);
  margin-bottom: 13px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(285px, 100%), 1fr));
  gap: 14px;
}
.service-card {
  min-height: 196px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-content: start;
  transition: 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--deep);
}
.service-icon svg {
  width: 30px;
  height: 30px;
}
.service-card b {
  display: block;
  font-size: 18px;
}
.service-card small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 5px;
}
.service-card em {
  grid-column: 2;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
/* == 05. Trust, brands, and FAQ == */
.trust {
  background: var(--deep);
  color: white;
}
.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}
.trust-copy p {
  color: #b9ccce;
  max-width: 480px;
}
.text-link {
  display: inline-block;
  margin-top: 15px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.benefits article {
  padding: 25px;
  display: flex;
  gap: 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.benefits article > span {
  font-size: 11px;
  color: var(--accent);
  font-weight: 800;
}
.benefits b {
  font-size: 15px;
}
.benefits p {
  font-size: 12px;
  color: #b9ccce;
  margin: 8px 0 0;
}
.brands {
  text-align: center;
}
.brands h2 {
  max-width: 750px;
  margin-inline: auto;
}
/* Infinite brand marquee: the track holds N identical card sets and shifts left by exactly one
   set, which puts the next set where the first started. main.js measures a set and clones more
   until one set is wider than the marquee — with only two sets, a set narrower than the viewport
   uncovers the track's trailing edge before the loop restarts. The -50% fallback is the two-set
   case for when scripts do not run. Pauses on hover; reduced-motion gets a static wrapped row. */
.brands-marquee {
  margin-top: 45px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.brands-track {
  display: flex;
  width: max-content;
  animation: np-marquee 36s linear infinite;
}
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
/* A real flex item, not display:contents, so its width can be measured. The set's box encloses
   its cards' margin boxes, so the 16px trailing margin carries across the seam unchanged. */
.brands-set {
  display: flex;
  flex: none;
}
@keyframes np-marquee {
  to {
    transform: translateX(var(--np-marquee-shift, -50%));
  }
}
.brand-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 18px;
  padding: 22px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: nowrap;
}
/* 38px keeps the 78px-tall raster wordmarks just above 2x for retina; going larger would
   start to soften the few sourced from low-resolution originals.
   object-fit keeps very wide wordmarks (Electrolux, Kelvinator) undistorted once max-width
   caps them — without it the browser stretches the capped box back to the full height. */
.brand-card img {
  height: 38px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.brand-card.has-logo b {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
/* Logos keep their brand colors: in dark mode the chips stay light so dark wordmarks remain visible. */
html[data-theme='dark'] .brand-card {
  background: #eef2f1;
  border-color: transparent;
  color: #3c5258;
}
/* Monogram fallback for a brand added without a logo — sized to match the wordmark cards. */
.brand-card i {
  font-style: normal;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  color: var(--accent);
  font-weight: 800;
}
/* Hold the phone-width card near its previous size: at the desktop scale only about one and
   a half cards would fit on screen, which reads as a slideshow rather than a passing wall. */
@media (max-width: 680px) {
  .brand-card {
    margin-right: 12px;
    padding: 16px 22px;
  }
  .brand-card img {
    height: 30px;
    max-width: 140px;
  }
  .brand-card i {
    width: 36px;
    height: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    gap: 12px;
    margin-inline: 20px;
  }
  /* Cards become the track's own items again so the row can wrap; extra sets are dropped. */
  .brands-set {
    display: contents;
  }
  .brands-set ~ .brands-set {
    display: none;
  }
  .brands-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.faq {
  background: var(--soft);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.faq-grid > div:first-child p {
  color: var(--muted);
  max-width: 420px;
}
.accordion {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 750;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 24px;
  color: var(--accent);
  transition: transform 0.25s ease;
}
details[open] summary span {
  transform: rotate(45deg);
}
/* The icon responds to the click instantly, even while the panel is still animating shut. */
details.np-closing summary span {
  transform: none;
}
/* The open/close motion is JS-driven (main.js); overflow-anchor prevents the browser's
   scroll anchoring from fighting the height animation, which reads as stutter. */
.accordion {
  overflow-anchor: none;
}
details p {
  color: var(--muted);
  padding: 0 42px 20px 0;
  margin: 0;
}
/* == 06. Contact, CTA, and footer == */
/* Desktop: copy + info cards stack in the left column, form fills the right.
   Mobile: natural source order — title, then the form, then the info cards. */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    'copy form'
    'aside form';
  grid-template-rows: auto 1fr;
  column-gap: 64px;
  align-items: start;
}
.contact-copy {
  grid-area: copy;
}
.contact-aside {
  grid-area: aside;
}
.contact-grid .form-wrap {
  grid-area: form;
  align-self: center;
}
.contact-lead {
  color: var(--muted);
  max-width: 480px;
  margin: 6px 0 26px;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 480px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
a.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: none;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-card b {
  display: block;
  font-size: 15px;
}
.contact-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.contact-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
}
@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'copy'
      'form'
      'aside';
    grid-template-rows: auto;
    row-gap: 36px;
  }
}
.final-cta {
  background: var(--surface);
}
.final-cta .section-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.final-cta h2 {
  max-width: 700px;
  margin-bottom: 0;
}
.final-cta .button {
  margin: 5px;
}
footer {
  background: #071d20;
  color: #dbe9e7;
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 55px;
}
.footer-grid .logo-crop {
  border-color: #365057;
}
.footer-grid > div:first-child p {
  max-width: 340px;
  color: #91aaa7;
  font-size: 13px;
  margin-top: 20px;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.footer-grid > div:not(:first-child) > b {
  color: white;
  margin-bottom: 8px;
}
.footer-grid a,
.footer-grid span {
  color: #91aaa7;
}
.footer-bottom {
  border-top: 1px solid #274045;
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #6f8d89;
  font-size: 10px;
}
.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 16px 22px;
  font-weight: 700;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  transition: 0.3s;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.mobile-call {
  display: none;
}

/* == 07. Responsive and visual polish == */
.button,
.booking-form,
.service-card,
.review-card,
.offer {
  border-radius: 999px;
}
.booking-form,
.service-card,
.review-card {
  border-radius: 18px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  border-radius: 9px;
}
.service-icon {
  border-radius: 13px;
}
.hero {
  background-position: center 60%;
}
@media (max-width: 1000px) {
  .site-header {
    height: 76px;
  }
  .header-shell {
    gap: 15px;
  }
  .brand-copy {
    display: none;
  }
  .phone {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .nav-toggle {
    display: block;
    order: 3;
  }
  /* Off-canvas drawer: slides in from the right (hamburger side), closes via ✕, backdrop tap, link tap, Escape, or a rightward swipe.
     Frosted glass over the dimmed page + faint compass watermark; backdrop-filter is safe HERE (the drawer has no fixed descendants). */
  .site-header nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 320px);
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--surface) 88%, transparent),
      color-mix(in srgb, var(--soft) 86%, transparent)
    );
    backdrop-filter: blur(22px) saturate(1.15);
    border-left: 1px solid var(--line);
    padding: 84px 30px 30px;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow);
    transform: translateX(100%);
    visibility: hidden;
    transition:
      transform 0.3s cubic-bezier(0.33, 0, 0.2, 1),
      visibility 0s linear 0.3s;
    z-index: 70;
    overflow: hidden;
  }
  .site-header nav::after {
    content: '';
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 260px;
    height: 260px;
    background: url('../img/logo-116.webp') center / contain no-repeat;
    opacity: 0.07;
    pointer-events: none;
  }
  .site-header nav.open {
    transform: none;
    visibility: visible;
    transition: transform 0.3s cubic-bezier(0.33, 0, 0.2, 1);
  }
  .site-header nav a {
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  @media (prefers-reduced-motion: no-preference) {
    .site-header nav.open a,
    .site-header nav.open .nav-extra {
      animation: np-drawer-item 0.35s cubic-bezier(0.33, 0, 0.2, 1) backwards;
    }
    .site-header nav.open a:nth-of-type(2) {
      animation-delay: 0.06s;
    }
    .site-header nav.open a:nth-of-type(3) {
      animation-delay: 0.1s;
    }
    .site-header nav.open a:nth-of-type(4) {
      animation-delay: 0.14s;
    }
    .site-header nav.open a:nth-of-type(5) {
      animation-delay: 0.18s;
    }
    .site-header nav.open .nav-extra {
      animation-delay: 0.24s;
    }
  }
  .nav-extra {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    position: relative;
  }
  .nav-extra .button {
    border-radius: 999px;
  }
  .nav-extra small {
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 17px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    font-size: 15px;
    cursor: pointer;
  }
  .admin-bar .site-header nav {
    top: 46px;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero {
    min-height: auto;
  }
  .hero-shell {
    padding: 80px 0;
  }
  .form-wrap {
    max-width: 620px;
  }
  .reviews .section-shell {
    grid-template-columns: 1fr;
    width: var(--shell);
  }
  .review-card:last-child {
    display: none;
  }
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2/4;
  }
}
/* Below 600px the WP admin bar scrolls away, so the open drawer must cover the
   full viewport instead of retaining the desktop admin-bar offset. */
@media (max-width: 600px) {
  .admin-bar .site-header nav {
    top: 0;
  }
}
@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 30px);
  }
  body {
    font-size: 15px;
  }
  h1 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }
  h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.3rem);
  }
  .header-book {
    display: none;
  }
  .logo-crop {
    width: 48px;
    height: 48px;
  }
  .theme-toggle,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
  .section {
    padding: 68px 0;
  }
  .hero-shell {
    padding: 65px 0 48px;
  }
  .hero {
    background-position: 60% center;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .offer {
    display: flex;
    width: 100%;
    max-width: 390px;
  }
  /* Tighter tracking buys one more group per line inside the 390px badge. */
  .offer-groups {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    text-align: center;
  }
  .proof {
    gap: 10px 17px;
  }
  .booking-form {
    padding: 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid > label {
    grid-column: 1 / -1;
  }
  .reviews {
    padding: 25px 0;
  }
  .review-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .review-card {
    min-width: 85%;
    scroll-snap-align: start;
  }
  .review-card:last-child {
    display: block;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 18px;
  }
  .service-card {
    min-height: 160px;
  }
  .trust-grid {
    gap: 38px;
  }
  .faq-grid {
    gap: 30px;
  }
  .final-cta .section-shell {
    display: block;
  }
  .final-cta .button {
    width: 100%;
    margin: 5px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/3;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
    padding-bottom: 65px;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
  .mobile-call {
    display: flex;
    position: fixed;
    z-index: 45;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 52px;
    background: var(--accent);
    color: var(--accent-ink);
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    box-shadow: var(--shadow);
  }
  .toast {
    left: 15px;
    right: 15px;
    bottom: 75px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .booking-form select::picker(select) {
    transition: none !important;
  }
  html[data-reveal] .will-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .site-header.scrolled {
    box-shadow: none !important;
  }
}
.footer-bottom strong {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-align: center;
}

/* == 08. WordPress and content templates == */
@font-face {
  font-family: Inter;
  src: url('../fonts/inter-var-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: optional;
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Metric-matched local stand-in for Inter: the swap keeps identical text metrics, so no layout shift. */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107.64%;
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0%;
}
:root {
  --accent: #e2a742;
  --deep: #123e49;
}
.hero {
  background-image: none;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: -2;
}
@media (min-width: 1001px) {
  .nav-close,
  .nav-extra {
    display: none;
  }
}
@keyframes np-drawer-item {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 22, 28, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 60;
}
.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
/* Lock scroll while the drawer is open. Must target body: overflow on <html> itself
   re-anchors the sticky header and shifts it by the admin-bar offset. */
.nav-locked body {
  overflow: hidden;
}
/* Ambient drift on the hero photo. Two things keep it smooth: the layer is promoted up
   front (a bare `animation` on a 2560px image makes Chrome raster the layer at the moment
   the animation starts, which lands as a hitch on the first frame), and the timing is
   linear — `ease-out` front-loads roughly half the travel into the first quarter, which
   reads as a jump rather than a drift. */
@media (min-width: 681px) and (prefers-reduced-motion: no-preference) {
  .hero-img {
    transform: scale(1);
    backface-visibility: hidden;
    will-change: transform;
    animation: np-hero-zoom 26s linear 0.6s forwards;
  }
  @keyframes np-hero-zoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.05);
    }
  }
  /* Once the video fades in, the photo underneath is invisible — stop paying for its
     animation instead of compositing two full-bleed layers for the rest of the visit. */
  .hero:has(.hero-video.is-playing) .hero-img {
    animation-play-state: paused;
    will-change: auto;
  }
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(5, 22, 28, 0.87),
    rgba(5, 22, 28, 0.55) 55%,
    rgba(5, 22, 28, 0.12)
  );
  z-index: -1;
}
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 10px 15px;
  background: var(--accent);
  color: var(--accent-ink);
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  border-radius: 9px;
}
.service-icon {
  border-radius: 13px;
}
.form-error {
  margin: 10px 0 0;
  text-align: center;
  color: #9b251c;
  font-size: 12px;
  font-weight: 700;
}
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.article-hero {
  padding: 95px 0 70px;
  background: #0d3440;
  color: #fff;
}
.article-hero h1 {
  max-width: 900px;
}
.article-hero p {
  max-width: 720px;
  color: #dce6e8;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 70px;
}
.article-layout h2 {
  font-size: 2.4rem;
}
.article-layout h3 {
  font-size: 1.3rem;
  margin-top: 36px;
}
.article-layout p,
.article-layout li,
.article-layout blockquote {
  color: var(--muted);
}
.article-layout aside {
  position: sticky;
  top: 120px;
  height: max-content;
}
.article-layout .booking-form {
  border: 1px solid var(--line);
}
.article-layout figure {
  margin: 28px 0;
}
.article-layout blockquote {
  margin: 28px 0;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
@media (max-width: 850px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-layout aside {
    position: static;
  }
}
:root {
  color-scheme: light;
}
html[data-theme='dark'] {
  color-scheme: dark;
}
html[data-theme='dark'] .service-icon {
  color: var(--muted);
}
/* Kicker accent fails 4.5:1 on light backgrounds (12px bold is not "large text"); darker amber on light surfaces, original accent on dark ones. */
.kicker {
  color: #8a5d0d;
}
.trust .kicker,
html[data-theme='dark'] .kicker {
  color: var(--accent);
}
.brand-copy small {
  color: #47585d;
}
html[data-theme='dark'] .brand-copy small {
  color: var(--muted);
}
footer .brand-copy small {
  color: #91aaa7 !important;
}
.np-breadcrumbs {
  font-size: 12px;
  margin-bottom: 16px;
  color: #dce6e8;
}
.np-breadcrumbs a {
  color: #f2c87f;
}
.np-breadcrumbs .separator {
  margin: 0 7px;
  opacity: 0.75;
}
.service-area-page {
  padding: 72px 0 88px;
}
.service-area-page .section-shell {
  width: min(1120px, calc(100% - 40px));
}
.service-area-intro {
  margin-bottom: 44px;
}
.service-area-intro .kicker {
  margin-bottom: 20px;
}
.service-area-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}
.service-area-intro h1 {
  max-width: 520px;
  margin: 0;
  font-size: 56px;
  line-height: 1.02;
}
.service-area-intro-copy {
  max-width: 620px;
  padding-top: 4px;
}
.service-area-intro-copy > p:first-child {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.service-area-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}
.service-area-facts span + span {
  position: relative;
}
.service-area-facts span + span::before {
  position: absolute;
  top: 50%;
  left: -14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
  transform: translateY(-50%);
}
.coverage-card {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(330px, 1fr);
  gap: 26px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(18, 43, 51, 0.08);
}
.coverage-map-panel {
  position: relative;
  min-width: 0;
}
/* The fixed minimum height reserves the final map box before MapLibre begins loading. */
.service-area-map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
}
.service-area-map-loader {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--soft);
  background-image:
    linear-gradient(
      28deg,
      transparent 42%,
      color-mix(in srgb, var(--line) 78%, transparent) 42.5%,
      color-mix(in srgb, var(--line) 78%, transparent) 44%,
      transparent 44.5%
    ),
    linear-gradient(
      148deg,
      transparent 56%,
      color-mix(in srgb, var(--line) 72%, transparent) 56.5%,
      color-mix(in srgb, var(--line) 72%, transparent) 58%,
      transparent 58.5%
    ),
    linear-gradient(
      86deg,
      transparent 30%,
      color-mix(in srgb, var(--line) 62%, transparent) 30.5%,
      color-mix(in srgb, var(--line) 62%, transparent) 31.5%,
      transparent 32%
    );
  color: var(--muted);
  opacity: 1;
  transition:
    opacity 240ms ease,
    visibility 240ms ease;
}
.service-area-map-loader::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    color-mix(in srgb, var(--surface) 72%, transparent) 48%,
    transparent 66%
  );
  content: '';
  transform: translateX(-100%);
  animation: service-area-map-shimmer 1.5s ease-in-out infinite;
}
.service-area-map-loader::after {
  position: absolute;
  width: 36%;
  max-width: 230px;
  aspect-ratio: 1;
  border: 3px solid color-mix(in srgb, var(--muted) 28%, transparent);
  border-radius: 50%;
  content: '';
}
.service-area-map-loader span {
  position: relative;
  z-index: 1;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(18, 43, 51, 0.08);
  font-size: 14px;
  font-weight: 650;
}
.service-area-map.is-ready .service-area-map-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.service-area-map-legend {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--line) 84%, transparent);
  border-radius: 6px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 6px 18px rgba(18, 43, 51, 0.1);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 180ms ease;
}
.service-area-map.is-ready + .service-area-map-legend {
  opacity: 1;
}
.service-area-map-legend span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--map-boundary);
  border-radius: 50%;
  background: color-mix(in srgb, var(--map-boundary) 10%, transparent);
}
/* When the map removes itself — a blocked tile archive, a failed style, the load watchdog —
   the card has to collapse to the place list. Leaving the grid at two columns reserves the
   map's share of the width and renders as a large empty panel, which looks more broken than
   no map at all. */
.coverage-card:has(.service-area-map[hidden]) {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
.coverage-card:has(.service-area-map[hidden]) .coverage-map-panel {
  display: none;
}
.coverage-card:has(.service-area-map[hidden]) .coverage-info {
  padding: 24px 14px 10px;
}
.coverage-info {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px 14px 10px 0;
}
.coverage-info-kicker {
  display: block;
  margin-bottom: 8px;
  color: #8a5d0d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html[data-theme='dark'] .coverage-info-kicker {
  color: var(--accent);
}
.coverage-info h2 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.08;
}
.coverage-decision > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.coverage-places {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.coverage-places h3 {
  margin: 0 0 12px;
  font-size: 16px;
}
.coverage-place-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(var(--coverage-place-rows), auto);
  grid-auto-flow: column;
  gap: 4px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.coverage-place-list li {
  position: relative;
  min-width: 0;
  padding-left: 13px;
  overflow-wrap: anywhere;
}
.coverage-place-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--map-boundary);
  content: '';
}
.coverage-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}
.coverage-actions .button {
  width: 100%;
  min-height: 48px;
}
@keyframes service-area-map-shimmer {
  to {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-area-map-loader::before {
    animation: none;
  }
}
@media (max-width: 900px) {
  .service-area-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-area-intro h1 {
    max-width: 680px;
  }
  .service-area-intro-copy {
    max-width: 720px;
    padding-top: 0;
  }
  .coverage-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
  }
  .service-area-map {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .service-area-map-legend {
    position: static;
    width: fit-content;
    margin: 8px 4px 0;
    padding: 4px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .coverage-info {
    padding: 24px 8px 8px;
  }
  .coverage-actions {
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .service-area-page {
    padding: 46px 0 72px;
  }
  .service-area-page .section-shell {
    width: calc(100% - 30px);
  }
  .service-area-intro {
    margin-bottom: 32px;
  }
  .service-area-intro .kicker {
    margin-bottom: 14px;
  }
  .service-area-intro h1 {
    font-size: 42px;
  }
  .service-area-intro-copy > p:first-child {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.58;
  }
  .service-area-facts {
    gap: 7px 20px;
    font-size: 13px;
  }
  .service-area-map-loader::after {
    width: 44%;
  }
  .coverage-info h2 {
    font-size: 26px;
  }
  .coverage-place-list {
    gap: 4px 16px;
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .service-area-intro h1 {
    font-size: 40px;
  }
  .coverage-place-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
  }
}
/* == 09. Articles and optional media == */
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.article-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.25s;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.article-date {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-card b {
  font-size: 18px;
  line-height: 1.25;
}
.article-card small {
  color: var(--muted);
  line-height: 1.5;
}
.article-card em {
  margin-top: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-thumb {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 24px;
}
.pagination {
  margin-top: 40px;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}
.pagination .page-numbers.current {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.pagination a.page-numbers:hover {
  border-color: var(--accent);
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (max-width: 1000px) {
  .article-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .article-list {
    grid-template-columns: 1fr;
  }
}
/* == Hero video (optional, loaded lazily by main.js; photo stays LCP/fallback) == */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-video.is-playing {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}
/* == 10. Interactive controls == */
/* == Carousel (scroll-snap track + arrow controls; reviews use it when more than three exist) == */
.np-carousel {
  position: relative;
  min-width: 0;
}
.np-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.np-carousel-track::-webkit-scrollbar {
  display: none;
}
.review-list.np-carousel-track .review-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  display: block;
}
.np-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.np-carousel-btn.prev {
  left: -14px;
}
.np-carousel-btn.next {
  right: -14px;
}
.np-carousel-btn[disabled] {
  opacity: 0.35;
  cursor: default;
}
.np-carousel.no-overflow .np-carousel-btn {
  display: none;
}
@media (max-width: 1000px) {
  .review-list.np-carousel-track {
    display: flex;
  }
  .review-list.np-carousel-track .review-card {
    flex-basis: calc((100% - 12px) / 2);
  }
}
@media (max-width: 680px) {
  .review-list.np-carousel-track .review-card {
    flex-basis: 85%;
  }
  .np-carousel-btn {
    display: none;
  }
}
/* == Booking day picker and arrival-window chips == */
[data-date-field][hidden] {
  display: none;
}
.day-picker {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--paper);
}
.day-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: 750;
  font-size: 14px;
}
.day-picker-head button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}
.day-picker-head button[disabled] {
  opacity: 0.35;
  cursor: default;
}
.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.day-grid > span {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  padding: 4px 0;
}
.day-grid button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.day-grid button:hover {
  border-color: var(--accent);
}
.day-grid button[disabled] {
  color: var(--muted);
  opacity: 0.4;
  cursor: default;
  border-color: transparent;
}
.day-grid button.sel {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 800;
}
.day-grid .dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.day-grid button.sel .dot {
  background: var(--accent-ink);
}
.window-choice {
  border: 0;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.window-choice legend {
  width: 100%;
  font-size: 11px;
  font-weight: 750;
  color: var(--muted);
  margin-bottom: 6px;
  padding: 0;
}
.window-choice label {
  display: flex;
}
.window-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.window-choice label > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: var(--surface);
  color: var(--ink);
}
.window-choice input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.window-choice input:disabled + span {
  opacity: 0.4;
  cursor: default;
  text-decoration: line-through;
}
.window-choice input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
html[data-reveal] .will-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
html[data-reveal] .will-reveal.revealed {
  opacity: 1;
  transform: none;
}
