:root {
  color-scheme: light dark;
  --shell-navy: #071426;
  --shell-green: #147a37;
  --shell-green-strong: #0b5c27;
  --shell-green-soft: #e9f6ee;
  --shell-gold: #b88721;
  --shell-surface: #ffffff;
  --shell-surface-soft: #f4f7f5;
  --shell-text: #102033;
  --shell-muted: #5b6878;
  --shell-line: rgba(16, 32, 51, 0.14);
  --shell-shadow: 0 24px 64px rgba(7, 20, 38, 0.16);
  --shell-header-height: 86px;
  --shell-header-compact-height: 72px;
}

.shell-header,
.shell-header *,
.shell-footer,
.shell-footer *,
.shell-page,
.shell-page * {
  box-sizing: border-box;
}

body.error-page,
body.blog-page {
  margin: 0;
  color: var(--shell-text);
  background: var(--shell-surface-soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2400;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--shell-navy);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: var(--shell-header-height);
  color: var(--shell-text);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--shell-line);
  box-shadow: 0 8px 28px rgba(7, 20, 38, 0.06);
  backdrop-filter: blur(16px);
  transition: min-height 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.shell-header .shell-header-inner {
  position: relative;
  display: flex;
  width: min(1380px, calc(100% - 40px));
  min-height: var(--shell-header-height);
  align-items: center;
  gap: 22px;
  margin-inline: auto;
  transition: min-height 180ms ease;
}

.shell-header.is-scrolled,
.shell-header.is-scrolled .shell-header-inner {
  min-height: var(--shell-header-compact-height);
}

.shell-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(7, 20, 38, 0.1);
}

.shell-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--shell-text);
  text-decoration: none;
}

.shell-logo-frame {
  display: grid;
  width: 104px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  padding: 3px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--shell-line);
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(7, 20, 38, 0.08);
  transition: width 180ms ease, height 180ms ease, box-shadow 180ms ease;
}

.shell-header.is-scrolled .shell-logo-frame {
  width: 86px;
  height: 50px;
  box-shadow: 0 4px 12px rgba(7, 20, 38, 0.06);
}

.shell-logo-frame img,
.shell-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shell-menu {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-left: auto;
}

