:root {
  --navy: #071f3d;
  --navy-deep: #041226;
  --gold: #c9821e;
  --gold-soft: #e7b86b;
  --charcoal: #1e252d;
  --white-warm: #fbfaf7;
  --surface: #ffffff;
  --surface-soft: #f6f3ee;
  --grey-mist: #eef1f4;
  --grey-border: #d9dee5;
  --text: #1e252d;
  --muted: #647083;
  --success: #2f7d5b;
  --warning: #b86b00;
  --icon-ink: #00245B;
  --shadow: 0 12px 30px rgba(7, 31, 61, 0.08);
  --shadow-soft: 0 16px 36px rgba(7, 31, 61, 0.12);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-body: 'Inter', 'Aptos', 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 130, 30, 0.06), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(7, 31, 61, 0.04), transparent 20%),
    linear-gradient(180deg, #fffdfb 0%, #fbfaf7 42%, #f5f0e9 100%);
  min-height: 100vh;
  overflow-x: clip;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(7, 31, 61, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(7, 31, 61, 0.012), transparent 58%);
  opacity: 0.5;
  z-index: -2;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  transform: translateY(-180%);
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(251, 250, 247, 0.74);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(217, 222, 229, 0.54);
  box-shadow: 0 10px 28px rgba(7, 31, 61, 0.05);
}

body.menu-open .site-header {
  background: rgba(251, 250, 247, 0.98);
  background-image: none;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none;
  z-index: 260;
}

.site-header .brand,
.site-header .nav-toggle {
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo-wrap {
  display: block;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 56px;
}

.brand-logo--footer {
  max-width: 184px;
  max-height: 54px;
}

.brand-icon {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-copy strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.95rem;
  line-height: 1;
}

.brand-copy span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: inherit;
  opacity: 0.72;
}

.site-footer .brand-icon {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.brand--footer {
  align-items: flex-start;
}

.nav-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__line {
  position: absolute;
  left: 12px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--icon-ink);
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.2, 0.72, 0.16, 1),
    opacity 180ms ease,
    width 220ms cubic-bezier(0.2, 0.72, 0.16, 1),
    background-color 180ms ease;
}

.nav-toggle__line:nth-of-type(1) {
  transform: translateY(-7px);
  width: 18px;
  left: 14px;
}

.nav-toggle__line:nth-of-type(2) {
  width: 22px;
}

.nav-toggle__line:nth-of-type(3) {
  transform: translateY(7px);
  width: 14px;
  left: 17px;
}

.header-actions {
  display: none;
  align-items: center;
  justify-self: end;
  gap: 14px;
  margin-right: 24px;
}

.header-action {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--icon-ink);
  font-size: 1rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-1px);
  color: var(--gold);
  background: rgba(201, 130, 30, 0.08);
}

.header-action:hover .header-action__icon-image,
.header-action:focus-visible .header-action__icon-image {
  filter: brightness(0) saturate(100%) invert(40%) sepia(52%) saturate(1218%) hue-rotate(359deg) brightness(96%) contrast(90%);
}

.header-action--home {
  color: var(--icon-ink);
}

.header-action--phone {
  color: var(--icon-ink);
}

.header-action__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.header-action__icon-image {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  image-rendering: auto;
  filter: none;
}

.site-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(217, 222, 229, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  overflow: auto;
  scrollbar-width: none;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -12px, 0) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.72, 0.16, 1),
    box-shadow 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px) + 56px);
  left: 16px;
  right: 16px;
  z-index: 170;
  max-height: calc(100dvh - 96px - env(safe-area-inset-top, 0px));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 28px 64px rgba(7, 31, 61, 0.14);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav__summary-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(217, 222, 229, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(7, 31, 61, 0.06);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
}

.site-nav a:focus-visible {
  outline: none;
}

.site-nav__summary-link:focus-visible {
  outline: none;
}

.site-nav__icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(201, 130, 30, 0.12);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav__label {
  display: inline-block;
}

.site-nav a.is-active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.site-nav__summary-link.is-active,
.site-nav__summary-link:hover,
.site-nav__summary-link:focus-visible {
  color: var(--gold);
}

.site-nav__group {
  display: grid;
  gap: 8px;
  width: 100%;
}

.site-nav__chevron {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 180ms ease;
}

.site-nav__group.is-open .site-nav__chevron {
  transform: translateY(1px) rotate(225deg);
}

.site-nav__submenu {
  display: grid;
  gap: 8px;
  margin: 0 0 0 12px;
  padding: 0 0 0 14px;
  border-left: 1px solid rgba(217, 222, 229, 0.86);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height 260ms cubic-bezier(0.2, 0.72, 0.16, 1),
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.72, 0.16, 1),
    padding 180ms ease,
    margin 180ms ease;
}

.site-nav__group.is-open > .site-nav__submenu {
  max-height: 1200px;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  padding-top: 2px;
}

.site-nav__submenu a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 12px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(217, 222, 229, 0.92);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(7, 31, 61, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
}

.site-nav__submenu-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(201, 130, 30, 0.12);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
}

.site-nav__submenu-label {
  min-width: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.15;
}

.site-nav__submenu a.is-active,
.site-nav__submenu a:hover,
.site-nav__submenu a:focus-visible {
  color: var(--gold);
  border-color: rgba(201, 130, 30, 0.34);
}

.site-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 160;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(2, 10, 22, 0.18);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    background-color 220ms ease;
}

.site-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(2, 10, 22, 0.42);
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

html.menu-open .floating-quote-cta,
body.menu-open .floating-quote-cta {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate3d(0, 22px, 0) scale(0.96) !important;
}

.header-cta {
  display: none;
}

.floating-quote-cta {
  display: none;
}

.page-shell main {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 20px 60px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.8rem, 8.8vw, 5.5rem);
}

h2 {
  font-size: clamp(1.82rem, 4.2vw, 3.1rem);
}

h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  line-height: 1.12;
}

p {
  margin: 0;
}

.hero {
  --hero-panel-bg: rgba(251, 250, 247, 0.84);
  --hero-panel-border: rgba(255, 255, 255, 0.28);
  --hero-panel-shadow: 0 28px 72px rgba(7, 31, 61, 0.2);
  --hero-panel-text: var(--navy);
  --hero-panel-muted: rgba(7, 31, 61, 0.72);
  --hero-decor-ink: rgba(255, 255, 255, 0.42);
  --hero-decor-fill: rgba(255, 255, 255, 0.05);
  --hero-image-position: center;
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.78) 0%, rgba(4, 18, 38, 0.42) 46%, rgba(4, 18, 38, 0.12) 100%);
  --hero-scrim-accent: radial-gradient(circle at 18% 20%, rgba(201, 130, 30, 0.22), transparent 34%), radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.1), transparent 24%);
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  min-height: min(860px, 86svh);
  padding: clamp(18px, 3vw, 36px) 0 clamp(20px, 5vw, 48px);
  overflow: clip;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(7, 31, 61, 0.08), rgba(7, 31, 61, 0));
}

.hero__content {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100%, 37rem);
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: 32px;
  border: 1px solid var(--hero-panel-border);
  background: var(--hero-panel-bg);
  box-shadow: var(--hero-panel-shadow);
  color: var(--hero-panel-text);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  overflow: hidden;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 58%),
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.08), transparent 34%);
  pointer-events: none;
}

.hero__content > * {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--hero-panel-text);
}

.hero__body {
  max-width: 33rem;
  color: var(--hero-panel-muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__actions .button {
  min-width: 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(7, 31, 61, 0.06);
  color: rgba(7, 31, 61, 0.9);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--solid {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(201, 130, 30, 0.18);
}

.button--solid:hover,
.button--solid:focus-visible {
  box-shadow: 0 16px 32px rgba(201, 130, 30, 0.24);
}

.button--ghost {
  border-color: rgba(217, 222, 229, 0.9);
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
}

.header-cta {
  display: none;
}

.hero__pills,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero__pills li {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.42);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.chip {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(217, 222, 229, 0.82);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.feature-band__image,
.cta-band__image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(7, 31, 61, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.05), rgba(201, 130, 30, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 240, 231, 0.92));
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.feature-band__image img,
.cta-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position, center);
  transform: scale(1.05);
  filter: saturate(1) contrast(1.06);
}

.hero__scrim {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__scrim {
  background: var(--hero-scrim);
}

.hero__scrim--accent {
  background: var(--hero-scrim-accent);
  mix-blend-mode: screen;
  opacity: 0.88;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 42px) 20px 0;
}

.hero__decor {
  position: relative;
  min-height: 100%;
  display: block;
}

.hero__glyph {
  position: absolute;
  width: min(58%, 340px);
  color: var(--hero-decor-ink);
  fill: var(--hero-decor-fill);
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 18px 36px rgba(7, 31, 61, 0.12));
  transform-origin: center;
}

