@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #061a33;
  --ink-2: #20354e;
  --paper: #f7f6f1;
  --white: #ffffff;
  --soft: #e8edf3;
  --line: rgba(6, 26, 51, 0.14);
  --muted: #667386;
  --accent: #b58b2b;
  --accent-dark: #755817;
  --green: #08264a;
  --gold: #c79b34;
  --shadow: 0 18px 54px rgba(6, 26, 51, 0.14);
  --radius: 8px;
  --max: 1320px;
  --font-body: Manrope, Aptos, "Segoe UI Variable Text", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --font-display: Manrope, "Aptos Display", Aptos, "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(247, 246, 241, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199, 155, 52, 0.22);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  padding: 8px clamp(16px, 4vw, 40px);
  color: #e6d49a;
  background: #031123;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  max-width: 1560px;
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  line-height: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(58px, 5.3vw, 82px);
  max-width: min(48vw, 230px);
  object-fit: contain;
}

#site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 26, 51, 0.1);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(6, 26, 51, 0.06);
  font-size: 14px;
  font-weight: 800;
}

#site-nav > a,
#site-nav > .nav-group > summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

#site-nav > a:hover,
#site-nav > a:focus-visible,
#site-nav > .nav-group > summary:hover,
#site-nav > .nav-group > summary:focus-visible,
#site-nav > a[aria-current="page"],
#site-nav > .nav-group > summary[aria-current="page"],
.nav-group[open] > summary {
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(6, 26, 51, 0.12);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  font-weight: 800;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
  transition: transform 0.16s ease;
}

.nav-group[open] > summary::after {
  transform: rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  gap: 8px;
  min-width: 280px;
  padding: 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-group:focus-within .nav-dropdown,
.nav-group[open] .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: grid;
  gap: 2px;
  padding: 12px 13px !important;
  color: var(--ink) !important;
  background: rgba(199, 155, 52, 0.06);
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a[aria-current="page"] {
  background: rgba(199, 155, 52, 0.2);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 12px 26px rgba(199, 155, 52, 0.18);
  transform: translateY(-1px);
}

.nav-dropdown small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown--services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(620px, calc(100vw - 32px));
}

.nav-cta {
  min-height: 42px;
  padding: 13px 15px !important;
  color: var(--ink) !important;
  background: var(--accent);
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(6, 26, 51, 0.2);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(22px, 4.5vw, 58px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(34px, 5.4vw, 72px) clamp(18px, 5vw, 56px);
}

.compact-hero {
  min-height: 56vh;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-feature h2,
.area-strip h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(42px, 5.7vw, 78px);
  max-width: 650px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 21px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.hero-media::after,
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border-radius: 7px;
  border: 1px solid currentColor;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(199, 155, 52, 0.72);
  box-shadow: inset 0 0 0 1px rgba(199, 155, 52, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(199, 155, 52, 0.08);
  border-color: var(--gold);
}

.section,
.split-feature,
.area-strip,
.final-cta {
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 56px);
}

.section > *,
.split-feature > *,
.area-strip > *,
.final-cta > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  color: var(--white);
  background: var(--ink);
}

.intro-band.section {
  padding-top: clamp(34px, 4.6vw, 58px);
  padding-bottom: clamp(34px, 4.6vw, 58px);
}

.intro-band .eyebrow,
.final-cta .eyebrow,
.area-strip .eyebrow {
  color: #d8ad45;
}

.intro-band p,
.area-strip p,
.final-cta p {
  color: #dce5f1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.section h2,
.split-feature h2,
.area-strip h2,
.final-cta h2 {
  font-size: clamp(32px, 4.2vw, 56px);
}

.section-heading p:not(.eyebrow),
.section > p,
.split-feature p,
.service-card p,
.mini-grid p,
.gallery-card p,
.values-list p,
.area-card-grid p,
.faq-list p,
.contact-panel p {
  color: var(--muted);
}

.service-grid,
.mini-grid,
.gallery-grid,
.step-grid,
.area-card-grid {
  display: grid;
  gap: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.mini-grid article,
.step-grid article,
.area-card-grid article,
.values-list article,
.contact-panel,
.quote-form,
.gallery-card,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card,
.mini-grid article,
.step-grid article,
.area-card-grid article,
.values-list article {
  padding: 22px;
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--soft);
}

.service-card > div {
  display: grid;
  align-content: start;
  padding: 20px;
}

.service-card:hover,
.service-card:focus-visible,
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-kicker,
.gallery-card span,
.contact-methods span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3,
.mini-grid h3,
.gallery-card h3,
.values-list h3,
.area-card-grid h3,
.step-grid h3 {
  margin: 8px 0 10px;
  font-size: 21px;
  line-height: 1.12;
}

.text-link {
  align-self: end;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
}

.services-section {
  background: #f2f5f9;
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}

.service-spotlight-copy,
.service-feature-card,
.service-compact-grid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(6, 26, 51, 0.07);
}

.service-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
}

.service-spotlight-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
}

.service-spotlight-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-pills a {
  min-height: 38px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f7f3ec;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.service-feature-list {
  display: grid;
  gap: 14px;
}

.service-feature-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-feature-card:hover,
.service-feature-card:focus-visible,
.service-compact-grid a:hover,
.service-compact-grid a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 172px;
  object-fit: cover;
}

.service-feature-card div {
  display: grid;
  align-content: center;
  padding: 20px;
}

.service-feature-card span,
.service-compact-grid span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-feature-card h3 {
  margin: 8px 0;
  font-size: 25px;
  line-height: 1.05;
}

.service-feature-card p {
  margin: 0;
  color: var(--muted);
}

.service-compact-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-compact-grid a {
  display: grid;
  grid-template-rows: 128px minmax(0, 1fr);
  overflow: hidden;
}

.service-compact-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-compact-grid div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.service-compact-grid strong {
  font-size: 22px;
  line-height: 1.1;
}

.service-compact-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.split-feature,
.area-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: minmax(340px, 1.05fr) minmax(0, 0.95fr);
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.muted-section {
  background: #eee7dc;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 44px;
  padding: 11px 14px 11px 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 18px;
  height: 16px;
  background: url("/assets/images/elgar-check.png") center / contain no-repeat;
}

.mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tag-row,
.filter-row,
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row {
  margin-top: 22px;
}

.tag-row a,
.filter-row button,
.area-pills span {
  min-height: 40px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.filter-row {
  margin-bottom: 18px;
}

.filter-row button {
  cursor: pointer;
}

.filter-row button.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.gallery-card div {
  padding: 18px;
}

.microcopy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.area-strip,
.final-cta {
  color: var(--white);
  background: var(--ink);
}

.area-pills {
  justify-content: flex-end;
}

.area-pills span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-grid article span {
  display: block;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
}

.values-list {
  display: grid;
  gap: 12px;
}

.area-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.service-guide-page {
  background: var(--paper);
}

.service-guide-hero,
.service-guide-section,
.service-guide-quote {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 56px);
}

.service-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: clamp(58px, 8vw, 116px);
}

.service-guide-hero__copy {
  max-width: 720px;
}

.service-guide-page--modern .service-guide-hero {
  grid-template-columns: minmax(0, 0.93fr) minmax(520px, 1.07fr);
  gap: clamp(36px, 4vw, 70px);
  max-width: none;
  padding: clamp(36px, 4.2vw, 72px) clamp(20px, 2.4vw, 40px) clamp(18px, 2vw, 30px);
}

.service-guide-page--modern .service-guide-hero__copy {
  max-width: 820px;
}

.service-guide-hero h1,
.service-guide-heading h2,
.service-guide-quote h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
}

.service-guide-hero h1 {
  font-size: clamp(48px, 5.8vw, 82px);
}

.service-guide-page--modern .service-guide-hero h1 {
  max-width: 800px;
  font-size: clamp(72px, 6vw, 118px);
  line-height: 0.93;
}

.service-guide-hero__copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #243a55;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.65;
}

.service-guide-page--modern .service-guide-hero__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 26px;
  font-size: clamp(22px, 1.55vw, 29px);
  line-height: 1.58;
}

.service-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-guide-page--modern .service-guide-actions {
  margin-top: 38px;
  gap: 16px;
}

.service-guide-page--modern .service-guide-actions .button {
  min-height: 72px;
  padding-inline: 28px;
  font-size: clamp(17px, 1.05vw, 21px);
}

.service-guide-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.service-guide-page--modern .service-guide-trust {
  margin-top: 32px;
  gap: 12px;
}

.service-guide-trust span {
  padding: 9px 12px;
  color: #08264a;
  background: #fffaf0;
  border: 1px solid rgba(199, 155, 52, 0.36);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.service-guide-page--modern .service-guide-trust span {
  padding: 12px 17px;
  font-size: clamp(14px, 0.95vw, 17px);
}

.service-guide-hero__media,
.service-anatomy-visual,
.service-process-image,
.service-proof-card,
.service-problem-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 51, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(6, 26, 51, 0.1);
}

.service-guide-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.service-guide-page--modern .service-guide-hero__media {
  align-self: center;
}

.service-guide-page--modern .service-guide-hero__media img {
  aspect-ratio: 16 / 10.45;
}

.service-guide-page--modern .service-guide-hero__media figcaption {
  padding: 18px 22px;
  font-size: clamp(15px, 1vw, 19px);
}

.service-guide-hero__media figcaption,
.service-process-image figcaption {
  padding: 14px 16px;
  color: #5c6c82;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.service-guide-section {
  max-width: var(--max);
  margin: 0 auto;
}

.service-guide-problems,
.service-proof,
.service-guide-faq {
  border-top: 1px solid rgba(6, 26, 51, 0.08);
}

.service-guide-heading {
  max-width: 840px;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.service-guide-heading h2,
.service-guide-quote h2 {
  font-size: clamp(36px, 4.6vw, 62px);
}

.service-guide-heading p:not(.eyebrow),
.service-guide-quote__copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: #5d6d82;
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.72;
}

.service-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-problem-card {
  display: grid;
  align-content: start;
  box-shadow: none;
}

.service-problem-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-problem-card div,
.service-proof-card figcaption {
  padding: 20px;
}

.service-problem-card h3,
.service-technical-list h3,
.service-process-rail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
}

.service-problem-card p,
.service-technical-list p,
.service-process-rail p,
.service-proof-card small,
.service-guide-faq .faq-list p {
  color: #627187;
  line-height: 1.72;
}

.service-problem-card p {
  margin: 12px 0 0;
}

.service-guide-detail {
  max-width: none;
  color: var(--white);
  background: linear-gradient(135deg, #061a33, #092a4f);
}

.service-guide-detail > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.service-guide-detail .eyebrow {
  color: #f0d27a;
}

.service-guide-detail .service-guide-heading p {
  color: #cbd9eb;
}

.service-anatomy {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: stretch;
}

.service-anatomy-visual {
  position: relative;
  min-height: 100%;
  border-color: rgba(240, 210, 122, 0.28);
  background: #071c34;
  box-shadow: 0 30px 80px rgba(1, 10, 22, 0.36);
}

.service-anatomy-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-anatomy-visual span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  max-width: 170px;
  padding: 9px 11px;
  color: #061a33;
  background: #f0d27a;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
  box-shadow: 0 16px 34px rgba(1, 10, 22, 0.28);
  transform: translate(-50%, -50%);
}