.shell-header .shell-nav {
  position: static;
  inset: auto;
  display: block;
  max-height: none;
  padding: 0;
  margin: 0;
  overflow: visible;
  color: var(--shell-text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.shell-header .shell-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.shell-header .shell-nav li {
  position: relative;
  margin: 0;
}

.shell-header .shell-nav a,
.shell-more summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  color: #3f4f61;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 740;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.shell-header .shell-nav a:hover,
.shell-header .shell-nav a:focus-visible,
.shell-header .shell-nav a[aria-current="page"],
.shell-more summary:hover,
.shell-more summary:focus-visible,
.shell-more[open] > summary {
  color: var(--shell-green-strong);
  background: var(--shell-green-soft);
}

.shell-header a:focus-visible,
.shell-header button:focus-visible,
.shell-header summary:focus-visible,
.shell-footer a:focus-visible {
  outline: 3px solid #0b6b31;
  outline-offset: 3px;
}

.shell-mobile-home,
.shell-mobile-areas,
.shell-mobile-quote {
  display: none;
}

.shell-more {
  position: relative;
}

.shell-more summary,
.shell-nav-toggle {
  cursor: pointer;
  list-style: none;
}

.shell-more summary::-webkit-details-marker,
.shell-nav-toggle::-webkit-details-marker {
  display: none;
}

.shell-more summary span {
  transition: transform 160ms ease;
}

.shell-more[open] > summary span {
  transform: rotate(180deg);
}

.shell-more-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 10;
  display: grid;
  width: 190px;
  padding: 8px;
  background: var(--shell-surface);
  border: 1px solid var(--shell-line);
  border-radius: 14px;
  box-shadow: var(--shell-shadow);
}

.shell-more:not([open]) .shell-more-menu {
  display: none;
}

.shell-header .shell-more-menu a {
  min-height: 44px;
  justify-content: flex-start;
  padding: 9px 12px;
  text-align: left;
  white-space: normal;
}

.shell-header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.shell-phone {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 15px;
  color: var(--shell-navy);
  background: var(--shell-surface-soft);
  border: 1px solid var(--shell-line);
  border-radius: 12px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.shell-call-icon {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  transform-origin: 45% 78%;
  animation: shell-phone-ring 2.4s ease-in-out infinite;
  will-change: transform;
}

.shell-call-icon svg {
  width: 18px;
  height: 18px;
}

.shell-phone .shell-call-icon {
  color: var(--shell-green-strong);
}

.shell-phone span {
  color: var(--shell-muted);
  font-size: 0.79rem;
  font-weight: 720;
}

.shell-phone strong {
  font-size: 0.88rem;
  font-weight: 900;
}

.shell-quote {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  color: #ffffff;
  background: var(--shell-green);
  border: 1px solid var(--shell-green);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(20, 122, 55, 0.22);
  font-size: 0.8rem;
  font-weight: 860;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.shell-phone:hover,
.shell-phone:focus-visible,
.shell-quote:hover,
.shell-quote:focus-visible {
  border-color: color-mix(in srgb, var(--shell-green) 55%, var(--shell-line));
  box-shadow: 0 13px 28px rgba(20, 122, 55, 0.24);
  transform: translateY(-1px);
}

.shell-mobile-call,
.shell-nav-toggle {
  display: none;
}

.shell-footer {
  padding: 56px 0 96px;
  color: #b8c6d7;
  background: #050f1d;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.shell-footer .container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.shell-footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(145px, 0.82fr));
  gap: clamp(26px, 4vw, 50px);
}

.shell-footer section,
.shell-footer h2,
.shell-footer p,
.shell-footer ul {
  margin-top: 0;
}

.shell-footer h2 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 0.89rem;
  font-weight: 830;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.shell-footer-brand > h2 {
  margin: 13px 0 8px;
  font-size: 1.15rem;
}

.shell-footer p {
  max-width: 330px;
  margin-bottom: 15px;
  color: #9fb0c3;
  font-size: 0.83rem;
  line-height: 1.62;
}

.shell-footer-logo {
  display: block;
  width: 116px;
  height: 66px;
  padding: 3px;
  background: #ffffff;
  border-radius: 10px;
}

.shell-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.shell-footer li,
.shell-footer a {
  color: #9fb0c3;
  font-size: 0.79rem;
  line-height: 1.45;
  text-decoration: none;
}

.shell-footer a:hover,
.shell-footer a:focus-visible,
.shell-footer a[aria-current="page"] {
  color: #7ee49b;
}

.shell-footer li > span {
  color: #718399;
  font-size: 0.71rem;
}

.shell-footer-contact-list {
  gap: 10px !important;
}

.shell-footer-contact-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 32px;
}

.shell-footer-contact-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #bff6ce !important;
  background: rgba(67, 202, 105, 0.11);
  border: 1px solid rgba(103, 217, 134, 0.25);
  border-radius: 9px 9px 9px 3px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.shell-footer-contact-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell-footer-contact-icon.is-sms {
  color: #bceff9 !important;
  background: rgba(43, 151, 186, 0.13);
  border-color: rgba(84, 190, 222, 0.28);
}

.shell-footer-contact-icon.is-email {
  color: #c8e7ff !important;
  background: rgba(65, 142, 201, 0.14);
  border-color: rgba(105, 174, 226, 0.29);
}

.shell-footer-contact-icon.is-availability {
  color: #ffe89b !important;
  background: rgba(231, 183, 49, 0.13);
  border-color: rgba(239, 199, 83, 0.32);
}

.shell-footer-contact-icon.is-pickup {
  color: #d9c7ff !important;
  background: rgba(135, 99, 194, 0.13);
  border-color: rgba(167, 132, 221, 0.27);
}

.shell-footer-contact-item .shell-footer-contact-text {
  color: #9fb0c3;
  font-size: 0.76rem;
  line-height: 1.38;
}

.shell-footer-contact-item:focus-within .shell-footer-contact-icon,
.shell-footer-contact-item:hover .shell-footer-contact-icon {
  color: #ffffff !important;
  background: rgba(67, 202, 105, 0.19);
  border-color: rgba(126, 228, 155, 0.42);
}

.shell-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.shell-footer-badges .shell-footer-badge {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 5px;
  overflow: hidden;
  color: #ffeaa0;
  background: linear-gradient(135deg, rgba(247, 210, 91, 0.18), rgba(178, 121, 27, 0.08));
  border: 1px solid rgba(242, 202, 75, 0.48);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 780;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 8px 24px rgba(0, 0, 0, 0.16);
}

.shell-footer-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.16) 46%, transparent 66%);
  transform: translateX(-130%);
  animation: shell-gold-shine 5.8s ease-in-out infinite;
  pointer-events: none;
}