.hero__glyph:nth-child(1) {
  top: 8%;
  left: 16%;
  width: 72%;
  animation: hero-float-a 14s ease-in-out infinite;
}

.hero__glyph:nth-child(2) {
  bottom: 8%;
  right: -2%;
  width: 46%;
  animation: hero-float-b 18s ease-in-out infinite;
}

.hero__glyph:nth-child(3) {
  top: 34%;
  right: 18%;
  width: 24%;
  animation: hero-float-c 12s ease-in-out infinite;
}

.hero--theme-services {
  --hero-image-position: 58% 44%;
  --hero-decor-ink: rgba(255, 247, 234, 0.52);
  --hero-decor-fill: rgba(255, 255, 255, 0.035);
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.8) 0%, rgba(4, 18, 38, 0.48) 48%, rgba(4, 18, 38, 0.14) 100%);
  --hero-scrim-accent: radial-gradient(circle at 18% 20%, rgba(201, 130, 30, 0.22), transparent 36%), radial-gradient(circle at 78% 76%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero--theme-home {
  --hero-image-position: 58% 38%;
  --hero-decor-ink: rgba(255, 249, 240, 0.54);
  --hero-decor-fill: rgba(255, 255, 255, 0.05);
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.84) 0%, rgba(4, 18, 38, 0.52) 46%, rgba(4, 18, 38, 0.14) 100%);
  --hero-scrim-accent: radial-gradient(circle at 16% 24%, rgba(201, 130, 30, 0.24), transparent 34%), radial-gradient(circle at 80% 78%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero--theme-landlords {
  --hero-image-position: 56% 34%;
  --hero-decor-ink: rgba(246, 253, 248, 0.5);
  --hero-decor-fill: rgba(255, 255, 255, 0.04);
  --hero-scrim-accent: radial-gradient(circle at 20% 20%, rgba(47, 125, 91, 0.18), transparent 34%), radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero--theme-areas {
  --hero-image-position: 58% 38%;
  --hero-decor-ink: rgba(242, 249, 255, 0.5);
  --hero-decor-fill: rgba(255, 255, 255, 0.04);
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.82) 0%, rgba(4, 18, 38, 0.5) 46%, rgba(4, 18, 38, 0.16) 100%);
  --hero-scrim-accent: radial-gradient(circle at 22% 18%, rgba(83, 136, 191, 0.2), transparent 34%), radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero--theme-projects {
  --hero-image-position: 52% 36%;
  --hero-decor-ink: rgba(249, 243, 236, 0.5);
  --hero-decor-fill: rgba(255, 255, 255, 0.04);
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.82) 0%, rgba(4, 18, 38, 0.48) 46%, rgba(4, 18, 38, 0.16) 100%);
}

.hero--theme-about {
  --hero-image-position: 54% 34%;
  --hero-decor-ink: rgba(249, 244, 238, 0.52);
  --hero-decor-fill: rgba(255, 255, 255, 0.04);
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.84) 0%, rgba(4, 18, 38, 0.52) 46%, rgba(4, 18, 38, 0.14) 100%);
}

.hero--theme-contact,
.hero--theme-quote {
  --hero-image-position: 50% 34%;
  --hero-decor-ink: rgba(246, 248, 255, 0.54);
  --hero-decor-fill: rgba(255, 255, 255, 0.04);
  --hero-scrim: linear-gradient(90deg, rgba(4, 18, 38, 0.84) 0%, rgba(4, 18, 38, 0.54) 46%, rgba(4, 18, 38, 0.16) 100%);
  --hero-scrim-accent: radial-gradient(circle at 24% 20%, rgba(232, 184, 107, 0.18), transparent 32%), radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.08), transparent 26%);
}

.hero--reverse .hero__inner {
  direction: rtl;
}

.hero--reverse .hero__content,
.hero--reverse .hero__decor {
  direction: ltr;
}

@keyframes hero-float-a {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(-1.5deg);
  }
}

@keyframes hero-float-b {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, 14px, 0) rotate(2deg);
  }
}

@keyframes hero-float-c {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(-3deg);
  }
}

.hero__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 22ch;
  margin-top: 4px;
  z-index: 1;
}

.section {
  display: grid;
  gap: 28px;
  padding: 48px 0 0;
}

.section__header {
  display: grid;
  gap: 10px;
  max-width: 44rem;
}

.section__body {
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.7;
}

.page--home .section__header {
  text-align: center;
  margin-inline: auto;
}

.page--home .section__body {
  margin-inline: auto;
}

.page--home .section__header h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.page--home .hero__content {
  max-width: 34rem;
}

.card-grid,
.split-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 245, 239, 0.96) 100%);
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 14px 34px rgba(7, 31, 61, 0.05);
  backdrop-filter: blur(14px);
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.48), transparent 42%);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 54px rgba(7, 31, 61, 0.08);
    border-color: rgba(7, 31, 61, 0.11);
  }

  .button--ghost:hover {
    background: rgba(255, 255, 255, 0.95);
  }
}

.card__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 130, 30, 0.18);
  background: rgba(201, 130, 30, 0.08);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.ui-icon-image,
.header-action__icon-image,
.site-nav__icon-image,
.site-nav__submenu-icon-image,
.card__icon-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-action__icon,
.site-nav__icon,
.site-nav__submenu-icon,
.card__icon {
  overflow: hidden;
}

.inline-line-icon {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card--image {
  padding: 0 0 18px;
}

.card--link {
  gap: 10px;
  padding-top: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 245, 239, 0.98) 100%);
}

.card--tile {
  gap: 10px;
  padding: 16px 15px 15px;
}

.card--tile:focus-visible {
  outline: 2px solid rgba(201, 130, 30, 0.36);
  outline-offset: 2px;
}

.card--link::after {
  content: '↗';
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(201, 130, 30, 0.88);
  font-size: 1rem;
  line-height: 1;
}

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

.card--image > :not(.card__image) {
  margin-inline: 0;
  padding-inline: 20px;
}

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

.card-grid--home-services .card {
  padding: 15px 14px 14px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(7, 31, 61, 0.04);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 247, 242, 0.98) 100%);
}

.card-grid--home-services .card::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.64), transparent 48%);
}

.card-grid--home-services .card__icon {
  width: 46px;
  height: 46px;
}

.card-grid--home-services .card h3 {
  font-size: 1rem;
  line-height: 1.15;
}

.card-grid--home-services .card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.card-grid--home-services .card__link {
  display: none;
}

.card--image .card__tag {
  margin-top: 12px;
}

.card__tag {
  margin: 0;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  font-weight: 700;
}

.card p {
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.94rem;
}

.card__link {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  opacity: 0.86;
}

.page--home .card h3 {
  font-size: 1.14rem;
  line-height: 1.08;
}

.page--home .card p {
  font-size: 0.9rem;
}

.card__link::after {
  content: '→';
  margin-left: 8px;
  color: var(--gold);
}

.list-grid {
  display: grid;
  gap: 10px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 31, 61, 0.05);
  box-shadow: 0 12px 26px rgba(7, 31, 61, 0.035);
}

.list-item span {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  flex: 0 0 auto;
}

.list-item p {
  line-height: 1.6;
}

.split-grid {
  align-items: start;
}

.timeline article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(7, 31, 61, 0.06);
  box-shadow: 0 14px 32px rgba(7, 31, 61, 0.04);
  display: grid;
  gap: 10px;
}

.timeline span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--grey-mist);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.trust-bar {
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 31, 61, 0.05);
  box-shadow: 0 16px 34px rgba(7, 31, 61, 0.04);
  overflow: hidden;
}

.trust-chip {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.trust-chip span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201, 130, 30, 0.12);
  color: var(--gold);
  font-weight: 800;
}

.trust-chip strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
}

.trust-chip p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.86rem;
}

.feature-band {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.98) 0%, rgba(4, 18, 38, 0.98) 100%);
  box-shadow: 0 22px 52px rgba(7, 31, 61, 0.16);
}