.service-technical-list {
  display: grid;
  gap: 12px;
}

.service-technical-list article {
  padding: clamp(20px, 2.4vw, 30px);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(240, 210, 122, 0.22);
  border-radius: 8px;
}

.service-technical-list p {
  margin: 12px 0 0;
  color: #d4e0ee;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-proof-card {
  box-shadow: none;
}

.service-proof-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-proof-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-proof-card strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}

.service-proof-card small {
  display: block;
  margin-top: 9px;
  font-size: 14px;
}

.service-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: start;
}

.service-process-rail {
  display: grid;
  gap: 12px;
}

.service-process-rail article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-process-rail article > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 950;
}

.service-process-rail p {
  margin: 8px 0 0;
}

.service-process-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-guide-faq .faq-list {
  max-width: 980px;
}

.service-guide-faq .faq-list details {
  border-radius: 8px;
}

.service-guide-quote {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(520px, 0.52fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  max-width: none;
  color: var(--white);
  background: linear-gradient(135deg, #031123, #08264a);
}

.service-guide-quote > * {
  max-width: var(--max);
}

.service-guide-quote__copy {
  justify-self: end;
  max-width: 620px;
}

.service-guide-quote .eyebrow {
  color: #f0d27a;
}

.service-guide-quote__copy p:not(.eyebrow) {
  color: #dce7f4;
}

.service-guide-quote .service-guide-quote-form {
  grid-area: auto;
  justify-self: start;
  width: min(100%, 820px);
  max-width: 820px;
}

.service-guide-quote .service-guide-quote-form .home-quote-form-head > span {
  width: auto;
  min-width: 138px;
  height: auto;
  min-height: 56px;
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.2;
  text-align: center;
}

.service-guide-quote .service-guide-quote-form .quote-service-picker {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.service-guide-quote .service-guide-quote-form .quote-service-picker input:checked + span {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 5px 0 0 #061a33;
}

@media (max-width: 1080px) {
  .service-guide-hero,
  .service-anatomy,
  .service-process-layout,
  .service-guide-quote {
    grid-template-columns: 1fr;
  }

  .service-guide-page--modern .service-guide-hero {
    grid-template-columns: 1fr;
    max-width: 900px;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .service-guide-hero__media {
    order: -1;
  }

  .service-guide-page--modern .service-guide-hero__media {
    order: -1;
  }

  .service-guide-page--modern .service-guide-hero h1 {
    max-width: 900px;
    font-size: clamp(58px, 10.6vw, 92px);
  }

  .service-guide-page--modern .service-guide-hero__copy > p:not(.eyebrow) {
    max-width: 760px;
    font-size: clamp(19px, 2.4vw, 25px);
  }

  .service-guide-quote__copy {
    justify-self: start;
  }

  .service-guide-quote-form {
    width: 100%;
    max-width: 900px;
  }

  .service-problem-grid {
    grid-template-columns: 1fr;
  }

  .service-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-guide-hero,
  .service-guide-section,
  .service-guide-quote {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-guide-hero {
    padding-top: 28px;
  }

  .service-guide-page--modern .service-guide-hero {
    gap: 22px;
    padding: 18px 16px 26px;
  }

  .service-guide-hero h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .service-guide-page--modern .service-guide-hero h1 {
    font-size: clamp(46px, 14.5vw, 68px);
    line-height: 0.95;
  }

  .service-guide-page--modern .service-guide-hero__copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.56;
  }

  .service-guide-heading h2,
  .service-guide-quote h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .service-guide-page--modern .service-guide-actions {
    margin-top: 24px;
    gap: 12px;
  }

  .service-guide-page--modern .service-guide-actions .button {
    min-height: 58px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .service-guide-page--modern .service-guide-trust {
    margin-top: 22px;
    gap: 8px;
  }

  .service-guide-page--modern .service-guide-trust span {
    padding: 9px 11px;
    font-size: 13px;
  }

  .service-guide-page--modern .service-guide-hero__media figcaption {
    padding: 13px 14px;
    font-size: 13px;
  }

  .service-guide-actions .button {
    width: 100%;
  }

  .service-anatomy-visual img {
    min-height: 360px;
  }

  .service-anatomy-visual span {
    max-width: 128px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-process-rail article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .service-process-rail article > span {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: 18px;
  align-items: start;
}

.contact-panel,
.quote-form {
  padding: clamp(20px, 4vw, 30px);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-methods div {
  padding: 16px;
  background: #f2f5f9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods strong {
  display: block;
  margin-top: 4px;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  padding: 0 13px;
}

.quote-form textarea {
  min-height: 140px;
  padding: 12px 13px;
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.final-cta {
  text-align: center;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
}

.legal-content {
  max-width: 980px;
  gap: 14px;
}

.legal-content article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(16, 33, 54, 0.07);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  color: #f8fafc;
  background:
    radial-gradient(circle at 20% 10%, rgba(16, 75, 121, 0.62), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(17, 64, 105, 0.42), transparent 36%),
    linear-gradient(135deg, #06182e 0%, #08233f 48%, #06162a 100%);
  border-top: 1px solid rgba(199, 155, 52, 0.28);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) clamp(18px, 5vw, 56px) 0;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(160px, 0.8fr) minmax(150px, 0.72fr) minmax(290px, 1.15fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.site-footer__main > * + * {
  min-height: 100%;
  padding-left: clamp(26px, 4vw, 48px);
  border-left: 1px solid rgba(199, 155, 52, 0.24);
}

.footer-brand-mark {
  display: inline-flex;
  width: min(100%, 390px);
  margin-bottom: clamp(26px, 4vw, 42px);
}

.footer-brand-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.22));
}

.site-footer__brand p {
  max-width: 330px;
  margin: 0 0 22px;
  color: rgba(214, 224, 237, 0.74);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.site-footer h2 {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-link-list {
  display: grid;
  gap: 20px;
}

.footer-list-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  color: rgba(248, 250, 252, 0.88);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 750;
}

.footer-list-link::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-list-link:hover,
.footer-list-link:focus-visible {
  color: var(--white);
}

.footer-list-link:hover::before,
.footer-list-link:focus-visible::before {
  transform: translateX(4px) rotate(-45deg);
}

.footer-info-list {
  display: grid;
  gap: 0;
}

.footer-info-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 0 0 26px;
  color: rgba(248, 250, 252, 0.88);
}

.footer-info-item + .footer-info-item {
  padding-top: 26px;
  border-top: 1px solid rgba(199, 155, 52, 0.2);
}

.footer-info-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--gold);
  border: 1px solid rgba(199, 155, 52, 0.5);
  border-radius: 999px;
  background: rgba(6, 18, 34, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.footer-info-icon svg,
.footer-bottom-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-info-item strong {
  display: block;
  color: #f8fafc;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.2;
}

.footer-info-item small {
  display: block;
  margin-top: 5px;
  color: rgba(214, 224, 237, 0.67);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(290px, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: clamp(42px, 6vw, 70px);
  padding: 28px 0 30px;
  color: rgba(214, 224, 237, 0.68);
  border-top: 1px solid rgba(199, 155, 52, 0.22);
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav,
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}

.site-footer__bottom nav {
  justify-content: center;
}

.site-footer__bottom nav a + a,
.footer-trust span + span {
  padding-left: 26px;
  border-left: 1px solid rgba(199, 155, 52, 0.24);
}

.site-footer__bottom a {
  color: rgba(214, 224, 237, 0.72);
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--white);
}

.footer-trust {
  justify-content: flex-end;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.footer-bottom-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.footer-bottom-icon svg {
  width: 24px;
  height: 24px;
}

.site-footer__credit {
  margin: -8px 0 0;
  color: rgba(214, 224, 237, 0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__main > * + * {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer__column {
    padding-top: 30px;
    border-top: 1px solid rgba(199, 155, 52, 0.2);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__bottom nav,
  .footer-trust {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    padding: 30px 18px 0;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .site-footer__column,
  .site-footer__contact {
    margin-top: 0;
    padding-top: 18px;
  }

  .site-footer__brand,
  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer h2 {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .footer-link-list {
    gap: 8px;
  }

  .footer-brand-mark {
    width: min(100%, 260px);
    margin-bottom: 18px;
  }

  .site-footer__brand p {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .footer-list-link {
    gap: 10px;
    font-size: 15px;
    line-height: 1.2;
  }

  .footer-list-link::before {
    width: 7px;
    height: 7px;
  }

  .footer-info-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
    min-height: auto;
  }

  .footer-info-item + .footer-info-item {
    padding-top: 14px;
  }

  .footer-info-icon {
    width: 38px;
    height: 38px;
  }

  .footer-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-info-item strong {
    font-size: 16px;
  }

  .footer-info-item small {
    margin-top: 3px;
    font-size: 14px;
  }

  .site-footer__bottom {
    gap: 12px;
    margin-top: 24px;
    padding: 18px 0 20px;
    font-size: 13px;
  }

  .site-footer__bottom nav,
  .footer-trust {
    gap: 8px 14px;
  }

  .site-footer__bottom nav a + a,
  .footer-trust span + span {
    padding-left: 14px;
  }

  .footer-trust span {
    gap: 8px;
  }

  .footer-bottom-icon {
    width: 20px;
    height: 20px;
  }

  .footer-bottom-icon svg {
    width: 18px;
    height: 18px;
  }

  .site-footer__credit {
    margin-top: -4px;
    font-size: 12px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .top-strip {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  #site-nav {
    position: fixed;
    inset: 82px 14px auto 14px;
    display: none;
    max-height: calc(100vh - 100px);
    overflow: auto;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    background: #031123;
    border: 1px solid rgba(199, 155, 52, 0.22);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  #site-nav.is-open {
    display: flex;
  }

  #site-nav > a,
  #site-nav > .nav-group > summary {
    justify-content: space-between;
    width: 100%;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
  }

  #site-nav a {
    min-height: 44px;
    padding: 12px 10px;
    color: var(--white);
  }

  #site-nav summary {
    min-height: 44px;
    padding: 12px 10px;
    color: var(--white);
  }

  #site-nav > a:hover,
  #site-nav > a:focus-visible,
  #site-nav > .nav-group > summary:hover,
  #site-nav > .nav-group > summary:focus-visible,
  #site-nav > a[aria-current="page"],
  #site-nav > .nav-group > summary[aria-current="page"],
  .nav-group[open] > summary {
    color: var(--white);
    background: rgba(199, 155, 52, 0.14);
    border-color: rgba(199, 155, 52, 0.34);
  }

  #site-nav > a.nav-cta {
    justify-content: center;
    color: var(--ink) !important;
    background: var(--gold);
    border-color: var(--gold);
  }

  .nav-group {
    width: 100%;
  }

  .nav-group summary {
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
  }

  .nav-group[open] .nav-dropdown {
    display: grid;
  }

  .nav-dropdown--services {
    grid-template-columns: 1fr;
  }

  .nav-dropdown a {
    color: #f6efe4 !important;
    background: rgba(199, 155, 52, 0.1);
    border-color: var(--gold);
    box-shadow: none;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible,
  .nav-dropdown a[aria-current="page"] {
    background: rgba(199, 155, 52, 0.22);
    border-color: var(--gold);
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown small {
    color: #d7cbbd;
  }

  .hero,
  .two-column,
  .contact-layout,
  .intro-band,
  .split-feature,
  .split-feature.reverse,
  .area-strip {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    aspect-ratio: 16 / 9;
  }

  .service-spotlight {
    grid-template-columns: 1fr;
  }

  .service-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .gallery-grid,
  .mini-grid,
  .area-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .area-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    height: 58px;
    max-width: 170px;
  }

  .hero,
  .section,
  .split-feature,
  .area-strip,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .section h2,
  .split-feature h2,
  .area-strip h2,
  .final-cta h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .service-grid,
  .gallery-grid,
  .mini-grid,
  .area-card-grid,
  .step-grid,
  .service-compact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-feature-card {
    grid-template-columns: 1fr;
  }

  .service-feature-card img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .service-card {
    min-height: auto;
  }

  .filter-row button {
    flex: 1 1 calc(50% - 10px);
  }

  .site-footer nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .action-row .button,
  .quote-form .button {
    width: 100%;
  }

  .filter-row button {
    flex-basis: 100%;
  }
}

/* Header / footer contact links */
.top-strip a {
  color: #d8ad45;
}

.top-call {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 14px !important;
  color: var(--ink) !important;
  border: 1px solid rgba(199, 155, 52, 0.46);
  border-radius: 6px;
  font-weight: 900;
}

.quote-call-prompt {
  margin: 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(199, 155, 52, 0.42);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.35;
}

.quote-call-prompt a {
  color: var(--accent-dark);
  font-weight: 950;
  text-decoration: none;
}

.quote-call-prompt a:hover,
.quote-call-prompt a:focus-visible {
  text-decoration: underline;
}

/* Trust bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  padding: 16px clamp(16px, 5vw, 56px);
  color: #f5f7fb;
  background: #0c355f;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.trust-bar span::before {
  content: "";
  flex: none;
  width: 18px;
  height: 16px;
  margin-bottom: 1px;
  background: url("/assets/images/elgar-check.png") center / contain no-repeat;
}

/* Signs as a two-up checklist */
.signs-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Contact page extras */
.contact-methods a {
  color: var(--accent-dark);
}

.contact-help {
  margin: 24px 0 10px;
  font-weight: 900;
}

.form-privacy {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Centred CTA row + ghost button for dark sections */
.action-row--center {
  justify-content: center;
}

.button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1120px) {
  .nav-call {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 4px;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
  }
}

@media (max-width: 700px) {
  .trust-bar {
    gap: 10px 22px;
    font-size: 13px;
  }

  .signs-list {
    grid-template-columns: 1fr;
  }
}

/* Process freeflow timeline */
.pf-flow { position: relative; margin-top: 44px; --pf-hit-delay: .95s; --pf-flow-duration: 3.05s; }
.pf-rail { position: absolute; top: 32px; left: 12.5%; width: 75%; height: 3px; transform: translateY(-50%); }
.pf-track { position: absolute; inset: 0; background: var(--line); border-radius: 3px; opacity: 0; }
.pf-prog { position: absolute; inset: 0; background: var(--accent); border-radius: 3px; transform: scaleX(0); transform-origin: left; }
.pf-comet { position: absolute; top: 50%; left: 0; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--gold); border: 2px solid var(--accent); opacity: 0; }
.pf-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.pf-step { text-align: center; padding: 0 8px; }
.pf-badge { position: relative; z-index: 2; width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 2px solid var(--accent); color: var(--accent); box-sizing: border-box; }
.pf-ic { width: 28px; height: 28px; }
.pf-num { position: absolute; top: -4px; right: -4px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: var(--white); font-size: 11px; font-weight: 900; border: 2px solid var(--paper); z-index: 3; }
.pf-step h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.15; }
.pf-step p { margin: 0; color: var(--muted); }

/* Play once when the section scrolls into view (JS adds .is-flowing) */
.pf-flow.is-flowing .pf-prog { animation: pfDraw var(--pf-flow-duration) ease-in-out forwards; }
.pf-flow.is-flowing .pf-comet { animation: pfTravel var(--pf-flow-duration) ease-in-out forwards; }
.pf-flow.is-flowing .pf-step { animation: pfRise .58s ease both; animation-delay: calc(var(--i) * var(--pf-hit-delay)); }
.pf-flow.is-flowing .pf-badge { animation: pfPop .62s ease both; animation-delay: calc(var(--i) * var(--pf-hit-delay)); }
@keyframes pfDraw {
  0%, 8% { transform: scaleX(0); }
  32%, 40% { transform: scaleX(.3333); }
  64%, 72% { transform: scaleX(.6667); }
  96%, 100% { transform: scaleX(1); }
}
@keyframes pfTravel {
  0% { left: 0; opacity: 0; }
  8% { left: 0; opacity: 1; }
  32%, 40% { left: 33.333%; opacity: 1; }
  64%, 72% { left: 66.667%; opacity: 1; }
  96% { left: 100%; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
@keyframes pfRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes pfPop { 0% { transform: scale(.7); background: var(--white); color: var(--accent); } 55% { transform: scale(1.14); } 100% { transform: scale(1); background: var(--accent); color: var(--ink); } }

/* Mobile: line rotates to a vertical timeline */
@media (max-width: 700px) {
  .pf-steps { grid-template-columns: 1fr; gap: 26px; max-width: 440px; margin: 0 auto; }
  .pf-step { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: start; text-align: left; padding: 0; }
  .pf-badge { margin: 0; }
  .pf-rail { top: 32px; bottom: 32px; left: 32px; width: 3px; height: auto; transform: none; }
  .pf-prog { transform: scaleY(0); transform-origin: top; }
  .pf-comet { left: 50%; top: 0; }
  .pf-flow.is-flowing .pf-prog { animation: pfDrawY var(--pf-flow-duration) ease-in-out forwards; }
  .pf-flow.is-flowing .pf-comet { animation: pfTravelY var(--pf-flow-duration) ease-in-out forwards; }
  @keyframes pfDrawY {
    0%, 8% { transform: scaleY(0); }
    32%, 40% { transform: scaleY(.3333); }
    64%, 72% { transform: scaleY(.6667); }
    96%, 100% { transform: scaleY(1); }
  }
  @keyframes pfTravelY {
    0% { top: 0; opacity: 0; }
    8% { top: 0; opacity: 1; }
    32%, 40% { top: 33.333%; opacity: 1; }
    64%, 72% { top: 66.667%; opacity: 1; }
    96% { top: 100%; opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
}

/* Respect reduced motion: show the finished state, no movement */
@media (prefers-reduced-motion: reduce) {
  .pf-track { opacity: 1; }
  .pf-prog { transform: none !important; }
  .pf-comet { display: none; }
  .pf-badge { background: var(--accent); color: var(--ink); }
  .pf-step { opacity: 1; }
}

/* Focused homepage concept */
.brand {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.brand-logo {
  height: clamp(52px, 4.6vw, 72px);
  max-width: min(50vw, 228px);
  filter: none;
}

.site-footer .brand-logo {
  height: clamp(62px, 7vw, 88px);
  max-width: min(72vw, 280px);
}

.home-hero {
  position: relative;
  min-height: clamp(560px, 72vh, 780px);
  overflow: hidden;
  color: var(--white);
  background: #041326;
}

.home-hero-slides,
.home-hero-slide {
  position: absolute;
  inset: 0;
}

.home-hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.home-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.home-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 17, 35, 0.92) 0%, rgba(4, 24, 48, 0.78) 34%, rgba(4, 24, 48, 0.28) 72%, rgba(3, 17, 35, 0.46) 100%),
    linear-gradient(0deg, rgba(3, 17, 35, 0.58), rgba(3, 17, 35, 0.08) 46%, rgba(3, 17, 35, 0.32));
}

.home-hero-panel {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 6.5vw, 112px);
  bottom: clamp(42px, 8vw, 112px);
  max-width: 680px;
}

.home-hero .eyebrow,
.home-lead-banner .eyebrow,
.home-quote-bridge .eyebrow {
  color: #d8ad45;
}

.home-hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
}

.home-hero-panel > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #e7edf6;
  font-size: clamp(17px, 1.45vw, 21px);
}

.home-hero-secondary {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.42);
}

.home-lead-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 4.6vw, 78px) clamp(22px, 5vw, 76px) clamp(34px, 4vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(45, 88, 130, 0.38), transparent 32%),
    radial-gradient(circle at 76% 18%, rgba(199, 155, 52, 0.11), transparent 30%),
    linear-gradient(135deg, #031123 0%, #082b50 48%, #020c19 100%);
  border-top: 1px solid rgba(199, 155, 52, 0.12);
  border-bottom: 1px solid rgba(199, 155, 52, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.home-lead-ghost {
  position: absolute;
  right: clamp(-28px, 3vw, 72px);
  top: clamp(18px, 4vw, 48px);
  width: min(33vw, 480px);
  color: rgba(199, 155, 52, 0.14);
  pointer-events: none;
}

.home-lead-ghost svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(2, 12, 25, 0.22));
}

.home-lead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(34px, 4.2vw, 76px);
  align-items: start;
  max-width: 1760px;
  margin: 0 auto;
}

.home-lead-banner .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.19em;
}

.home-lead-banner .eyebrow::after {
  content: "";
  width: 84px;
  height: 2px;
  background: rgba(199, 155, 52, 0.86);
}

.home-lead-grid h2 {
  max-width: 1180px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(40px, 3.65vw, 64px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.home-lead-grid p:not(.eyebrow) {
  max-width: 650px;
  margin: 10px 0 0;
  color: #dfe7f2;
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.62;
}

.home-service-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  max-width: 1760px;
  margin: clamp(40px, 4.2vw, 64px) auto 0;
  border-top: 1px solid rgba(199, 155, 52, 0.46);
  border-bottom: 1px solid rgba(199, 155, 52, 0.16);
}

.home-service-strip a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 108px;
  padding: 22px 24px;
  color: #f5f7fb;
  border-right: 1px solid rgba(199, 155, 52, 0.26);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: 0;
}

.home-service-strip a:hover,
.home-service-strip a:focus-visible {
  color: var(--white);
  background: rgba(199, 155, 52, 0.08);
}

.home-service-strip span {
  white-space: nowrap;
}

.home-service-strip a:last-child {
  border-right: 0;
}

.service-line-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  color: var(--gold);
}

.home-quote-bridge {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 6.2vw, 96px) clamp(22px, 5vw, 76px);
  color: var(--white);
  background:
    radial-gradient(circle at 16% 0%, rgba(45, 88, 130, 0.34), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(199, 155, 52, 0.13), transparent 30%),
    linear-gradient(135deg, #031123 0%, #082b50 48%, #020c19 100%);
  border-top: 1px solid rgba(199, 155, 52, 0.12);
  border-bottom: 1px solid rgba(199, 155, 52, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.home-quote-bridge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(92% 74% at 72% 18%, #000 0%, transparent 78%);
  mask-image: radial-gradient(92% 74% at 72% 18%, #000 0%, transparent 78%);
  opacity: 0.48;
  pointer-events: none;
}

.quote-bridge-inner {
  position: relative;
  z-index: 1;
  max-width: 1680px;
  margin: 0 auto;
}

.quote-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(600px, 1.05fr);
  gap: clamp(32px, 4.5vw, 76px);
  align-items: center;
}

.quote-bridge-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.19em;
}

.quote-bridge-copy .eyebrow::after {
  content: "";
  width: 76px;
  height: 2px;
  background: rgba(199, 155, 52, 0.86);
}

.quote-bridge-copy h1,
.quote-bridge-copy h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.25vw, 70px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.quote-bridge-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: #dfe7f2;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.62;
}

.quote-bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quote-bridge-panel {
  display: grid;
  grid-template-columns: minmax(360px, 1.16fr) minmax(300px, 0.84fr);
  gap: 16px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(3, 17, 35, 0.58);
  border: 1px solid rgba(199, 155, 52, 0.38);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(1, 10, 22, 0.36);
}

.quote-bridge-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #071b31;
}

.quote-bridge-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.quote-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-steps li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-steps li:first-child {
  padding-top: 4px;
}

.quote-steps li:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

.quote-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 5px rgba(199, 155, 52, 0.14);
}

.quote-steps strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.08;
}