.shell-footer-badge i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: #362406;
  background: radial-gradient(circle at 34% 28%, #fff3aa, #e7b838 72%);
  border: 1px solid rgba(255, 241, 163, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(215, 166, 43, 0.16);
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 950;
}

.shell-footer-badge b {
  font-weight: 820;
}

@keyframes shell-gold-shine {
  0%, 68% { transform: translateX(-130%); }
  84%, 100% { transform: translateX(130%); }
}

.shell-footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  margin-top: 42px;
  padding-top: 20px;
  color: #72859a;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.68rem;
  line-height: 1.5;
}

.shell-footer-bottom span:nth-child(3) {
  grid-column: 1 / -1;
}

.shell-page {
  min-height: 62vh;
  padding: clamp(68px, 9vw, 112px) 0;
  color: var(--shell-text);
  background: var(--shell-surface-soft);
}

.shell-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.shell-page-actions a {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  color: #ffffff;
  background: var(--shell-green);
  border: 1px solid var(--shell-green);
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
}

.shell-page-actions a.secondary {
  color: var(--shell-text);
  background: transparent;
  border-color: var(--shell-line);
}

.guide-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.guide-topics section {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--shell-surface-soft);
  border: 1px solid var(--shell-line);
  border-radius: 14px;
}

.guide-topics strong {
  color: var(--shell-text);
  font-size: 0.95rem;
}