.feature-band__copy {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-band__copy h2 {
  color: #fff;
}

.feature-band__image {
  border-radius: 0;
  box-shadow: none;
  min-height: 230px;
}

.feature-band__image img {
  min-height: 230px;
}

.cta-band {
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 31, 61, 0.98) 0%, rgba(4, 18, 38, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(7, 31, 61, 0.16);
}

.cta-band__content {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.cta-band__content p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: #fff;
}

.cta-band__image {
  border-radius: 0;
  box-shadow: none;
  min-height: 220px;
}

.cta-band__image img {
  min-height: 220px;
}

.blog-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.blog-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.blog-card__media {
  display: block;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.blog-card__tag {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card__body h3 {
  font-size: 1.18rem;
  line-height: 1.12;
}

.blog-card__body h3 a {
  color: inherit;
}

.blog-card__excerpt {
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.94rem;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__meta span + span::before {
  content: '·';
  margin-right: 12px;
  color: rgba(7, 31, 61, 0.35);
}

.article-top {
  margin-top: -6px;
}

.article-intro {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.article-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-meta span {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(7, 31, 61, 0.04);
  border: 1px solid rgba(7, 31, 61, 0.05);
  line-height: 1.45;
}

.article-meta strong {
  color: var(--navy);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.article-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
}

.article-content {
  display: grid;
  gap: 20px;
  padding: 24px;
}

.article-content h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  line-height: 1.14;
  color: var(--navy);
}

.article-content h3 {
  font-size: 1.02rem;
  line-height: 1.16;
}

.article-content p,
.article-content li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.article-section-list {
  display: grid;
  gap: 10px;
}

.article-section-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(7, 31, 61, 0.03);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.article-section-item span {
  width: 10px;
  height: 10px;
  margin-top: 0.46rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  flex: 0 0 auto;
}

.article-section-item p {
  margin: 0;
}

.article-breakdown {
  display: grid;
  gap: 12px;
}

.article-breakdown__item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.article-breakdown__item p {
  margin-top: 8px;
}

.article-sidebar {
  display: grid;
  gap: 14px;
}

.article-sidebar__panel {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.article-sidebar__range {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
}

.page--blog .hero__body {
  max-width: 52rem;
}

.form-panel {
  display: grid;
  gap: 16px;
}

.quote-wizard {
  display: grid;
  gap: 18px;
  align-items: start;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
}

.quote-wizard__rail {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.wizard-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.98));
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 16px 36px rgba(7, 31, 61, 0.05);
}

.wizard-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.02;
}

.wizard-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.wizard-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 236, 0.98));
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 14px 30px rgba(7, 31, 61, 0.05);
}

.wizard-summary__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.wizard-summary__kicker {
  margin: 4px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  line-height: 1.1;
}

.wizard-summary h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  line-height: 1.08;
}

.wizard-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.wizard-summary-list li {
  padding: 9px 12px 9px 34px;
  border-radius: 14px;
  background: rgba(7, 31, 61, 0.035);
}

.wizard-summary-list li::before {
  top: 14px;
}

.wizard-flow {
  display: grid;
  gap: 14px;
}

.wizard-bullets,
.wizard-summary-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wizard-bullets li,
.wizard-summary-list li {
  position: relative;
  padding: 10px 12px 10px 36px;
  border-radius: 16px;
  background: rgba(7, 31, 61, 0.04);
  border: 1px solid rgba(7, 31, 61, 0.05);
  color: var(--text);
  line-height: 1.45;
}

.wizard-bullets li::before,
.wizard-summary-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 130, 30, 0.12);
}

.quote-form--wizard {
  gap: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.quote-modal-open {
  overflow: hidden;
}

html:not(.has-js) body.page--quote main {
  visibility: hidden;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.quote-modal[hidden] {
  display: none !important;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 15, 30, 0.72);
  backdrop-filter: blur(18px);
}

.quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: calc(100vh - 32px);
  overflow: auto;
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(246, 243, 238, 0.985));
  border: 1px solid rgba(7, 31, 61, 0.08);
  box-shadow: 0 26px 72px rgba(5, 15, 30, 0.32);
}

.quote-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 2px;
}

.quote-modal__header-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
  margin-left: auto;
}

.quote-modal__location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: min(100%, 280px);
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(34, 94, 53, 0.18);
  background: rgba(34, 94, 53, 0.09);
  color: #1f6d3c;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(34, 94, 53, 0.08);
}

.quote-modal__header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.18rem, 2.6vw, 1.85rem);
  line-height: 1.12;
}

.quote-modal__header p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote-modal__close {
  flex: none;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 0.88rem;
  font-weight: 700;
}

.quote-modal__close:hover,
.quote-modal__close:focus-visible {
  border-color: rgba(201, 130, 30, 0.38);
  color: var(--gold);
}

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

.quote-form--modal {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.quote-form--modal .wizard-progress {
  padding: 15px;
}

.quote-form--modal .wizard-stage {
  padding: 17px;
}

.wizard-progress {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 243, 238, 0.98));
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 16px 36px rgba(7, 31, 61, 0.05);
}

.wizard-progress__steps {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wizard-progress__step {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 11px 11px 12px;
  border-radius: 16px;
  border: 1px solid rgba(7, 31, 61, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  text-align: left;
  cursor: default;
  box-shadow: 0 8px 20px rgba(7, 31, 61, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.wizard-progress__step span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(7, 31, 61, 0.08);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wizard-progress__step strong {
  display: block;
  font-size: 0.84rem;
  line-height: 1.25;
}

.wizard-progress__step.is-active {
  background: rgba(7, 31, 61, 0.08);
  border-color: rgba(201, 130, 30, 0.34);
  box-shadow: 0 12px 28px rgba(7, 31, 61, 0.08);
}

.wizard-progress__step.is-complete span,
.wizard-progress__step.is-active span {
  background: var(--gold);
  color: #fff;
}

.wizard-progress__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.wizard-stage {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 238, 0.98));
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 16px 36px rgba(7, 31, 61, 0.05);
}

.wizard-stage[hidden] {
  display: none !important;
}

.wizard-stage__hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.wizard-loading,
.wizard-question,
.wizard-review {
  display: grid;
  gap: 12px;
}

.wizard-question__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.wizard-question__counter {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.wizard-question h3,
.wizard-review h3,
.wizard-loading h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.12;
}

.wizard-question__reason {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.wizard-clarification__snapshot {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 31, 61, 0.03);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.wizard-clarification__label {
  margin: 0;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wizard-clarification__range {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  line-height: 1.15;
}

.wizard-clarification__note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.wizard-question-history {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(34, 94, 53, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(245, 250, 245, 0.98), rgba(238, 246, 239, 0.98));
  border: 1px solid rgba(34, 94, 53, 0.1);
  box-shadow: 0 14px 28px rgba(7, 31, 61, 0.04);
}

.wizard-history__heading {
  display: grid;
  gap: 4px;
}

.wizard-history__heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.wizard-history__list {
  display: grid;
  gap: 12px;
}

.wizard-history__item {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(34, 94, 53, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.wizard-history__meta {
  margin: 0;
  color: #1f6d3c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wizard-history__item h4 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.35;
}

.wizard-history__answer,
.wizard-history__effect {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.wizard-history__answer strong {
  color: var(--navy);
}

.wizard-question__options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.wizard-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.wizard-option:hover,
.wizard-option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(201, 130, 30, 0.36);
  box-shadow: 0 10px 24px rgba(7, 31, 61, 0.08);
  color: var(--gold);
}

.wizard-question__text {
  margin-top: 2px;
}

.wizard-review__list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-review__item {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 31, 61, 0.03);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.wizard-review__item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wizard-review__item strong {
  color: var(--navy);
  line-height: 1.55;
  word-break: break-word;
}

.wizard-review__empty {
  color: var(--muted);
  line-height: 1.6;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wizard-actions__note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 236, 0.98));
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 16px 36px rgba(7, 31, 61, 0.05);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201, 130, 30, 0.68);
  box-shadow: 0 0 0 4px rgba(201, 130, 30, 0.14);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  color: var(--muted);
  line-height: 1.65;
}

.form-success {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(47, 125, 91, 0.08);
  border: 1px solid rgba(47, 125, 91, 0.2);
  color: var(--success);
}

.qs-shell {
  padding-top: clamp(2rem, 4vw, 4rem);
  --font-display: var(--font-body);
}

.qs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.qs-chat,
.qs-meter {
  border: 1px solid rgba(7, 31, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.qs-chat {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.qs-chat__header {
  margin-bottom: 1rem;
}

.qs-chat__header h1,
.qs-meter__header h2 {
  margin: 0.2rem 0 0.5rem;
}

.qs-shell h1,
.qs-shell h2,
.qs-shell h3,
.qs-shell .qs-message--assistant::before,
.qs-shell .qs-message--user::before,
.qs-shell .eyebrow {
  font-family: var(--font-body);
}

.qs-shell h1,
.qs-shell h2,
.qs-shell h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.qs-shell h1 {
  font-size: clamp(2.35rem, 6vw, 4.35rem);
}

.qs-shell h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.4rem);
}

.qs-shell h3 {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.qs-shell .eyebrow {
  font-weight: 700;
  letter-spacing: 0.16em;
}

.qs-session-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.75rem;
}

.qs-session-actions .button {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.84rem;
}

.qs-session-toolbar {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.qs-resume {
  display: grid;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 235, 0.96));
  box-shadow: 0 10px 22px rgba(7, 31, 61, 0.06);
}

.qs-resume p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.qs-viewport-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.85rem;
}

.qs-viewport-controls__group {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: rgba(247, 250, 252, 0.82);
}

.qs-viewport-controls__label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qs-viewport-controls__switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.qs-viewport-controls .button.is-selected {
  background: #071f3d;
  color: #fff;
  border-color: #071f3d;
}

.qs-viewport-controls__group--desktop {
  display: grid;
}

.qs-viewport-controls__group--mobile {
  display: none;
}

.qs-messages {
  display: grid;
  gap: 0.85rem;
  max-height: 460px;
  overflow: auto;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid rgba(7, 31, 61, 0.1);
  border-radius: 14px;
  background: rgba(247, 250, 252, 0.82);
}

.qs-message {
  max-width: 84%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(7, 31, 61, 0.08);
}

.qs-message p {
  margin: 0;
}

.qs-message--user {
  justify-self: end;
  background: #071f3d;
  color: #fff;
}

.qs-message--assistant {
  justify-self: start;
}

.qs-message--question {
  max-width: 100%;
  width: min(100%, 760px);
}

.qs-message--assistant::before,
.qs-message--user::before {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.qs-message--assistant::before {
  content: 'BERTINA';
}

.qs-message--user::before {
  content: 'You';
}

.qs-message--thinking {
  position: relative;
}

.qs-message--thinking p {
  animation: qs-thinking-text-pulse 1.35s ease-in-out infinite;
}

.qs-thinking-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.7rem;
}

.qs-thinking-dots__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.45;
  animation: qs-thinking-dot 1s ease-in-out infinite;
}

.qs-thinking-dots__dot:nth-child(2) {
  animation-delay: 120ms;
}

.qs-thinking-dots__dot:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes qs-thinking-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes qs-thinking-text-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

.qs-input {
  display: grid;
  gap: 0.9rem;
}

.qs-input__field {
  position: relative;
  gap: 0.55rem;
}

.qs-input__field textarea {
  min-height: 170px;
  padding-right: 4.25rem;
  padding-bottom: 4.2rem;
}

.qs-input__send {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 132px;
  height: 44px;
  padding: 0 1rem 0 1.05rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--navy), #0d315f);
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 12px 24px rgba(7, 31, 61, 0.22);
  cursor: pointer;
}