.quote-steps p {
  margin: 7px 0 0;
  color: #bfd0e4;
  font-size: 14px;
  line-height: 1.45;
}

.quote-builder-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  grid-template-areas:
    "intro form"
    "process process";
  gap: clamp(18px, 2.6vw, 36px);
  max-width: 1680px;
  margin: 0 auto;
}

.quote-builder-intro,
.quote-process-card,
.home-quote-form {
  border: 1px solid rgba(199, 155, 52, 0.36);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(1, 10, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.quote-builder-intro {
  position: relative;
  grid-area: intro;
  display: grid;
  align-self: start;
  gap: clamp(18px, 2.4vw, 34px);
  align-content: start;
  min-height: 0;
  overflow: hidden;
  padding: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(150deg, rgba(4, 23, 45, 0.86), rgba(8, 43, 80, 0.56)),
    rgba(3, 17, 35, 0.62);
}

.quote-builder-intro::after {
  content: "";
  position: absolute;
  right: -98px;
  bottom: -120px;
  width: min(56vw, 520px);
  height: 390px;
  border: 1px solid rgba(240, 210, 122, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(0deg, rgba(3, 17, 35, 0.28), rgba(3, 17, 35, 0.28)),
    url("/assets/images/windows-doors-composite-upvc.webp") center / cover no-repeat;
  opacity: 0.24;
  transform: rotate(-2deg);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.32);
}

.quote-logo-card {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 370px);
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.quote-logo-card img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28));
}