.guide-topics span {
  color: var(--shell-muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (max-width: 1260px) {
  :root {
    --shell-header-height: 78px;
    --shell-header-compact-height: 70px;
  }

  .shell-header .shell-header-inner {
    width: min(100% - 32px, 1180px);
    gap: 12px;
  }

  .shell-logo-frame {
    width: 90px;
    height: 52px;
  }

  .shell-header.is-scrolled .shell-logo-frame {
    width: 82px;
    height: 47px;
  }

  .shell-menu {
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .shell-header-actions {
    margin-left: 0;
  }

  .shell-nav-toggle {
    display: inline-flex;
    min-width: 80px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 11px;
    color: var(--shell-text);
    background: var(--shell-surface);
    border: 1px solid var(--shell-line);
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 840;
  }

  .shell-nav-toggle > span {
    color: inherit;
    line-height: 1;
  }

  .shell-nav-toggle i {
    display: grid;
    width: 18px;
    flex: 0 0 auto;
    gap: 3px;
  }

  .shell-nav-toggle i b {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .shell-menu[open] .shell-nav-toggle i b:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .shell-menu[open] .shell-nav-toggle i b:nth-child(2) {
    opacity: 0;
  }

  .shell-menu[open] .shell-nav-toggle i b:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .shell-header .shell-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    z-index: 20;
    display: block;
    width: auto;
    max-height: calc(100svh - var(--shell-header-compact-height) - 12px);
    padding: 14px;
    overflow-y: auto;
    color: var(--shell-text);
    background: var(--shell-surface);
    border: 1px solid var(--shell-line);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: var(--shell-shadow);
  }

  .shell-menu:not([open]) .shell-nav {
    display: none;
  }

  .shell-header .shell-nav > ul {
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    gap: 4px;
  }

  .shell-header .shell-nav a,
  .shell-more summary {
    min-height: 50px;
    justify-content: space-between;
    padding: 11px 14px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .shell-mobile-home,
  .shell-mobile-areas,
  .shell-mobile-quote {
    display: block;
  }

  .shell-mobile-group-label {
    display: block;
    padding: 15px 14px 7px;
    color: var(--shell-muted);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .shell-mobile-area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
    background: var(--shell-surface-soft);
    border: 1px solid var(--shell-line);
    border-radius: 14px;
  }

  .shell-header .shell-mobile-area-list a {
    display: grid;
    min-height: 62px;
    align-content: center;
    justify-content: stretch;
    padding: 10px 12px;
    text-align: left;
  }

  .shell-mobile-area-list a span {
    color: var(--shell-text);
    font-size: 0.8rem;
    font-weight: 780;
  }

  .shell-mobile-area-list a small {
    margin-top: 4px;
    color: var(--shell-muted);
    font-size: 0.7rem;
    font-weight: 620;
    line-height: 1.35;
  }

  .shell-more-menu {
    position: static;
    width: auto;
    padding: 5px;
    margin: 3px 0 6px;
    background: var(--shell-surface-soft);
    border-radius: 12px;
    box-shadow: none;
  }

  .shell-mobile-quote {
    padding-top: 6px;
  }

  .shell-mobile-quote a {
    color: #ffffff !important;
    background: var(--shell-green) !important;
  }

  body.shell-nav-open {
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .shell-header-actions {
    display: none;
  }

  .shell-phone,
  .shell-quote {
    display: none;
  }

  .shell-mobile-call {
    display: inline-flex;
    margin-left: auto;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #116c31, #169442);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(17, 108, 49, 0.24);
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .shell-menu {
    margin-left: 0;
  }

  body:has(.shell-menu[open]) .mobile-contact-dock {
    opacity: 0;
    pointer-events: none;
  }

  .shell-call-icon {
    color: #ffffff;
  }

  .mobile-contact-dock .dock-call-icon {
    transform-origin: 45% 78%;
    animation: shell-phone-ring 2.4s ease-in-out infinite;
    will-change: transform;
  }

  .shell-mobile-call strong {
    font-size: 0.84rem;
    font-weight: 900;
  }

  .shell-mobile-call:hover,
  .shell-mobile-call:focus-visible {
    background: linear-gradient(135deg, #0d5d29, #137f39);
    transform: translateY(-1px);
  }

  .shell-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .shell-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --shell-header-height: 72px;
    --shell-header-compact-height: 66px;
  }

  .shell-header .shell-header-inner {
    width: min(100% - 20px, 1320px);
    gap: 8px;
  }

  .shell-logo-frame {
    width: 78px;
    height: 47px;
  }

  .shell-header.is-scrolled .shell-logo-frame {
    width: 72px;
    height: 43px;
  }

  .shell-mobile-call {
    min-height: 46px;
    padding-inline: 11px;
  }

  .shell-nav-toggle {
    min-width: 72px;
    min-height: 46px;
    padding-inline: 8px;
  }

  .shell-footer {
    padding-bottom: 112px;
  }

  .shell-footer-bottom {
    grid-template-columns: 1fr;
  }

  .shell-footer-bottom span:nth-child(3) {
    grid-column: auto;
  }

  .guide-topics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .shell-header .shell-header-inner {
    width: calc(100% - 14px);
    gap: 6px;
  }

  .shell-logo-frame {
    width: 66px;
    height: 42px;
  }

  .shell-header.is-scrolled .shell-logo-frame {
    width: 62px;
    height: 39px;
  }

  .shell-mobile-call {
    padding-inline: 9px;
  }

  .shell-call-icon {
    flex-basis: 20px;
    width: 20px;
    height: 20px;
  }

  .shell-call-icon svg {
    width: 17px;
    height: 17px;
  }

  .shell-mobile-call strong {
    font-size: 0.78rem;
  }

  .shell-nav-toggle {
    min-width: 66px;
  }

  .shell-nav-toggle > span {
    font-size: 0.69rem;
  }

  .shell-mobile-area-list {
    grid-template-columns: 1fr;
  }

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

  .shell-footer-brand {
    grid-column: auto;
  }
}

@keyframes shell-phone-ring {
  0%,
  64%,
  100% {
    transform: rotate(0deg);
  }

  70% {
    transform: rotate(-12deg);
  }

  76% {
    transform: rotate(12deg);
  }

  82% {
    transform: rotate(-10deg);
  }

  88% {
    transform: rotate(10deg);
  }

  94% {
    transform: rotate(0deg);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --shell-surface: #0b1829;
    --shell-surface-soft: #07111f;
    --shell-text: #f4f7fb;
    --shell-muted: #acb8c7;
    --shell-line: rgba(255, 255, 255, 0.14);
    --shell-green: #43ca69;
    --shell-green-strong: #8ae5a1;
    --shell-green-soft: rgba(67, 202, 105, 0.12);
    --shell-gold: #e0b750;
    --shell-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  }

  .shell-header {
    background: rgba(7, 17, 31, 0.985);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  }

  .shell-header a:focus-visible,
  .shell-header button:focus-visible,
  .shell-header summary:focus-visible,
  .shell-footer a:focus-visible {
    outline-color: #9af0b3;
  }

  .shell-header .shell-nav a,
  .shell-more summary {
    color: #c5d0dd;
  }

  .shell-phone {
    color: #f4f7fb;
    background: #101f33;
  }

  .shell-phone span {
    color: #b6c2d0;
  }

  .shell-quote,
  .shell-mobile-quote a {
    color: #06130a !important;
  }

  .shell-page {
    background: #07111f;
  }

  .shell-page-actions a {
    color: #06130a;
  }

  .shell-page-actions a.secondary {
    color: var(--shell-text);
  }

  body.location-page,
  body.privacy-page,
  body.blog-page,
  body.error-page {
    --paper: #07111f;
    --soft: #0a1626;
    --ink: #f4f7fb;
    --muted: #acb8c7;
    --line: rgba(255, 255, 255, 0.12);
    --green: #43ca69;
    --green-dark: #8ae5a1;
    --green-soft: rgba(67, 202, 105, 0.12);
    color: var(--ink);
    background: var(--paper);
  }

  .location-page .intro-section,
  .location-page .situations-section,
  .location-page .access-section,
  .location-page .faq-section,
  .privacy-page .privacy-content {
    background: var(--paper);
  }

  .location-page .coverage-card,
  .location-page .situation-card,
  .location-page .step,
  .location-page .faq-list details,
  .location-page .region-link,
  .location-page .paperwork-card,
  .privacy-page .privacy-summary,
  .privacy-page .policy-prose {
    color: var(--ink);
    background: #101d2e;
  }

  .location-page .mini-card {
    color: var(--ink);
    background: rgba(16, 29, 46, 0.9);
    border-color: var(--line);
  }

  .location-page .suburb-list li,
  .location-page input,
  .location-page textarea {
    color: var(--ink);
    background: #14263b;
    border-color: var(--line);
  }

  .location-page .region-quote-form {
    color: var(--ink);
    background: #0f1d2f;
  }

  .location-page .form-grid label {
    color: #e4eaf1;
  }

  .location-page .btn-secondary {
    color: var(--ink);
    background: #101d2e;
  }
}

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

  .shell-call-icon,
  .mobile-contact-dock .dock-call-icon {
    animation: none !important;
  }
}