.qs-input__send-label {
  font-size: 0.84rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
  color: #fff;
  -webkit-text-fill-color: #fff;
  opacity: 1;
}

.qs-input__send-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transform: translateX(1px);
  color: #fff;
}

.qs-input__send:hover,
.qs-input__send:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(7, 31, 61, 0.26);
}

.qs-input__actions {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
}

.qs-input__actions .button {
  flex: 1 1 0;
  min-width: 0;
}

.qs-mode-toggle {
  display: none;
}

.qs-shell .qs-mode-toggle .button,
.qs-shell .qs-input__report-desktop {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  border-color: transparent;
  color: #f7f6f3;
  box-shadow: 0 12px 24px rgba(7, 31, 61, 0.14);
}

.qs-shell .qs-mode-toggle .button:hover,
.qs-shell .qs-mode-toggle .button:focus-visible,
.qs-shell .qs-input__report-desktop:hover,
.qs-shell .qs-input__report-desktop:focus-visible {
  background: linear-gradient(180deg, #0b294f, #081b35);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(7, 31, 61, 0.22);
}

.qs-shell [hidden] {
  display: none !important;
}

.qs-input.is-loading {
  opacity: 0.68;
  pointer-events: none;
}

.qs-question,
.qs-error {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(7, 31, 61, 0.1);
  background: rgba(255, 255, 255, 0.94);
}

.qs-error {
  border-color: rgba(172, 41, 41, 0.25);
  color: #8a1f1f;
}

.qs-question h3 {
  margin: 0 0 0.45rem;
}

.qs-question__reason {
  color: var(--muted);
}

.qs-question__hint {
  margin: 0.75rem 0 0;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(201, 130, 30, 0.1);
  color: var(--ink);
  font-weight: 700;
}

.qs-question__options {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.qs-question__options .button {
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  white-space: normal;
}

.qs-question__options .button.is-selected {
  background: #071f3d;
  color: #fff;
  border-color: #071f3d;
}

.qs-question__options .button:disabled {
  cursor: default;
  opacity: 0.78;
}

.qs-message--final {
  display: grid;
  gap: 0.8rem;
}

.qs-message--final h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
}

.qs-final-report {
  display: grid;
  gap: 0.85rem;
}

.qs-final-report section {
  display: grid;
  gap: 0.4rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(7, 31, 61, 0.03);
  border: 1px solid rgba(7, 31, 61, 0.08);
}

.qs-final-report h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.qs-final-report ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.qs-final-report li {
  color: var(--text);
  line-height: 1.45;
}

.qs-final-report__footer {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.qs-final-report__publish {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(7, 31, 61, 0.08);
  background: linear-gradient(180deg, rgba(7, 31, 61, 0.04), rgba(7, 31, 61, 0.02));
}

.qs-final-report__publish-label {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.45;
}

.qs-final-report__publish-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.qs-final-report__publish-button {
  justify-self: start;
  min-height: 46px;
  padding-inline: 1.1rem;
}

.qs-meter {
  position: sticky;
  top: 100px;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.qs-meter__content {
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.qs-meter.is-updating .qs-meter__content {
  filter: blur(5px);
  opacity: 0.48;
  transform: scale(0.995);
  pointer-events: none;
  user-select: none;
}

.qs-meter__updating {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(2px);
}

.qs-meter__updating[hidden] {
  display: none;
}

.qs-meter__updating span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #071f3d;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(7, 31, 61, 0.22);
}

.qs-meter__updating span::after {
  content: '';
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.7rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #fff;
  animation: qs-spin 850ms linear infinite;
}

@keyframes qs-spin {
  to {
    transform: rotate(360deg);
  }
}

.qs-meter__grid {
  display: grid;
  gap: 1rem;
}

.qs-meter__grid section {
  padding: 1rem;
  border: 1px solid rgba(7, 31, 61, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.qs-meter__grid h3 {
  margin: 0 0 0.5rem;
  font-size: 0.94rem;
}

.qs-meter__grid ul,
.qs-meter__grid ol {
  margin: 0;
  padding-left: 1.1rem;
}

.qs-meter__grid li {
  margin: 0.35rem 0;
  color: var(--muted);
}

.qs-meter__footer {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(7, 31, 61, 0.08);
}

.qs-meter__footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.qs-meter__more {
  list-style: none;
  margin-left: -1.1rem !important;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: rgba(7, 31, 61, 0.06);
  color: var(--ink) !important;
  font-weight: 700;
}

@media (max-width: 920px) {
  .page--qs .page-shell main {
    padding-inline: 4px;
  }

  .qs-viewport-controls {
    display: none;
  }

  .qs-layout {
    grid-template-columns: 1fr;
  }

  .qs-session-toolbar {
    display: none;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .qs-shell--mobile-prestart .qs-session-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    order: 5;
  }

  .qs-shell--mobile-prestart .qs-session-actions,
  .qs-shell--mobile-prestart .qs-resume {
    margin-top: 0;
    min-width: 0;
  }

  .qs-shell--mobile-prestart .qs-session-actions .button,
  .qs-shell--mobile-prestart .qs-resume .button {
    width: 100%;
    min-height: 38px;
    padding-inline: 0.75rem;
    font-size: 0.8rem;
  }

  .qs-shell--mobile-prestart .qs-chat__header {
    order: 1;
  }

  .qs-shell--mobile-prestart .qs-messages {
    order: 2;
  }

  .qs-shell--mobile-prestart .qs-question {
    order: 3;
  }

  .qs-shell--mobile-prestart .qs-input {
    order: 4;
  }

  .qs-mode-toggle {
    display: block;
  }

  .qs-mode-toggle--chat {
    position: fixed;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
    left: 12px;
    z-index: 240;
    margin: 0;
  }

  .qs-mode-toggle--chat .button,
  .qs-mode-toggle--meter .button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 54px;
    border-radius: 999px;
  }

  .qs-mode-toggle--chat .button::after {
    content: '↓';
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 900;
  }

  .qs-mode-toggle--meter .button::before {
    content: '↑';
    font-size: 1.05rem;
    line-height: 1;
    font-weight: 900;
  }

  body.page--qs .site-footer {
    display: none;
  }

  .qs-shell--mobile-chat .qs-meter {
    display: none;
  }

  .qs-shell--mobile-report .qs-chat {
    display: none;
  }

  .qs-meter {
    position: static;
  }

  .qs-shell--mobile-chat .qs-chat {
    display: grid;
    gap: 0.65rem;
    padding: 0.65rem 0 0.3rem;
  }

  .qs-shell--mobile-chat .qs-chat__header {
    margin-bottom: 0.7rem;
  }

  .qs-messages {
    margin: 0;
  }

  .qs-shell--mobile-chat .qs-messages {
    max-height: none;
    overflow: visible;
  }

  .qs-shell--mobile-chat .qs-question,
  .qs-shell--mobile-chat .qs-input,
  .qs-shell--mobile-chat .qs-error {
    margin-top: 0;
  }

  .qs-shell--mobile-chat .qs-message,
  .qs-shell--mobile-chat .qs-message--question {
    max-width: 100%;
    width: 100%;
  }

  .qs-shell--mobile-chat .qs-input__actions {
    display: none;
  }

  .qs-shell--mobile-chat .qs-input__field textarea {
    min-height: 158px;
    padding-right: 5rem;
    padding-bottom: 4.25rem;
  }

  .qs-shell--mobile-chat .qs-input__send {
    display: inline-flex;
    width: auto;
    min-width: 134px;
    height: 44px;
    right: 10px;
    bottom: 10px;
    padding-inline: 0.95rem 1rem;
  }

  .qs-shell--mobile-report .qs-meter {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 68px);
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    height: auto;
    max-height: none;
    overflow: hidden;
    z-index: 150;
    padding: 0;
  }

  .qs-shell--mobile-report .qs-meter__content {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 0.8rem 0.72rem 1.2rem;
    display: flex;
    flex-direction: column;
  }

  .qs-shell--mobile-report .qs-meter__updating {
    inset: 0.9rem;
  }

  .qs-shell--mobile-report .qs-mode-toggle--meter {
    display: block;
    position: sticky;
    top: 0;
    z-index: 4;
    margin: 0 0 0.85rem;
    padding: 0.2rem 0 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
    backdrop-filter: blur(10px);
  }

  .qs-shell--mobile-report .qs-meter__footer {
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: calc(0.4rem + env(safe-area-inset-bottom, 0px));
  }

  .qs-shell--mobile-report .qs-final-report__publish-button {
    width: 100%;
    justify-self: stretch;
  }
}

.qs-shell--layout-split .qs-chat {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100dvh - 124px);
  overflow: auto;
}

.qs-shell--layout-split .qs-meter {
  position: sticky;
  top: 100px;
}

.qs-shell--layout-stacked .qs-layout {
  grid-template-columns: 1fr;
}

.qs-shell--layout-stacked .qs-chat,
.qs-shell--layout-stacked .qs-meter {
  position: static;
  max-height: none;
  overflow: visible;
}

@media (max-width: 920px) {
  .qs-shell--mobile-report .qs-meter__section--hidden,
  .qs-shell--mobile-report .qs-meter__section--assumptions {
    display: none;
  }
}

.estimate-result {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 130, 30, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 243, 238, 0.98));
  border: 1px solid rgba(7, 31, 61, 0.07);
  box-shadow: 0 18px 40px rgba(7, 31, 61, 0.06);
}