.quote-builder-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.quote-builder-copy .eyebrow,
.home-quote-form-head .eyebrow,
.quote-process-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: #f0d27a;
  font-size: 13px;
  letter-spacing: 0.18em;
}

.quote-builder-copy .eyebrow::after,
.home-quote-form-head .eyebrow::after,
.quote-process-head .eyebrow::after {
  content: "";
  width: 68px;
  height: 2px;
  background: rgba(240, 210, 122, 0.86);
}

.quote-builder-copy h1,
.quote-builder-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(44px, 4.5vw, 66px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.quote-builder-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 18px 0 0;
  color: #dce7f4;
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.58;
}

.home-quote-form {
  grid-area: form;
  display: grid;
  gap: 18px;
  align-self: stretch;
  padding: clamp(24px, 2.5vw, 34px);
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 234, 0.97));
}

.home-quote-form-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
}

.home-quote-form-head .eyebrow {
  color: var(--accent-dark);
}

.home-quote-form-head .eyebrow::after {
  background: var(--gold);
}

.home-quote-form-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.98;
}

.home-quote-form-head p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #5d6d82;
  font-weight: 700;
}

.home-quote-form-head > span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 14px;
  color: var(--ink);
  background: linear-gradient(145deg, #f0d27a, #c79b34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(199, 155, 52, 0.22);
}

.quote-service-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.quote-service-picker legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: #263a55;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-service-picker label {
  position: relative;
}

.quote-service-picker input {
  position: absolute;
  inset: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-service-picker span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(199, 155, 52, 0.42);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.quote-service-picker input:checked + span {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 5px 0 0 var(--gold);
}

.quote-service-picker input:focus-visible + span {
  outline: 3px solid rgba(199, 155, 52, 0.35);
  outline-offset: 3px;
}

.home-quote-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-quote-fields label {
  display: grid;
  gap: 8px;
  color: #263a55;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-quote-fields input,
.home-quote-fields textarea {
  width: 100%;
  min-height: 56px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d4dbe5;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
}

.home-quote-fields input {
  padding: 0 14px;
}

.home-quote-fields textarea {
  min-height: 126px;
  padding: 14px;
  resize: vertical;
}

.home-quote-field-full {
  grid-column: 1 / -1;
}

.home-photo-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  padding: 14px 16px;
  color: #31445e;
  background: #fbfaf6;
  border: 1px dashed rgba(199, 155, 52, 0.5);
  border-radius: 8px;
}

.home-photo-note::before {
  content: "";
  grid-row: span 2;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(199, 155, 52, 0.56);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(240, 210, 122, 0.42), rgba(199, 155, 52, 0.16));
}

.home-photo-note strong {
  font-size: 15px;
  line-height: 1.2;
}

.home-photo-note span {
  color: #69788c;
  font-size: 14px;
  line-height: 1.35;
}

.home-quote-send {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.home-quote-send p {
  margin: 0;
  color: #647287;
  font-size: 14px;
  line-height: 1.4;
}

.home-quote-send .button {
  min-width: 220px;
  min-height: 58px;
  font-size: 16px;
}

.home-quote-form .form-status {
  min-height: 20px;
  margin: 0;
}

.quote-process-card {
  grid-area: process;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(3, 17, 35, 0.5);
}

.quote-process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.quote-process-head .eyebrow {
  margin: 0;
}

.quote-process-head p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
  color: #bfd0e4;
  font-weight: 750;
  text-align: right;
}

.quote-process-flow {
  --accent: var(--gold);
  --green: #061a33;
  --paper: #082747;
  margin-top: 26px;
}

.quote-process-flow .pf-track {
  opacity: 0.42;
  background: rgba(240, 210, 122, 0.34);
}

.quote-process-flow .pf-prog {
  background: linear-gradient(90deg, #c79b34, #f0d27a);
}

.quote-process-flow .pf-comet {
  background: #f0d27a;
  border-color: #061a33;
  box-shadow: 0 0 0 5px rgba(240, 210, 122, 0.16), 0 0 24px rgba(240, 210, 122, 0.62);
}

.quote-process-flow .pf-badge {
  width: 76px;
  height: 76px;
  color: #061a33;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 0 8px rgba(199, 155, 52, 0.12);
}

.quote-process-flow .pf-num {
  top: -7px;
  right: -7px;
  width: 28px;
  height: 28px;
  background: #061a33;
  border-color: #f7f6f1;
  font-size: 12px;
}

.quote-process-flow .pf-step h3 {
  color: var(--white);
  font-size: clamp(18px, 1.6vw, 25px);
}

.quote-process-flow .pf-step p {
  max-width: 300px;
  margin: 0 auto;
  color: #bfd0e4;
}

@media (max-width: 1180px) {
  .quote-builder-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "form"
      "process";
  }

  .quote-builder-intro {
    min-height: auto;
  }

  .quote-builder-copy h1,
  .quote-builder-copy h2,
  .quote-builder-copy p:not(.eyebrow) {
    max-width: 900px;
  }

  .home-quote-form {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .quote-builder-shell {
    gap: 14px;
  }

  .quote-builder-intro,
  .quote-process-card,
  .home-quote-form {
    border-radius: 10px;
  }

  .quote-builder-intro {
    padding: 22px 18px;
  }

  .quote-builder-intro::after {
    right: -180px;
    bottom: -132px;
    width: 420px;
    height: 300px;
    opacity: 0.16;
  }

  .quote-logo-card {
    width: min(100%, 290px);
  }

  .quote-builder-copy h1,
  .quote-builder-copy h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .quote-builder-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .quote-process-card {
    padding: 22px 18px;
  }

  .quote-process-head {
    display: block;
  }

  .quote-process-head p:not(.eyebrow) {
    margin-top: 8px;
    text-align: left;
  }

  .quote-process-flow {
    margin-top: 18px;
  }

  .quote-process-flow .pf-steps {
    max-width: none;
    gap: 18px;
  }

  .quote-process-flow .pf-step {
    grid-template-columns: 54px 1fr;
    gap: 13px;
  }

  .quote-process-flow .pf-rail {
    top: 27px;
    bottom: 27px;
    left: 27px;
  }

  .quote-process-flow .pf-badge {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .quote-process-flow .pf-ic {
    width: 23px;
    height: 23px;
  }

  .quote-process-flow .pf-num {
    width: 23px;
    height: 23px;
    font-size: 11px;
  }

  .quote-process-flow .pf-step h3 {
    grid-column: 2;
    margin-bottom: 4px;
    font-size: 18px;
  }

  .quote-process-flow .pf-step p {
    grid-column: 2;
    max-width: none;
    margin: 0;
    font-size: 14px;
    line-height: 1.42;
  }

  .home-quote-form {
    padding: 20px 16px;
  }

  .home-quote-form-head {
    grid-template-columns: 1fr;
  }

  .home-quote-form-head > span {
    width: auto;
    height: auto;
    min-height: 42px;
    justify-self: start;
    padding: 10px 14px;
    border-radius: 8px;
  }

  .quote-service-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-quote-fields,
  .home-quote-send {
    grid-template-columns: 1fr;
  }

  .home-quote-send .button {
    width: 100%;
  }
}

.area-page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(38, 96, 154, 0.32), transparent 34%),
    linear-gradient(135deg, #061a33 0%, #08264a 54%, #132c3f 100%);
  padding: clamp(72px, 8vw, 112px) clamp(18px, 5vw, 56px);
  border-bottom: 1px solid rgba(199, 155, 52, 0.28);
}

.area-page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 46px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.area-page-lead h1 {
  max-width: 760px;
  margin: 12px 0 22px;
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.area-page-lead > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.68;
}

.area-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-page-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #f4d57a;
  background: rgba(2, 13, 27, 0.34);
  border: 1px solid rgba(199, 155, 52, 0.48);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.area-page-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 12px;
  min-height: 540px;
}

.area-page-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #061a33;
  border: 1px solid rgba(199, 155, 52, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.area-page-photo--main {
  grid-row: span 2;
}

.area-page-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 26, 51, 0), rgba(6, 26, 51, 0.56));
  pointer-events: none;
}

.area-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-page-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(2, 13, 27, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.area-page-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.43fr);
  gap: 34px;
  align-items: start;
}

.area-page-story {
  max-width: 850px;
}

.area-page-story h2 {
  max-width: 760px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 820;
  line-height: 1.04;
}

.area-page-story p {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.78;
}

.area-page-story p + p {
  margin-top: 18px;
}

.area-page-focus {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(199, 155, 52, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.area-page-focus h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
}

.area-page-focus ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.area-page-focus li {
  position: relative;
  min-height: 28px;
  padding-left: 38px;
  color: var(--ink);
  font-weight: 780;
  line-height: 1.42;
}

.area-page-focus li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(145deg, #f2cf67, #b98b22);
  border: 1px solid rgba(117, 88, 23, 0.28);
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(181, 139, 43, 0.24);
}

.area-page-focus li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 10px;
  height: 5px;
  border-bottom: 3px solid #061a33;
  border-left: 3px solid #061a33;
  transform: rotate(-45deg);
}

.area-page-focus .button {
  justify-content: center;
  width: 100%;
}

@media (max-width: 1120px) {
  .area-page-hero__inner,
  .area-page-content {
    grid-template-columns: 1fr;
  }

  .area-page-lead h1 {
    font-size: 58px;
  }

  .area-page-gallery {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .area-page-hero {
    padding: 54px 18px;
  }

  .area-page-lead h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .area-page-lead > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.62;
  }

  .area-page-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
  }

  .area-page-photo--main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .area-page-photo:not(.area-page-photo--main) {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .area-page-photo figcaption {
    display: none;
  }

  .area-page-story h2 {
    font-size: 34px;
  }

  .area-page-focus {
    padding: 22px;
  }
}

.area-local-page {
  padding: clamp(20px, 3vw, 34px) clamp(18px, 5vw, 56px) clamp(50px, 7vw, 88px);
  background:
    linear-gradient(180deg, rgba(232, 237, 243, 0.6), rgba(247, 246, 241, 0) 280px),
    var(--paper);
}

.area-local-page > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.area-proof {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 66px;
  padding: 14px clamp(18px, 3vw, 28px);
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(135deg, #031123, #08264a);
  border: 1px solid rgba(199, 155, 52, 0.52);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(6, 26, 51, 0.12);
}

.area-proof span,
.area-proof strong {
  color: #f0c858;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.area-proof strong {
  justify-self: end;
  padding: 8px 18px;
  border: 1px solid rgba(199, 155, 52, 0.72);
  border-radius: 999px;
}

.area-local-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  margin-top: 18px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 26, 51, 0.12);
  border-radius: 10px;
  box-shadow: 0 22px 62px rgba(6, 26, 51, 0.1);
}

.area-local-hero__copy {
  display: grid;
  align-content: center;
}

.area-local-hero .eyebrow,
.area-coverage-heading .eyebrow,
.area-routes-main .eyebrow,
.area-quote-compact .eyebrow {
  color: #9b6d0d;
}

.area-local-hero h1 {
  max-width: 650px;
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 860;
  line-height: 0.98;
}

.area-local-hero__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.7;
}

.area-page-tags--local {
  margin-top: 20px;
}

.area-page-tags--local span {
  min-height: 34px;
  color: var(--ink);
  background: #fffaf0;
  border-color: rgba(199, 155, 52, 0.62);
  font-size: 13px;
}

.area-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  margin-top: 24px;
}

.area-local-actions .button.primary {
  min-width: 230px;
  color: var(--white);
  background: #061a33;
  border-color: #061a33;
  box-shadow: 0 16px 34px rgba(6, 26, 51, 0.18);
}

.area-local-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  font-weight: 900;
}

.area-local-inline-link__icon {
  width: 17px;
  height: 17px;
}

.area-local-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  background: #fbf8ef;
  border: 1px solid rgba(199, 155, 52, 0.28);
  border-radius: 8px;
}

.area-local-note__icon {
  width: 42px;
  height: 42px;
}

.area-local-note strong {
  display: block;
  margin-bottom: 4px;
}

.area-local-note p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

.area-local-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(220px, 0.78fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 10px;
  min-height: 520px;
}

.area-local-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: 8px;
}

.area-local-photo--main {
  grid-row: span 2;
}

.area-local-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 17, 35, 0.58));
  pointer-events: none;
}

.area-local-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-local-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  padding: 9px 10px;
  color: var(--white);
  background: rgba(3, 17, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.area-coverage-overview,
.area-routes-section,
.area-quote-compact {
  margin-top: 24px;
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(6, 26, 51, 0.1);
  border-radius: 10px;
  box-shadow: 0 18px 46px rgba(6, 26, 51, 0.07);
}

.area-coverage-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.area-coverage-heading h2,
.area-routes-main h2,
.area-quote-compact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 820;
  line-height: 1.04;
}

.area-coverage-heading p:not(.eyebrow),
.area-routes-main > p,
.area-quote-compact__copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.area-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.area-coverage-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 156px;
  padding-right: 22px;
  border-right: 1px solid rgba(6, 26, 51, 0.12);
}

.area-coverage-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.area-coverage-icon {
  width: 48px;
  height: 48px;
}

.area-coverage-grid h3,
.area-local-notes h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.16;
}

.area-coverage-grid p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.72;
}

.area-routes-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.36fr);
  gap: 24px;
  align-items: stretch;
}

.area-service-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.area-service-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 126px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(199, 155, 52, 0.34);
  border-radius: 8px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.area-service-link:hover,
.area-service-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(199, 155, 52, 0.72);
  box-shadow: 0 14px 34px rgba(6, 26, 51, 0.09);
}

.area-service-link__icon {
  width: 46px;
  height: 46px;
}

.area-service-link strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.2;
}

.area-service-link small {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.area-service-link__arrow {
  width: 16px;
  height: 16px;
}

.area-local-notes {
  display: grid;
  align-content: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(6, 26, 51, 0.1);
  border-radius: 8px;
}

.area-local-notes h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 12px;
  background: var(--gold);
}

.area-local-notes ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.area-local-notes li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-2);
  font-weight: 700;
  line-height: 1.55;
}

.area-local-notes li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 21px;
  height: 21px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.area-local-notes li::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 6px;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.area-local-notes img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 8px;
}

.area-nearby-band {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr) minmax(240px, 0.28fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, #031123, #08264a);
  border: 1px solid rgba(199, 155, 52, 0.55);
  border-radius: 10px;
}

.area-nearby-band > div:first-child {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.area-nearby-band__icon {
  width: 48px;
  height: 48px;
}

.area-nearby-band h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.area-nearby-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.area-nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-nearby-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(199, 155, 52, 0.72);
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
}

.area-nearby__pin,
.area-nearby__arrow {
  width: 16px;
  height: 16px;
}

.area-nearby-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  text-align: center;
}

.area-nearby-actions .button {
  color: var(--ink);
}

.area-nearby-actions__arrow {
  width: 18px;
  height: 18px;
  filter: brightness(0);
}

.area-nearby-actions > a:not(.button) {
  color: #f0c858;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.area-quote-compact {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: start;
}

.area-quote-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #fbf8ef;
  border: 1px solid rgba(199, 155, 52, 0.3);
  border-radius: 8px;
}

.area-quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.area-quote-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.area-quote-form input,
.area-quote-form textarea {
  width: 100%;
  border: 1px solid rgba(6, 26, 51, 0.18);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.area-quote-form textarea {
  resize: vertical;
}

.area-quote-form__full {
  grid-column: 1 / -1;
}

.area-quote-form__send {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.area-quote-form__send p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .area-local-hero,
  .area-routes-section,
  .area-quote-compact {
    grid-template-columns: 1fr;
  }

  .area-local-collage {
    grid-template-columns: 1.18fr 0.82fr;
  }

  .area-nearby-band {
    grid-template-columns: 1fr;
  }

  .area-nearby-actions {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .area-proof,
  .area-coverage-grid,
  .area-service-route-grid {
    grid-template-columns: 1fr;
  }

  .area-proof strong {
    justify-self: start;
  }

  .area-local-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
  }

  .area-local-photo--main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .area-local-photo:not(.area-local-photo--main) {
    aspect-ratio: 1;
  }

  .area-coverage-grid article {
    min-height: 0;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 26, 51, 0.12);
  }

  .area-coverage-grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .area-quote-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .area-local-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .area-local-hero,
  .area-coverage-overview,
  .area-routes-section,
  .area-nearby-band,
  .area-quote-compact {
    padding: 20px;
  }

  .area-local-actions,
  .area-quote-form__send {
    align-items: stretch;
    flex-direction: column;
  }

  .area-local-actions .button,
  .area-nearby-actions .button,
  .area-quote-form__send .button {
    width: 100%;
  }

  .area-local-note,
  .area-coverage-grid article,
  .area-service-link,
  .area-nearby-band > div:first-child {
    grid-template-columns: 1fr;
  }

  .area-local-photo figcaption {
    display: none;
  }
}

.area-editorial-page {
  background: var(--paper);
}

.area-editorial-hero {
  padding: clamp(64px, 8vw, 120px) clamp(18px, 5vw, 56px) clamp(52px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 246, 241, 0.94)),
    var(--paper);
  border-bottom: 1px solid rgba(6, 26, 51, 0.08);
}

.area-editorial-hero__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.area-editorial-hero .eyebrow,
.area-editorial-kicker .eyebrow,
.area-editorial-quote .eyebrow {
  color: var(--accent-dark);
}

.area-editorial-hero h1 {
  max-width: 980px;
  margin: 12px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(46px, 6.4vw, 86px);
  font-weight: 860;
  line-height: 0.98;
  letter-spacing: 0;
}

.area-editorial-hero p:not(.eyebrow) {
  max-width: 790px;
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.72;
}

.area-editorial-body {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 56px);
}

.area-editorial-kicker {
  position: sticky;
  top: 138px;
}

.area-editorial-kicker h2,
.area-context-image__head h2,
.area-editorial-quote__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 820;
  line-height: 1.04;
}

.area-editorial-copy {
  max-width: 820px;
}

.area-editorial-copy::after {
  content: "";
  display: block;
  clear: both;
}

.area-editorial-copy p {
  margin: 0 0 24px;
  color: #243a55;
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.86;
}

.area-editorial-copy p:last-child {
  margin-bottom: 0;
}

.area-editorial-copy p:first-of-type::first-letter {
  float: left;
  padding: 6px 10px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 860;
  line-height: 0.78;
}

.area-editorial-figure {
  width: min(42%, 360px);
  margin: 4px 0 18px;
}

.area-editorial-figure--right {
  float: right;
  margin-left: clamp(22px, 3vw, 38px);
}

.area-editorial-figure--left {
  float: left;
  margin-right: clamp(22px, 3vw, 38px);
}

.area-editorial-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 26, 51, 0.14);
}

.area-editorial-figure figcaption {
  margin-top: 10px;
  color: #667386;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.area-context-image {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px) clamp(64px, 8vw, 112px);
}

.area-context-image__head {
  max-width: 860px;
  margin-bottom: 28px;
}

.area-context-image figure {
  margin: 0;
}

.area-context-image img {
  width: 100%;
  aspect-ratio: 16 / 7.8;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 68px rgba(6, 26, 51, 0.16);
}

.area-context-image figcaption {
  max-width: 860px;
  margin: 16px 0 0;
  color: #5d6d82;
  font-size: 15px;
  line-height: 1.7;
}

.area-editorial-page .home-services {
  border-top: 1px solid rgba(6, 26, 51, 0.08);
  border-bottom: 1px solid rgba(6, 26, 51, 0.08);
}

.area-editorial-quote {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, #031123, #08264a);
}

.area-editorial-quote__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.43fr) minmax(520px, 0.57fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.area-editorial-quote__intro {
  max-width: 560px;
}

.area-editorial-quote .eyebrow {
  color: #f0d27a;
}

.area-editorial-quote__intro p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #dce7f4;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.7;
}

.area-editorial-quote .home-quote-form {
  grid-area: auto;
}

@media (max-width: 960px) {
  .area-editorial-body,
  .area-editorial-quote__inner {
    grid-template-columns: 1fr;
  }

  .area-editorial-kicker {
    position: static;
  }

  .area-context-image img {
    aspect-ratio: 16 / 10;
  }

  .area-editorial-figure {
    width: min(48%, 340px);
  }
}