.estimate-result__empty {
  display: grid;
  gap: 10px;
}

.estimate-result__header {
  display: grid;
  gap: 8px;
}

.estimate-result__header h3,
.estimate-result__empty h3 {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  line-height: 1.12;
  color: var(--navy);
}

.estimate-result__header p,
.estimate-result__empty p,
.estimate-result__footer p {
  color: var(--muted);
  line-height: 1.65;
}

.estimate-result__range {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(7, 31, 61, 0.04);
  border: 1px solid rgba(7, 31, 61, 0.06);
}

.estimate-result__range strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1;
}

.estimate-result__range span {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.estimate-result__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estimate-result__panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.estimate-result__panel ul,
.estimate-result__followups p,
.estimate-result__footer p {
  margin: 0;
}

.estimate-result__panel ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.estimate-result__panel li {
  color: var(--muted);
  line-height: 1.55;
}

.estimate-result__label {
  margin: 0;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estimate-result__followups {
  display: grid;
  gap: 12px;
}

.estimate-question {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 31, 61, 0.03);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.estimate-question h4 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.estimate-question__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.estimate-question__options span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 130, 30, 0.12);
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1;
}

.estimate-result__footer {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 4px;
}

.estimate-result__footer > div {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 31, 61, 0.05);
}

.estimate-result__footer a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(201, 130, 30, 0.45);
  text-underline-offset: 0.18em;
}

.estimate-result__footer a:hover,
.estimate-result__footer a:focus-visible {
  color: var(--gold);
}

.estimate-result__error {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(184, 107, 0, 0.08);
  border: 1px solid rgba(184, 107, 0, 0.22);
}

.estimate-result__error h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.site-footer {
  width: min(100%, 100%);
  margin: 44px auto 0;
  padding: 32px 20px 20px;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    'brand'
    'links'
    'meta';
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 130, 30, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 12%,
      rgba(231, 184, 107, 0.24) 50%,
      rgba(255, 255, 255, 0.08) 88%,
      transparent 100%);
  pointer-events: none;
}

.footer-brand {
  grid-area: brand;
  display: grid;
  gap: 12px;
  justify-items: start;
  text-align: left;
}

.footer-brand .brand-logo-wrap {
  max-width: 240px;
}

.footer-brand .brand-logo {
  max-width: 240px;
  max-height: 72px;
}

.footer-brand p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.65;
}

.footer-links {
  grid-area: links;
  display: grid;
  gap: 20px;
}

.footer-links > div {
  position: relative;
  text-align: left;
}

.footer-links h2 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 0;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  text-align: left;
}

.footer-meta p {
  margin: 0;
}