@media (max-width: 640px) {
  .area-editorial-hero {
    padding-top: 48px;
  }

  .area-editorial-body {
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .area-editorial-figure,
  .area-editorial-figure--right,
  .area-editorial-figure--left {
    float: none;
    width: 100%;
    margin: 0 0 22px;
  }

  .area-editorial-figure img {
    aspect-ratio: 16 / 10;
  }

  .area-editorial-copy p:first-of-type::first-letter {
    float: none;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
  }
}

.home-services {
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 56px);
  background: #f2f5f9;
}

.home-services-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.home-services-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 760;
  line-height: 1;
}

.home-services-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
}

.svc-carousel {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.svc-stage {
  position: relative;
  min-height: clamp(330px, 33vw, 430px);
}

.svc-card {
  position: absolute;
  top: 18px;
  left: 50%;
  display: grid;
  align-content: end;
  width: clamp(280px, 33vw, 460px);
  height: clamp(285px, 29vw, 390px);
  overflow: hidden;
  padding: 0;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: #061a33;
  border: 1px solid rgba(6, 26, 51, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(6, 26, 51, 0.16);
  opacity: 0;
  transform: translateX(-50%) scale(0.82);
  transition: opacity 0.42s ease, transform 0.42s ease, filter 0.42s ease;
  pointer-events: none;
}

.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 17, 35, 0.78), rgba(3, 17, 35, 0.02) 60%);
}

.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card span,
.svc-card strong {
  position: relative;
  z-index: 1;
  margin-left: 22px;
  margin-right: 22px;
}

.svc-card span {
  margin-bottom: 6px;
  color: #d8ad45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-card strong {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 760;
  line-height: 1;
}

.svc-card.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.svc-card.is-prev,
.svc-card.is-next {
  z-index: 2;
  opacity: 0.36;
  filter: saturate(0.8);
  pointer-events: auto;
}

.svc-card.is-prev {
  transform: translateX(calc(-50% - min(32vw, 430px))) scale(0.86);
}

.svc-card.is-next {
  transform: translateX(calc(-50% + min(32vw, 430px))) scale(0.86);
}

.svc-card.is-before,
.svc-card.is-after {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.65);
  pointer-events: none;
}

.svc-card.is-before {
  transform: translateX(calc(-50% - min(48vw, 660px))) scale(0.74);
}

.svc-card.is-after {
  transform: translateX(calc(-50% + min(48vw, 660px))) scale(0.74);
}

.svc-nav {
  position: absolute;
  z-index: 5;
  top: 42%;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 24px rgba(6, 26, 51, 0.12);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.svc-nav--prev {
  left: 4px;
}

.svc-nav--next {
  right: 4px;
}

.svc-detail-wrap {
  position: relative;
  max-width: 860px;
  min-height: 270px;
  margin: -8px auto 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 26, 51, 0.09);
}

.svc-detail {
  display: none;
}

.svc-detail.is-active {
  display: grid;
  gap: 10px;
}

.svc-detail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 760;
  line-height: 1;
}

.svc-detail p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.svc-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
  width: min(100%, 780px);
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
}

.svc-chips li {
  position: relative;
  min-height: 0;
  padding-left: 30px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.32;
  text-align: left;
}

.svc-chips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(199, 155, 52, 0.52);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(240, 210, 122, 0.42), rgba(199, 155, 52, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 8px 18px rgba(1, 10, 22, 0.08);
}

.svc-chips li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.43em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #061a33;
  border-bottom: 2px solid #061a33;
  transform: rotate(-45deg);
}

.svc-detail .text-link {
  justify-self: center;
  margin-top: 18px;
  min-height: 48px;
  padding: 13px 22px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 7px;
  box-shadow: 0 14px 28px rgba(6, 26, 51, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.svc-detail .text-link:hover,
.svc-detail .text-link:focus-visible {
  color: var(--ink);
  background: #d8ad45;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 26, 51, 0.18);
}

.home-gallery-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 106px) clamp(18px, 5vw, 56px);
  background:
    radial-gradient(circle at 86% 16%, rgba(199, 155, 52, 0.11), transparent 27%),
    linear-gradient(180deg, #f7f6f1 0%, #ffffff 58%, #f2f5f9 100%);
  border-top: 1px solid rgba(6, 26, 51, 0.08);
  border-bottom: 1px solid rgba(6, 26, 51, 0.08);
}

.home-gallery-preview__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 4.4vw, 74px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.home-gallery-preview__copy {
  max-width: 560px;
}

.home-gallery-preview__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--accent-dark);
}

.home-gallery-preview__copy .eyebrow::after {
  content: "";
  width: 68px;
  height: 2px;
  background: var(--gold);
}

.home-gallery-preview__copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-gallery-preview__copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
}

.home-gallery-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 30px;
}

.home-gallery-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(150px, 0.66fr));
  grid-auto-rows: clamp(148px, 12.8vw, 210px);
  gap: clamp(12px, 1.2vw, 18px);
}

.home-gallery-tile {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #061a33;
  border: 1px solid rgba(6, 26, 51, 0.18);
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(6, 26, 51, 0.14);
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.home-gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.home-gallery-tile.is-featured {
  grid-row: span 2;
}

.home-gallery-tile:hover,
.home-gallery-tile:focus-visible {
  color: var(--white);
  border-color: rgba(199, 155, 52, 0.78);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(6, 26, 51, 0.2);
}

.home-gallery-tile:hover img,
.home-gallery-tile:focus-visible img {
  transform: scale(1.045);
}

.home-area-map {
  position: relative;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 56px);
  background: linear-gradient(180deg, #f2f5f9 0%, var(--paper) 100%);
}

.home-area-map__heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-area-map__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 760;
  line-height: 0.98;
}

.home-area-map__heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.area-map-card {
  position: relative;
  max-width: var(--max);
  min-height: clamp(620px, 54vw, 760px);
  margin: 0 auto;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 44% 46%, rgba(199, 155, 52, 0.18), transparent 24%),
    radial-gradient(circle at 20% 18%, rgba(95, 208, 255, 0.13), transparent 24%),
    linear-gradient(145deg, #031123 0%, #061a33 48%, #08264a 100%);
  border: 1px solid rgba(199, 155, 52, 0.28);
  border-radius: 16px;
  box-shadow: 0 34px 90px rgba(6, 26, 51, 0.22);
}

.area-map-card::before,
.area-map-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.area-map-card::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 35, 0.02), rgba(3, 17, 35, 0.3) 72%, rgba(3, 17, 35, 0.62)),
    radial-gradient(circle at 34% 46%, transparent 0 26%, rgba(3, 17, 35, 0.22) 62%);
}

.area-map-card::after {
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}

.area-map-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.area-map-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
}

.area-map-glow--one {
  left: 12%;
  top: 18%;
  width: 280px;
  height: 220px;
  background: rgba(95, 208, 255, 0.16);
}

.area-map-glow--two {
  left: 40%;
  top: 48%;
  width: 330px;
  height: 260px;
  background: rgba(199, 155, 52, 0.14);
}

.area-map-grid {
  position: absolute;
  left: 5%;
  top: 12%;
  width: 64%;
  height: 66%;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 28px;
  transform: perspective(900px) rotateX(58deg) rotateZ(-7deg);
  transform-origin: center;
}

.area-map-county {
  position: absolute;
  left: 12%;
  top: 9%;
  width: 52%;
  height: 68%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 55%),
    linear-gradient(180deg, rgba(95, 208, 255, 0.06), rgba(199, 155, 52, 0.045)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(199, 155, 52, 0.42);
  border-radius: 48% 52% 46% 54% / 36% 40% 60% 64%;
  transform: perspective(920px) rotateX(52deg) rotateZ(-8deg);
  transform-origin: center;
  box-shadow:
    inset 0 0 0 16px rgba(255, 255, 255, 0.025),
    inset 0 -38px 54px rgba(3, 17, 35, 0.18),
    0 28px 70px rgba(3, 17, 35, 0.36),
    0 0 84px rgba(199, 155, 52, 0.1);
}

.area-map-county::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(95, 208, 255, 0.16);
  border-radius: inherit;
}

.area-map-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.area-route {
  fill: none;
  stroke: rgba(199, 155, 52, 0.25);
  stroke-linecap: round;
  stroke-width: 0.34;
  vector-effect: non-scaling-stroke;
}

.area-route-energy {
  fill: none;
  stroke: transparent;
  stroke-dasharray: 3 6;
  stroke-linecap: round;
  stroke-width: 0.78;
  vector-effect: non-scaling-stroke;
}

.area-route-energy.is-active {
  stroke: url("#area-route-active");
  animation: areaRouteFlow 1.55s linear infinite, areaRouteBreathe 2.8s ease-in-out infinite;
  filter:
    drop-shadow(0 0 4px rgba(240, 210, 122, 0.9))
    drop-shadow(0 0 13px rgba(95, 208, 255, 0.56));
}

.area-map-base-ring {
  position: absolute;
  left: 45%;
  top: 49%;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(199, 155, 52, 0.26) 0 16%, transparent 17% 100%);
  border: 1px solid rgba(199, 155, 52, 0.5);
  transform: translate(-50%, -50%);
  animation: areaRingBreathe 3.2s ease-in-out infinite;
}

.area-pin {
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  display: inline-grid;
  gap: 1px;
  min-width: 126px;
  padding: 9px 11px 9px 34px;
  color: #f6efe4;
  background: rgba(3, 17, 35, 0.64);
  border: 1px solid rgba(199, 155, 52, 0.28);
  border-radius: 9px;
  box-shadow: 0 16px 34px rgba(3, 17, 35, 0.2);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.area-pin::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow:
    0 0 0 5px rgba(199, 155, 52, 0.15),
    0 0 20px rgba(199, 155, 52, 0.55);
  transform: translateY(-50%);
}

.area-pin.is-base::before {
  background: #f0d27a;
}

.area-pin span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.05;
}