.footer-meta__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.footer-meta__utility {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.footer-meta__utility a {
  display: inline-flex;
  align-items: center;
}

.footer-meta__utility a + a::before {
  content: '·';
  margin-right: 16px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.86em;
}

.footer-meta__credit-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-meta__credit-inline:hover,
.footer-meta__credit-inline:focus-visible {
  color: #fff;
}

.footer-meta__credit-inline img {
  display: block;
  width: auto;
  height: 22px;
}

.footer-credit {
  display: none;
}

@media (max-width: 719px) {
  .site-footer {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 28px 16px 20px;
    gap: 8px;
    border-radius: 28px 28px 0 0;
  }

  .footer-brand {
    gap: 8px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand .brand-logo-wrap,
  .footer-brand .brand-logo {
    margin-inline: auto;
    max-width: 180px;
    max-height: 54px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .footer-links {
    display: none;
  }

  .footer-meta {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: center;
  }

  .footer-meta p {
    display: block;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
  }

  .footer-meta__group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-meta__rights {
    display: block;
  }

  .footer-meta__utility {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    width: 100%;
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .footer-meta__utility a + a::before {
    content: '|';
    margin-right: 12px;
    color: rgba(255, 255, 255, 0.34);
  }

  .footer-meta__credit-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .footer-meta__credit-inline img {
    display: block;
    width: auto;
    height: 22px;
  }

  .footer-credit {
    display: none;
  }

  .quote-modal {
    padding: 0;
    place-items: stretch;
  }

  .quote-modal__dialog {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 12px 12px 16px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    overflow: auto;
  }

  .quote-modal__header {
    position: sticky;
    top: 0;
    z-index: 2;
    align-items: center;
    flex-wrap: nowrap;
    padding: 8px 0 10px;
    background: linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.92) 72%, rgba(251, 250, 247, 0) 100%);
    backdrop-filter: blur(14px);
  }

  .quote-modal__header-actions {
    gap: 8px;
    justify-items: end;
  }

  .quote-modal__location {
    max-width: 160px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .quote-modal__header .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .quote-modal__header h2 {
    max-width: 22ch;
    font-size: 0.98rem;
    line-height: 1.15;
  }

  .quote-modal__header p {
    display: none;
  }

  .quote-modal__close {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .quote-modal__body {
    gap: 12px;
  }

  .wizard-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wizard-summary {
    order: 0;
    padding: 14px;
    border-radius: 18px;
    gap: 10px;
  }

  .wizard-summary__kicker {
    font-size: 1.02rem;
  }

  .wizard-summary h3 {
    font-size: 1.12rem;
  }

  .wizard-summary-list li {
    padding: 8px 10px 8px 30px;
    border-radius: 12px;
  }

  .wizard-summary-list li::before {
    left: 12px;
    top: 13px;
  }

  .wizard-flow {
    gap: 12px;
  }

  .quote-form--modal .wizard-progress {
    padding: 12px;
    border-radius: 18px;
  }

  .quote-form--modal .wizard-stage {
    padding: 14px;
    border-radius: 18px;
  }

  .wizard-progress__steps {
    display: flex;
    gap: 8px;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .wizard-progress__steps::-webkit-scrollbar {
    display: none;
  }

  .wizard-progress__step {
    flex: 1 0 74px;
    min-width: 74px;
    padding: 8px 8px 9px;
    border-radius: 12px;
  }

  .wizard-progress__step span {
    width: 18px;
    height: 18px;
    font-size: 0.66rem;
  }

  .wizard-progress__step strong {
    font-size: 0.72rem;
  }

  .wizard-progress__status {
    font-size: 0.8rem;
  }

  .wizard-question__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wizard-clarification__snapshot {
    padding: 12px 14px;
    gap: 6px;
  }

  .wizard-question-history {
    padding: 12px;
    border-radius: 16px;
  }

  .wizard-history__item {
    padding: 12px 13px;
    border-radius: 14px;
  }

  .wizard-clarification__range {
    font-size: 1rem;
  }

  .wizard-question__options {
    grid-template-columns: 1fr;
  }

  .estimate-result {
    padding: 18px;
    border-radius: 22px;
    gap: 14px;
  }

  .estimate-result__grid,
  .estimate-result__footer {
    grid-template-columns: 1fr;
  }

  .estimate-result__range {
    padding: 12px 14px;
  }

  .estimate-result__range strong {
    width: 100%;
  }

  .estimate-result__panel,
  .estimate-result__footer > div {
    padding: 14px;
  }

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

  .quote-wizard__rail {
    position: static;
  }

  .wizard-review__list {
    grid-template-columns: 1fr;
  }

  .wizard-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-actions .button {
    width: 100%;
  }

  .estimate-question {
    padding: 12px 14px;
  }

  .estimate-question__options {
    gap: 6px;
  }

  .estimate-question__options span {
    font-size: 0.82rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.99);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.16, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

[data-tilt] {
  transform-style: preserve-3d;
  perspective: 1200px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  [data-tilt] {
    transform: none !important;
  }
}

@media (max-width: 719px) {
  :root {
    --mobile-header-height: 65px;
  }

  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    padding: 10px 12px;
    background: rgba(251, 250, 247, 0.97);
    box-shadow: 0 10px 22px rgba(7, 31, 61, 0.08);
    border-bottom-color: rgba(217, 222, 229, 0.75);
    z-index: 280;
  }

  .site-header .brand-logo {
    max-width: 164px;
    max-height: 48px;
  }

  .site-header .nav-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .header-actions {
    display: inline-flex;
    justify-self: end;
    gap: 10px;
    margin-right: 4px;
  }

  .header-action {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 999px;
    font-size: 0.94rem;
  }

  .header-action--home {
    color: var(--icon-ink);
  }

  .header-action--phone {
    display: none;
  }

  .header-action__icon,
  .header-action__icon-image {
    width: 24px;
    height: 24px;
  }

  .site-nav {
    display: grid;
    gap: 6px;
    padding: 14px 12px 12px;
    border-radius: 28px 28px 22px 22px;
    background: rgba(255, 255, 255, 0.98);
    top: calc(var(--mobile-header-height) + 8px);
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100dvh - var(--mobile-header-height) - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    box-shadow: 0 24px 56px rgba(7, 31, 61, 0.22);
    transform: translate3d(0, 18px, 0) scale(0.98);
    z-index: 220;
  }

  .site-nav.is-dragging {
    transition: none !important;
    touch-action: none;
  }

  .site-nav::before {
    content: '';
    width: 46px;
    height: 4px;
    border-radius: 999px;
    background: rgba(100, 112, 131, 0.22);
    justify-self: center;
    margin-bottom: 6px;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(217, 222, 229, 0.96);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 22px rgba(7, 31, 61, 0.06);
    font-size: 0.92rem;
  }

  .site-nav .site-nav__desktop-only {
    display: none;
  }

  .site-nav__icon {
    display: inline-flex;
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .site-nav__submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    margin: 0;
    padding: 0;
    border-left: 0;
  }

  .site-nav__submenu a {
    min-height: 48px;
    padding: 9px 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
  }

  .site-nav-backdrop {
    top: var(--mobile-header-height);
    z-index: 200;
  }

  .site-nav-backdrop.is-open {
    background: rgba(1, 5, 14, 0.58);
  }

  .site-nav__submenu-icon {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }

  .site-nav__submenu-label {
    font-size: 0.77rem;
    line-height: 1.1;
  }

  .card-grid--home-services {
    gap: 10px;
  }

  .card-grid--home-services .card {
    padding: 13px 12px 12px;
    border-radius: 18px;
    gap: 8px;
  }

  .card-grid--home-services .card__icon {
    width: 42px;
    height: 42px;
  }

  .card-grid--home-services .card h3 {
    font-size: 0.95rem;
  }

  .card-grid--home-services .card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  body.menu-open .site-header {
    background: rgba(251, 250, 247, 1);
    background-image: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none;
    box-shadow: 0 10px 24px rgba(7, 31, 61, 0.1);
  }

  .page-shell main {
    padding-top: calc(var(--mobile-header-height) + 8px);
    padding-inline: 14px;
    padding-bottom: 24px;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-of-type(1) {
    transform: translateY(0) rotate(45deg);
    width: 22px;
    left: 12px;
  }

  .nav-toggle.is-open .nav-toggle__line:nth-of-type(2) {
    opacity: 0;
    transform: scaleX(0.1);
  }

  .nav-toggle.is-open .nav-toggle__line:nth-of-type(3) {
    transform: translateY(0) rotate(-45deg);
    width: 22px;
    left: 12px;
  }

  .site-header .nav-toggle.is-open {
    background: rgba(7, 31, 61, 0.06);
  }

  .hero {
    min-height: min(760px, calc(100svh - 72px));
    padding: 12px 0 14px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
    min-height: min(760px, calc(100svh - 72px));
    padding: 10px 14px 0;
  }

  .hero__content {
    gap: 12px;
    width: 100%;
    max-width: none;
    padding: 18px 18px 16px;
    border-radius: 26px;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(251, 250, 247, 0.86);
    box-shadow: 0 18px 36px rgba(7, 31, 61, 0.12);
  }

  .page--home .hero__content {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.22rem, 12vw, 3.5rem);
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__body {
    font-size: 0.92rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
  }

  .hero__pills {
    display: none;
  }

  .hero__badge {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .chip {
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .hero__media {
    border-radius: 0;
  }

  .hero__decor {
    display: none;
  }

  .section {
    gap: 20px;
    padding: 34px 0 0;
  }

  .page--home .section__header {
    text-align: left;
    margin-inline: 0;
  }

  .page--home .section__body {
    margin-inline: 0;
  }

  .page--home .section__header h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .trust-bar {
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(7, 31, 61, 0.06);
  }

  .trust-chip {
    padding: 13px 14px;
  }

  .card-grid,
  .split-grid,
  .timeline {
    gap: 14px;
  }

  .blog-grid,
  .article-layout {
    gap: 14px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-meta {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 17px;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(7, 31, 61, 0.05);
  }

  .card--image {
    padding-bottom: 16px;
  }

  .card__image {
    aspect-ratio: 16 / 11;
  }

  .card--image > :not(.card__image) {
    padding-inline: 16px;
  }

  .list-item {
    padding: 13px 14px;
    border-radius: 18px;
  }

  .timeline article {
    padding: 16px;
    border-radius: 20px;
  }

  .blog-card__body {
    padding: 16px 16px 18px;
  }

  .article-content,
  .article-intro,
  .article-sidebar__panel {
    padding: 18px;
  }

  .article-content {
    gap: 18px;
  }

  .feature-band,
  .cta-band {
    border-radius: 24px;
  }

  .feature-band__image,
  .cta-band__image {
    border-radius: 20px;
  }

  .floating-quote-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 82;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(217, 222, 229, 0.74);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 18px 34px rgba(7, 31, 61, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.58) inset;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 16px, 0) scale(0.98);
    transition:
      opacity 240ms ease,
      transform 260ms cubic-bezier(0.2, 0.72, 0.16, 1),
      box-shadow 220ms ease;
  }

  .floating-quote-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .floating-quote-dock__action {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 76px;
    padding: 10px 8px 11px;
    width: 100%;
    min-width: 0;
    color: var(--navy);
    text-align: center;
  }

  .floating-quote-dock__action + .floating-quote-dock__action {
    box-shadow: inset 1px 0 0 rgba(217, 222, 229, 0.84);
  }

  .floating-quote-dock__action--quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: calc(100% - 8px);
    padding: 0 18px;
    margin: 8px 8px 8px 0;
    min-height: 60px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(224, 178, 91, 0.98), rgba(206, 145, 36, 0.98));
    color: #fff;
    box-shadow:
      0 10px 22px rgba(201, 130, 30, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }

  .floating-quote-dock__icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: currentColor;
  }

  .floating-quote-dock__icon-image {
    width: 100%;
    height: 100%;
  }

  .floating-quote-dock__label {
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .floating-quote-dock__label--quote {
    font-size: 0.92rem;
    font-weight: 700;
  }

  .floating-quote-dock__action--quote .floating-quote-dock__icon {
    width: 20px;
    height: 20px;
    justify-self: end;
    color: rgba(255, 255, 255, 0.98);
  }
}

@media (min-width: 720px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand-logo {
    max-width: 210px;
  }

  .hero {
    min-height: min(800px, 82svh);
  }

  .hero__inner {
    align-items: center;
  }

  .hero__content {
    width: min(100%, 34rem);
  }

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

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

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

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

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

  .feature-band {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .feature-band__image img {
    min-height: 100%;
  }

  .cta-band {
    grid-template-columns: 1fr 0.9fr;
    align-items: stretch;
  }

  .cta-band__image img {
    min-height: 100%;
  }

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

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

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

  .footer-links > div {
    text-align: left;
  }

  .site-header .site-nav__icon {
    display: none;
  }
}

@media (min-width: 720px) and (max-width: 1023px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 14px 16px;
  }

  .site-header .brand-logo {
    max-width: 174px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    grid-column: auto;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: visible;
    gap: 8px 14px;
    border: 0;
    background: transparent;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-wrap: wrap;
    max-width: min(100%, 660px);
  }

  .site-nav a {
    padding: 8px 0;
    color: var(--navy);
    position: relative;
    font-size: 0.85rem;
  }

  .site-nav__summary-link {
    width: auto;
    min-height: 0;
    padding: 8px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--navy);
    position: relative;
    font-size: 0.85rem;
  }

  .site-nav a.is-active::after,
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav__summary-link.is-active::after,
  .site-nav__summary-link:hover::after,
  .site-nav__summary-link:focus-visible::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
  }

  .site-nav a.is-active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--navy);
  }

  .site-nav__summary-link.is-active,
  .site-nav__summary-link:hover,
  .site-nav__summary-link:focus-visible {
    color: var(--navy);
  }

  .site-nav__icon {
    display: none;
  }

  .site-nav__group {
    width: auto;
    position: relative;
    gap: 0;
  }

  .site-nav__submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 356px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(217, 222, 229, 0.64);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(7, 31, 61, 0.1);
    max-height: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    z-index: 190;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav__group.is-open > .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav-backdrop {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .page-shell main {
    padding-inline: 20px;
  }

  .site-footer {
    padding-inline: 20px;
  }

  .floating-quote-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 82;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(217, 222, 229, 0.74);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 18px 34px rgba(7, 31, 61, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.58) inset;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 16px, 0) scale(0.98);
    transition:
      opacity 240ms ease,
      transform 260ms cubic-bezier(0.2, 0.72, 0.16, 1),
      box-shadow 220ms ease;
  }

  .floating-quote-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .floating-quote-dock__action {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 76px;
    padding: 10px 8px 11px;
    width: 100%;
    min-width: 0;
    color: var(--navy);
    text-align: center;
  }

  .floating-quote-dock__action + .floating-quote-dock__action {
    box-shadow: inset 1px 0 0 rgba(217, 222, 229, 0.84);
  }

  .floating-quote-dock__action--quote {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: calc(100% - 8px);
    padding: 0 18px;
    margin: 8px 8px 8px 0;
    min-height: 60px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(224, 178, 91, 0.98), rgba(206, 145, 36, 0.98));
    color: #fff;
    box-shadow:
      0 10px 22px rgba(201, 130, 30, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  }

  .floating-quote-dock__icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: currentColor;
  }

  .floating-quote-dock__icon-image {
    width: 100%;
    height: 100%;
  }

  .floating-quote-dock__label {
    font-size: 0.76rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .floating-quote-dock__label--quote {
    font-size: 0.92rem;
    font-weight: 700;
  }

  .floating-quote-dock__action--quote .floating-quote-dock__icon {
    width: 20px;
    height: 20px;
    justify-self: end;
    color: rgba(255, 255, 255, 0.98);
  }
}

@media (min-width: 1024px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    padding: 16px 24px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    grid-column: auto;
    justify-self: center;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    overflow: visible;
    gap: 28px;
    border: 0;
    background: transparent;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav a {
    padding: 10px 0;
    color: var(--navy);
    position: relative;
  }

  .site-nav__summary-link {
    width: auto;
    min-height: 0;
    padding: 10px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--navy);
    position: relative;
  }

  .site-nav a.is-active::after,
  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav__summary-link.is-active::after,
  .site-nav__summary-link:hover::after,
  .site-nav__summary-link:focus-visible::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
  }

  .site-nav a.is-active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--navy);
  }

  .site-nav__summary-link.is-active,
  .site-nav__summary-link:hover,
  .site-nav__summary-link:focus-visible {
    color: var(--navy);
  }

  .site-nav__group {
    width: auto;
    position: relative;
    gap: 0;
  }

  .site-nav__submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 388px;
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(217, 222, 229, 0.64);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(7, 31, 61, 0.12);
    max-height: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -10px, 0);
    z-index: 190;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav__group.is-open > .site-nav__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .header-cta {
    display: inline-flex;
  }

  .site-nav-backdrop {
    display: none;
  }

  .page-shell main {
    padding-inline: 28px;
  }

  .hero {
    min-height: min(920px, 88svh);
  }

  .hero__inner {
    padding: clamp(28px, 4vw, 56px) 20px clamp(28px, 4vw, 64px);
  }

  .hero__content {
    align-self: center;
    width: min(100%, 38rem);
    padding: clamp(22px, 2.8vw, 34px);
  }

  .hero__decor {
    align-self: center;
  }

  .hero__lead {
    font-size: 1.02rem;
  }

  .hero__body {
    font-size: 0.98rem;
  }

  .hero__glyph:nth-child(1) {
    top: 6%;
    left: 14%;
    width: 70%;
  }

  .hero__glyph:nth-child(2) {
    bottom: 10%;
    right: 0;
    width: 46%;
  }

  .hero__glyph:nth-child(3) {
    top: 34%;
    right: 18%;
    width: 22%;
  }

  .section {
    padding-top: 60px;
  }

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

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

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

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

  .trust-bar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .trust-chip {
    padding: 16px 18px;
    border-right: 1px solid rgba(7, 31, 61, 0.06);
  }

  .trust-chip:last-child {
    border-right: 0;
  }

  .page--home .section__header h2 {
    font-size: clamp(2.1rem, 2.7vw, 3.2rem);
  }

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

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

  .site-footer {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.9fr);
    grid-template-areas:
      'brand links'
      'meta meta';
    padding: 36px 24px 18px;
    gap: 24px 32px;
  }

  .footer-meta {
    justify-content: space-between;
  }

  .footer-links > div {
    display: grid;
    gap: 10px;
    padding: 0 22px 0 0;
  }

  .footer-links > div + div {
    padding-left: 22px;
  }

  .footer-links > div + div::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  }

  .footer-links h2 {
    margin-bottom: 10px;
  }

  .footer-links a {
    display: block;
    width: fit-content;
    padding: 4px 0;
    line-height: 1.4;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: min(980px, 92svh);
  }

  .hero__inner {
    padding-inline: 24px;
  }

  .hero__content {
    width: min(100%, 40rem);
  }

  .hero__inner {
    width: min(100%, 1320px);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --surface: rgba(10, 22, 43, 0.82);
    --surface-strong: rgba(10, 22, 43, 0.94);
    --text: #f5f1e9;
    --muted: rgba(245, 241, 233, 0.84);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.18);
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(201, 130, 30, 0.16), transparent 26%),
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 24%),
      linear-gradient(180deg, #04111f 0%, #071f3d 45%, #081429 100%);
  }

  body::before {
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 55%);
  }

  .site-header {
    background: rgba(7, 31, 61, 0.72);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  body.menu-open .site-header {
    background: rgba(7, 31, 61, 1);
    background-image: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none;
  }

  .nav-toggle {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }

  .site-nav {
    background: rgba(7, 31, 61, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  }

  h1,
  h2,
  h3 {
    color: #f5f1e9;
  }

  .nav-toggle,
  .site-nav a,
  .button--ghost,
  .hero__pills li,
  .chip,
  .card,
  .quote-form,
  .wizard-card,
  .wizard-progress,
  .wizard-stage,
  .wizard-option,
  .wizard-review__item,
  .wizard-bullets li,
  .wizard-summary-list li,
  .cta-band,
  .timeline article,
  .list-item {
    background: rgba(7, 31, 61, 0.58);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav-toggle__line {
    background: #f5f1e9;
  }

  .site-nav a {
    color: #f5f1e9;
  }

  .site-nav a.is-active,
  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--gold-soft);
  }

  .site-nav__icon {
    background: rgba(231, 184, 107, 0.18);
    color: var(--gold-soft);
    box-shadow: inset 0 0 0 1px rgba(231, 184, 107, 0.16);
  }

  .header-action {
    background: transparent;
    border: 0;
    color: #f5f1e9;
    box-shadow: none;
  }

  .header-action--home {
    color: #f5f1e9;
  }

  .header-action--phone {
    color: #f5f1e9;
  }

  .header-action__icon-image {
    filter: brightness(0) saturate(100%) invert(1);
  }

  .header-action:hover,
  .header-action:focus-visible {
    color: var(--gold-soft);
    background: rgba(231, 184, 107, 0.08);
  }

  .header-action:hover .header-action__icon-image,
  .header-action:focus-visible .header-action__icon-image {
    filter: brightness(0) saturate(100%) invert(72%) sepia(24%) saturate(766%) hue-rotate(350deg) brightness(103%) contrast(95%);
  }

  .button--ghost {
    color: #f5f1e9;
  }

  .hero__badge {
    background: rgba(10, 22, 43, 0.88);
  }

  .card__link,
  .eyebrow,
  .footer-links h2 {
    color: var(--gold-soft);
  }

  .section__header h2,
  .card h3,
  .trust-chip strong,
  .timeline article h3 {
    color: #f5f1e9;
  }

  .card p,
  .hero__body,
  .section__body,
  .footer-brand p,
  .footer-links a,
  .footer-meta,
  .list-item p,
  .form-note {
    color: rgba(245, 241, 233, 0.9);
  }

  .footer-brand p {
    color: rgba(255, 255, 255, 0.86);
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.88);
  }

  .footer-meta {
    color: rgba(255, 255, 255, 0.8);
  }

  .footer-credit__link {
    color: rgba(255, 255, 255, 0.76);
  }

  .floating-quote-cta {
    background:
      linear-gradient(180deg, rgba(8, 21, 41, 0.98), rgba(7, 31, 61, 0.94));
    color: #f5f1e9 !important;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(201, 130, 30, 0.08) inset;
  }

  .floating-quote-cta__icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-soft) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }

  .floating-quote-cta__text {
    color: inherit !important;
  }

  .field input,
  .field select,
  .field textarea {
    background: rgba(10, 22, 43, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f5f1e9;
  }

  .wizard-card,
  .wizard-summary,
  .wizard-progress,
  .wizard-stage {
    background:
      radial-gradient(circle at top right, rgba(231, 184, 107, 0.08), transparent 26%),
      rgba(10, 22, 43, 0.88);
    border-color: rgba(231, 184, 107, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  }

  .wizard-card h3,
  .wizard-summary h3,
  .wizard-question h3,
  .wizard-review h3,
  .wizard-loading h3,
  .wizard-review__item strong {
    color: #f5f1e9;
  }

  .wizard-card p,
  .wizard-summary p,
  .wizard-stage__hint,
  .wizard-question__reason,
  .wizard-clarification__note,
  .wizard-progress__status,
  .wizard-actions__note,
  .wizard-review__item p,
  .wizard-review__empty,
  .wizard-bullets li,
  .wizard-summary-list li {
    color: rgba(245, 241, 233, 0.88);
  }

  .wizard-bullets li,
  .wizard-summary-list li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .wizard-summary__kicker {
    color: var(--gold-soft);
  }

  .wizard-clarification__snapshot {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .wizard-clarification__label,
  .wizard-clarification__range {
    color: #f5f1e9;
  }

  .wizard-progress__step,
  .wizard-option {
    background: rgba(10, 22, 43, 0.9);
    border-color: rgba(231, 184, 107, 0.12);
    color: #f5f1e9;
  }

  .wizard-progress__step.is-active {
    background: rgba(231, 184, 107, 0.14);
    border-color: rgba(231, 184, 107, 0.22);
  }

  .wizard-progress__step span,
  .wizard-progress__step.is-active span,
  .wizard-progress__step.is-complete span {
    background: rgba(231, 184, 107, 0.18);
    color: var(--gold-soft);
  }

  .wizard-option:hover,
  .wizard-option:focus-visible {
    border-color: rgba(231, 184, 107, 0.3);
    color: var(--gold-soft);
    background: rgba(231, 184, 107, 0.08);
  }

  .wizard-review__item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .field span {
    color: #f5f1e9;
  }

  .hero__pills li,
  .chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5f1e9 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .card,
  .quote-form,
  .timeline article,
  .list-item {
    background: rgba(10, 22, 43, 0.88);
    border-color: rgba(231, 184, 107, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  }

  .card__icon,
  .list-item span {
    background: rgba(231, 184, 107, 0.14);
    color: var(--gold-soft);
  }

  .trust-bar {
    background: rgba(7, 31, 61, 0.78);
    border-color: rgba(231, 184, 107, 0.12);
  }

  .trust-chip {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
  }

  .trust-chip strong {
    color: #f5f1e9;
  }

  .trust-chip p {
    color: rgba(245, 241, 233, 0.88);
  }

  .button--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .timeline span {
    background: rgba(231, 184, 107, 0.14);
    color: var(--gold-soft);
  }

  .site-nav-backdrop {
    background: rgba(1, 5, 14, 0.18);
    top: var(--mobile-header-height);
  }

  .site-nav-backdrop.is-open {
    background: rgba(1, 5, 14, 0.58);
  }

  .site-nav__submenu a {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #f5f1e9;
  }

  .site-nav__submenu a.is-active,
  .site-nav__submenu a:hover,
  .site-nav__submenu a:focus-visible {
    background: rgba(231, 184, 107, 0.18);
    border-color: rgba(231, 184, 107, 0.28);
    color: var(--gold-soft);
  }

  .site-nav__submenu-icon {
    background: rgba(231, 184, 107, 0.14);
    color: var(--gold-soft);
  }

  @media (max-width: 719px) {
    .site-nav {
      background: rgba(7, 31, 61, 0.98);
      border-color: rgba(231, 184, 107, 0.12);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
    }

    .site-nav::before {
      background: rgba(231, 184, 107, 0.24);
    }

    .site-nav a {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.1);
      color: #f5f1e9;
    }

    .site-nav__submenu a {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .site-nav__icon {
      width: 30px;
      height: 30px;
      font-size: 0.95rem;
    }

    .site-nav a.is-active,
    .site-nav a:hover,
    .site-nav a:focus-visible {
      background: rgba(231, 184, 107, 0.18);
      border-color: rgba(231, 184, 107, 0.28);
      color: var(--gold-soft);
    }
  }

  .skip-link {
    background: #f5f1e9;
    color: var(--navy);
  }
}