.area-pin small {
  color: rgba(246, 239, 228, 0.66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.area-pin:hover,
.area-pin:focus-visible,
.area-pin.is-active {
  z-index: 4;
  color: var(--ink);
  background: var(--gold);
  border-color: rgba(240, 210, 122, 0.94);
  box-shadow:
    0 20px 42px rgba(3, 17, 35, 0.3),
    0 0 38px rgba(199, 155, 52, 0.36);
  transform: translate(-50%, -54%);
}

.area-pin:hover small,
.area-pin:focus-visible small,
.area-pin.is-active small {
  color: rgba(6, 26, 51, 0.78);
}

.area-map-panel {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: clamp(18px, 3vw, 36px);
  width: min(34vw, 430px);
  padding: clamp(20px, 2.4vw, 30px);
  background: linear-gradient(180deg, rgba(3, 17, 35, 0.84), rgba(6, 26, 51, 0.72));
  border: 1px solid rgba(199, 155, 52, 0.3);
  border-radius: 13px;
  box-shadow:
    0 28px 70px rgba(3, 17, 35, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.area-map-card.is-updating .area-map-panel {
  animation: areaPanelLift 0.38s ease;
}

.area-panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #f0d27a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area-panel-status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(199, 155, 52, 0.78);
}

.area-map-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 760;
  line-height: 1;
}

.area-map-panel p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #dce5f1;
  font-size: 16px;
}

.area-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-panel-tags span {
  padding: 7px 10px;
  color: #f6efe4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.area-panel-route {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(3, 17, 35, 0.26);
}

.area-panel-cta:hover,
.area-panel-cta:focus-visible {
  background: #f0d27a;
}

.area-map-rail {
  position: absolute;
  z-index: 7;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 26px);
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
  background: rgba(3, 17, 35, 0.66);
  border: 1px solid rgba(199, 155, 52, 0.22);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(3, 17, 35, 0.26);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.area-map-rail::-webkit-scrollbar {
  display: none;
}

.area-map-chip {
  flex: 1 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  color: #f6efe4;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.area-map-chip:hover,
.area-map-chip:focus-visible,
.area-map-chip.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

@keyframes areaRouteFlow {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes areaRouteBreathe {
  0%, 100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

@keyframes areaRingBreathe {
  0%, 100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes areaPanelLift {
  from {
    opacity: 0.75;
    transform: translateY(calc(-50% + 12px));
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@keyframes areaPanelSlideUp {
  from {
    opacity: 0.75;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-route-energy.is-active,
  .area-map-base-ring,
  .area-map-card.is-updating .area-map-panel {
    animation: none;
  }
}

@media (max-width: 1500px) {
  .quote-bridge-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1fr);
    gap: clamp(28px, 4vw, 62px);
  }

  .quote-bridge-panel {
    grid-template-columns: minmax(300px, 1fr) minmax(230px, 0.8fr);
  }

  .quote-bridge-photo img {
    min-height: 340px;
  }

  .home-service-strip a {
    gap: 14px;
    min-height: 96px;
    padding: 18px 14px;
    font-size: 16px;
  }

  .service-line-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 1120px) {
  .home-hero {
    min-height: 640px;
  }

  .home-lead-grid {
    grid-template-columns: 1fr;
  }

  .quote-bridge-inner {
    grid-template-columns: 1fr;
  }

  .quote-bridge-copy h1,
  .quote-bridge-copy h2,
  .quote-bridge-copy p:not(.eyebrow) {
    max-width: 860px;
  }

  .quote-bridge-panel {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  }

  .home-service-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-gallery-preview__inner {
    grid-template-columns: 1fr;
  }

  .home-gallery-preview__copy {
    max-width: 820px;
  }

  .home-gallery-preview__grid {
    grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.72fr));
  }

  .home-service-strip a:nth-child(3) {
    border-right: 0;
  }

  .area-map-card {
    min-height: 780px;
  }

  .area-map-panel {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 88px;
    width: auto;
    transform: none;
  }

  .area-map-card.is-updating .area-map-panel {
    animation: areaPanelSlideUp 0.38s ease;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    height: 54px;
    max-width: 180px;
  }

  .home-hero {
    min-height: 720px;
  }

  .home-hero-panel {
    left: 16px;
    right: 16px;
    bottom: 58px;
  }

  .home-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .home-hero-panel > p:not(.eyebrow) {
    font-size: 16px;
  }

  .home-lead-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-quote-bridge {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quote-bridge-copy h1,
  .quote-bridge-copy h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .quote-bridge-panel {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .quote-bridge-photo img {
    min-height: 230px;
  }

  .quote-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .quote-steps span {
    width: 34px;
    height: 34px;
  }

  .quote-bridge-actions .button {
    width: 100%;
  }

  .home-lead-grid h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .home-service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-service-strip a,
  .home-service-strip a:nth-child(3) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    min-height: 116px;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(199, 155, 52, 0.22);
  }

  .home-service-strip a:nth-child(odd) {
    border-right: 1px solid rgba(199, 155, 52, 0.22);
  }

  .home-service-strip a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-service-strip span {
    white-space: normal;
  }

  .service-line-icon {
    flex-basis: auto;
    width: 42px;
    height: 42px;
  }

  .svc-stage {
    min-height: 330px;
  }

  .svc-card,
  .svc-card.is-active,
  .svc-card.is-prev,
  .svc-card.is-next,
  .svc-card.is-before,
  .svc-card.is-after {
    width: min(100%, 360px);
    height: 300px;
  }

  .svc-card.is-prev,
  .svc-card.is-next,
  .svc-card.is-before,
  .svc-card.is-after {
    opacity: 0;
    transform: translateX(-50%) scale(0.92);
    pointer-events: none;
  }

  .svc-nav {
    top: 38%;
  }

  .svc-detail-wrap {
    min-height: 310px;
  }

  .svc-chips {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .home-gallery-preview {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-gallery-preview__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .home-gallery-tile,
  .home-gallery-tile.is-featured {
    min-height: 230px;
    grid-row: auto;
  }

  .home-gallery-tile.is-featured {
    min-height: 330px;
  }

  .home-gallery-preview__actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-area-map {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-area-map__heading {
    text-align: left;
  }

  .area-map-card {
    min-height: 720px;
    border-radius: 12px;
  }

  .area-map-county {
    left: 4%;
    width: 72%;
    opacity: 0.84;
  }

  .area-map-grid {
    left: 0;
    width: 76%;
  }

  .area-pin,
  .area-pin:hover,
  .area-pin:focus-visible,
  .area-pin.is-active {
    width: 34px;
    height: 34px;
    min-width: 0;
    padding: 0;
    border-radius: 999px;
    transform: translate(-50%, -50%);
  }

  .area-pin::before {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .area-pin span,
  .area-pin small {
    display: none;
  }

  .area-map-panel {
    left: 14px;
    right: 14px;
    bottom: 86px;
    padding: 18px;
  }

  .area-map-panel h3 {
    font-size: clamp(30px, 11vw, 42px);
  }

  .area-panel-tags {
    gap: 6px;
  }

  .area-panel-tags span {
    font-size: 11px;
  }

  .area-map-rail {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px;
  }

  .area-map-chip {
    flex: 0 0 auto;
    min-height: 38px;
  }
}

/* =========================================================================
   Area hub — local-SEO area navigation + a route preview, with a SEPARATE
   universal services strip. (Supersedes the .area-map-* block above.)
   ========================================================================= */
.home-area-map {
  background: radial-gradient(120% 120% at 16% -10%, #0d2a4c 0%, #061a33 52%, #03101f 100%);
}
.home-area-map__heading h2 { color: var(--white); }
.home-area-map__heading p:not(.eyebrow) { color: #a8bcd6; }
.home-area-map .eyebrow { color: #e7c163; }

.cov-board {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: clamp(16px, 1.8vw, 26px);
  background:
    radial-gradient(90% 120% at 82% 8%, rgba(95, 208, 255, 0.06), transparent 60%),
    linear-gradient(160deg, rgba(11, 33, 60, 0.92), rgba(5, 18, 33, 0.94));
  border: 1px solid rgba(199, 155, 52, 0.3);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(3, 14, 30, 0.5);
  overflow: hidden;
}
.cov-board::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 100% at 72% 16%, #000 0%, transparent 80%);
  mask-image: radial-gradient(120% 100% at 72% 16%, #000 0%, transparent 80%);
  opacity: 0.5; pointer-events: none;
}
.cov-board > * { position: relative; z-index: 1; }

.cov-top {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
}

/* selected-area card */
.cov-selected {
  position: relative;
  display: flex; flex-direction: column;
  padding: clamp(22px, 2.4vw, 34px);
  padding-left: clamp(28px, 2.8vw, 42px);
  border: 1px solid rgba(199, 155, 52, 0.5);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(13, 38, 66, 0.96), rgba(6, 21, 38, 0.96));
}
.cov-selected::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #f0d27a, var(--gold));
}
.cov-sel-label {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 16px; color: #f0d27a;
  font: 900 11px/1 var(--font-body); letter-spacing: 0.14em; text-transform: uppercase;
}
.cov-sel-check { width: 16px; height: 16px; }
.cov-sel-title {
  margin: 0 0 12px; color: var(--white);
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px);
  font-weight: 760; line-height: 0.98;
}
.cov-sel-copy { margin: 0 0 22px; max-width: 44ch; color: #c7d4e6; font-size: 16px; }
.cov-sel-cta {
  align-self: flex-start; margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px; padding: 13px 20px;
  color: var(--ink); background: var(--gold); border-radius: 8px;
  font: 900 14px/1 var(--font-body);
  transition: background 0.18s ease, transform 0.18s ease;
}
.cov-sel-cta:hover, .cov-sel-cta:focus-visible { background: #f0d27a; transform: translateY(-1px); }
.cov-sel-arrow { width: 17px; height: 17px; filter: brightness(0); }
.cov-selected.is-updating { animation: covLift 0.4s ease; }
@keyframes covLift { from { opacity: 0.45; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* route-preview map */
.cov-map {
  display: flex; flex-direction: column;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(199, 155, 52, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(70% 80% at 50% 48%, rgba(199, 155, 52, 0.06), transparent 70%),
    linear-gradient(160deg, rgba(8, 26, 48, 0.9), rgba(4, 16, 30, 0.94));
}
.cov-map-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; margin-bottom: 4px; }
.cov-map-kicker { display: inline-flex; align-items: center; gap: 8px; color: #8fa6c4; font: 900 10px/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; }
.cov-map-route-ic { width: 18px; height: 18px; }
.cov-map-route { margin: 0; font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 24px); font-weight: 760; color: var(--white); }
.cov-route-arrow, .cov-route-sep { color: #e7c163; margin: 0 6px; }
.cov-map-scene { position: relative; aspect-ratio: 16 / 10; margin-top: 6px; }
.cov-map-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cov-route-line { fill: none; stroke: rgba(199, 155, 52, 0.22); stroke-width: 1; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.cov-route-line.is-active {
  stroke: #e7c163; stroke-width: 2; stroke-dasharray: 5 7;
  filter: drop-shadow(0 0 3px rgba(231, 193, 99, 0.8));
  animation: covFlow 1.6s linear infinite;
}
@keyframes covFlow { to { stroke-dashoffset: -24; } }
.cov-map-pins { position: absolute; inset: 0; }
.cov-pin {
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  display: grid; justify-items: center; gap: 3px; text-align: center;
}
.cov-pin-ic { width: 26px; height: 26px; filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.45)); transition: transform 0.18s ease; }
.cov-pin span { color: #c9d6e8; font: 800 10.5px/1 var(--font-body); background: rgba(3, 14, 30, 0.72); padding: 3px 6px; border-radius: 5px; white-space: nowrap; }
.cov-pin.is-base .cov-pin-ic { width: 30px; height: 30px; }
.cov-pin.is-base span { color: #fff; }
.cov-pin.is-active .cov-pin-ic { width: 32px; height: 32px; filter: drop-shadow(0 0 10px rgba(231, 193, 99, 0.85)); }
.cov-pin.is-active span { color: var(--ink); background: var(--gold); }
.cov-pin:hover .cov-pin-ic, .cov-pin:focus-visible .cov-pin-ic { transform: scale(1.12); }

/* strips */
.cov-strip-label { margin: 0 0 10px; color: #8fa6c4; font: 900 10px/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; }
.cov-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.cov-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  color: #eaf1fb; background: rgba(8, 26, 48, 0.7);
  border: 1px solid rgba(199, 155, 52, 0.4); border-radius: 999px;
  font: 800 13px/1 var(--font-body);
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.cov-chip-ic { width: 16px; height: 16px; }
.cov-chip:hover, .cov-chip:focus-visible { border-color: rgba(231, 193, 99, 0.85); background: rgba(199, 155, 52, 0.12); }
.cov-chip.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.cov-chip.is-active .cov-chip-ic { filter: brightness(0); }

.cov-tiles { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 10px; }
.cov-tile {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 16px 10px;
  color: #eaf1fb; background: rgba(8, 26, 48, 0.66);
  border: 1px solid rgba(199, 155, 52, 0.32); border-radius: 12px;
  font: 800 13px/1 var(--font-body); text-align: center;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.cov-tile-ic { width: 30px; height: 30px; }
.cov-tile:hover, .cov-tile:focus-visible { transform: translateY(-3px); border-color: rgba(231, 193, 99, 0.85); background: rgba(199, 155, 52, 0.1); }

@media (max-width: 980px) {
  .cov-top { grid-template-columns: 1fr; }
  .cov-tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .cov-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cov-chips { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .cov-chips::-webkit-scrollbar { display: none; }
  .cov-chip { flex: 0 0 auto; }
  .cov-pin span { font-size: 9px; padding: 2px 4px; }
  .cov-pin-ic { width: 22px; height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .cov-route-line.is-active { animation: none; }
  .cov-selected.is-updating { animation: none; }
  .cov-sel-cta, .cov-pin-ic, .cov-tile, .cov-chip { transition: none; }
}

/* =========================================================================
   Home lead-in — "start with the problem, not the trade" problem chooser.
   (Replaces the old .home-quote-bridge markup; that CSS is now inert.)
   ========================================================================= */
.home-problem {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 56px);
  background: radial-gradient(120% 130% at 14% -10%, #0d2a4c 0%, #061a33 55%, #03101f 100%);
  color: var(--white);
}
.home-problem-head { max-width: 760px; margin: 0 auto; text-align: center; }
.home-problem .eyebrow { color: #e7c163; }
.home-problem-head h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 760; line-height: 1.02;
  color: var(--white);
}
.home-problem-head p:not(.eyebrow) {
  margin: 16px auto 0; max-width: 620px;
  color: #b6c6dc; font-size: 17px;
}
.home-problem-grid {
  list-style: none; margin: clamp(28px, 4vw, 44px) auto 0; padding: 0;
  max-width: var(--max);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
}
.problem-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  height: 100%; padding: 18px 20px;
  color: #eaf1fb; background: rgba(8, 26, 48, 0.66);
  border: 1px solid rgba(199, 155, 52, 0.32); border-radius: 12px;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
.problem-text { font: 800 16px/1.25 var(--font-body); }
.problem-go { flex: none; color: #e7c163; font-size: 20px; transition: transform 0.16s ease; }
.problem-card:hover, .problem-card:focus-visible {
  transform: translateY(-3px); border-color: rgba(231, 193, 99, 0.85); background: rgba(199, 155, 52, 0.1);
}
.problem-card:hover .problem-go, .problem-card:focus-visible .problem-go { transform: translateX(4px); }
.home-problem-foot { margin: clamp(22px, 3vw, 32px) auto 0; text-align: center; color: #b6c6dc; font-size: 16px; }
.home-problem-foot a { color: #e7c163; font-weight: 800; }
.home-problem-foot a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .home-problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .home-problem-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .problem-card, .problem-go { transition: none; }
}

/* Photo-led coverage hub: replaces the abstract route-map presentation. */
.cov-board--photo {
  gap: clamp(14px, 1.6vw, 22px);
  padding: clamp(16px, 2vw, 30px);
  background:
    radial-gradient(100% 120% at 20% 0%, rgba(33, 81, 128, 0.28), transparent 56%),
    linear-gradient(155deg, #062747 0%, #041c36 48%, #031326 100%);
}

.cov-board--photo::before {
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(110% 90% at 70% 18%, #000 0%, transparent 72%);
  mask-image: radial-gradient(110% 90% at 70% 18%, #000 0%, transparent 72%);
}

.cov-photo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(250px, 0.55fr);
  gap: clamp(14px, 1.7vw, 24px);
  align-items: stretch;
}

.cov-feature {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(360px, 1.08fr);
  min-height: 380px;
  border: 1px solid rgba(199, 155, 52, 0.78);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(6, 32, 58, 0.98), rgba(3, 17, 32, 0.98));
  box-shadow: 0 28px 80px rgba(1, 11, 23, 0.42);
}

.cov-feature.is-updating {
  animation: covPhotoSwap 0.38s ease;
}

@keyframes covPhotoSwap {
  from { opacity: 0.72; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cov-board--photo .cov-selected {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(160deg, rgba(8, 39, 70, 0.94), rgba(4, 18, 35, 0.98));
  padding: clamp(26px, 2.8vw, 42px);
  padding-left: clamp(32px, 3vw, 52px);
  min-width: 0;
  overflow: hidden;
}

.cov-board--photo .cov-selected::before {
  width: 8px;
  border-radius: 0;
}

.cov-board--photo .cov-sel-label {
  gap: 12px;
  margin-bottom: 22px;
  color: #f0c85d;
}

.cov-board--photo .cov-sel-mark {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #f0d27a);
  box-shadow: 0 0 16px rgba(240, 200, 93, 0.28);
}

.cov-board--photo .cov-sel-title {
  margin-bottom: 16px;
  max-width: 100%;
  font-size: 48px;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.cov-board--photo .cov-sel-copy {
  max-width: 38ch;
  color: #d3deec;
  font-size: 18px;
  line-height: 1.52;
}

.cov-sel-points {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.cov-sel-points li {
  position: relative;
  padding-left: 31px;
  color: #eef4fb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.cov-sel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(240, 200, 93, 0.7);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(240, 210, 122, 0.34), rgba(199, 155, 52, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 20px rgba(1, 10, 22, 0.22);
}

.cov-sel-points li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.43em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #f0d27a;
  border-bottom: 2px solid #f0d27a;
  transform: rotate(-45deg);
}

.cov-board--photo .cov-sel-cta {
  min-width: min(100%, 310px);
  justify-content: space-between;
  margin-top: auto;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(208, 163, 49, 0.18);
}

.cov-area-photo {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #071b31;
}

.cov-area-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 17, 32, 0.18), transparent 28%),
    linear-gradient(180deg, transparent 64%, rgba(3, 17, 32, 0.16));
  pointer-events: none;
}

.cov-area-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.cov-area-list {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  align-self: start;
  padding: 12px;
  background: rgba(3, 17, 32, 0.44);
  border: 1px solid rgba(199, 155, 52, 0.28);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cov-area-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 54px;
  padding: 12px 14px;
  color: #eaf1fb;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: none;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.cov-area-card::before {
  content: "";
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 1px solid rgba(199, 155, 52, 0.62);
  border-radius: 5px;
  background: rgba(199, 155, 52, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.cov-area-card::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  opacity: 0.82;
  transform: translateY(-68%) rotate(-45deg);
  transition: border-color 0.16s ease, opacity 0.16s ease;
}

.cov-area-card:hover,
.cov-area-card:focus-visible {
  color: var(--white);
  background: rgba(199, 155, 52, 0.1);
  border-color: rgba(240, 200, 93, 0.58);
  outline: 0;
}

.cov-area-card.is-active {
  color: #061a33;
  background: linear-gradient(135deg, #f0d27a, #c79b34);
  border-color: rgba(255, 232, 150, 0.9);
  box-shadow: 0 16px 36px rgba(1, 10, 22, 0.24), 0 0 28px rgba(199, 155, 52, 0.22);
}

.cov-area-card.is-active::before {
  background: #061a33;
  border-color: #061a33;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 0 5px rgba(6, 26, 51, 0.12);
  transform: scale(1.04);
}

.cov-area-card.is-active::after {
  border-color: #f0d27a;
  opacity: 1;
}

.cov-area-card-copy {
  display: flex;
  align-items: center;
  min-width: 0;
}

.cov-area-card-copy strong {
  color: currentColor;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.08vw, 21px);
  font-weight: 830;
  line-height: 1.1;
  white-space: nowrap;
}

.cov-area-card-copy small {
  color: #b8c7dc;
  font-size: 13px;
  line-height: 1.3;
}

.cov-route-bar,
.cov-service-strip {
  display: grid;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(199, 155, 52, 0.34);
  border-radius: 12px;
  background: rgba(4, 19, 36, 0.66);
}

.cov-route-bar {
  grid-template-columns: minmax(190px, 0.48fr) minmax(260px, 1fr) auto;
}

.cov-route-glyph {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(199, 155, 52, 0.58);
  border-radius: 999px;
  background: rgba(9, 42, 75, 0.66);
}

.cov-route-ic {
  width: 34px;
  height: 34px;
}

.cov-route-main {
  min-width: 0;
}

.cov-board--photo .cov-route-kicker,
.cov-board--photo .cov-strip-label {
  margin: 0 0 7px;
  color: #f0c85d;
}

.cov-route-path {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.05;
}

.cov-route-note {
  margin: 0;
  color: #c7d4e6;
  font-size: 16px;
  line-height: 1.5;
}

.cov-route-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 16px 24px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font: 900 15px/1 var(--font-body);
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(208, 163, 49, 0.16);
  transition: background 0.18s ease, transform 0.18s ease;
}

.cov-route-cta:hover,
.cov-route-cta:focus-visible {
  background: #f0d27a;
  transform: translateY(-1px);
}

.cov-route-cta-ic,
.cov-route-cta-arrow {
  width: 20px;
  height: 20px;
  filter: brightness(0);
}

.cov-service-strip {
  grid-template-columns: minmax(240px, 0.3fr) minmax(0, 1fr);
}

.cov-strip-note {
  margin: 0;
  color: #a8bcd6;
  font-size: 14px;
  line-height: 1.45;
}

.cov-board--photo .cov-tiles {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.cov-board--photo .cov-tile {
  flex-direction: row;
  justify-content: center;
  min-height: 78px;
  padding: 13px 8px;
  border-radius: 10px;
  font-size: 12px;
}

.cov-board--photo .cov-tile-ic {
  width: 28px;
  height: 28px;
}

@media (max-width: 1360px) {
  .cov-board--photo .cov-sel-title {
    font-size: 44px;
  }

  .cov-area-card-copy strong {
    font-size: 18px;
  }
}

@media (max-width: 1180px) {
  .cov-photo-layout,
  .cov-feature {
    grid-template-columns: 1fr;
  }

  .cov-area-list {
    grid-template-columns: 1fr;
  }

  .cov-route-bar,
  .cov-service-strip {
    grid-template-columns: 1fr;
  }

  .cov-route-cta {
    width: 100%;
  }

  .cov-board--photo .cov-sel-title {
    font-size: 48px;
  }
}

@media (max-width: 720px) {
  .cov-board--photo .cov-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cov-area-list {
    grid-template-columns: 1fr;
    order: -1;
  }

  .cov-area-card {
    min-height: 50px;
  }

  .cov-board--photo .cov-sel-title {
    font-size: 38px;
  }

  .cov-board--photo .cov-sel-copy {
    font-size: 16px;
  }

  .cov-sel-points {
    margin: 20px 0 24px;
  }

  .cov-area-photo img {
    min-height: 260px;
  }
}
