:root {
  --navy: #0a2342;
  --navy-deep: #061730;
  --navy-mid: #1a3a66;
  --gold: #c9a44c;
  --gold-soft: #d9bd76;
  --gold-deep: #a3832e;
  --bg: #ffffff;
  --bg-alt: #f4f5f7;
  --bg-deep: #eaecf0;
  --ink: #0f1822;
  --muted: #5a6577;
  --line: #dee1e6;
  --white: #ffffff;
  --shadow: 0 28px 56px rgba(10, 35, 66, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(2, 10, 22, 0.64);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
  visibility: hidden;
}

body.menu-open::before {
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
  visibility: visible;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 189, 118, 0.8);
  outline-offset: 4px;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item[data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

.reveal-item[data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}

.reveal-item[data-reveal="soft"] {
  transform: translate3d(0, 14px, 0);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: var(--navy);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

p {
  margin: 0;
}

.serif-accent {
  color: var(--gold-deep);
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.container {
  width: min(1280px, calc(100% - 72px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease, border-color 0.3s ease;
}

.site-header.solid,
.site-header.stuck {
  position: sticky;
  top: 0;
  background: rgba(10, 35, 66, 0.98);
  border-bottom: 1px solid rgba(201, 164, 76, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.logo-img {
  display: block;
  width: 150px;
  height: auto;
}

.brand {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.tag {
  margin-top: 6px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown {
  display: flex;
  align-items: center;
}

.nav-links a,
.nav-dropdown summary {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

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

.nav-links a::after,
.nav-dropdown summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown summary:hover,
.nav-dropdown summary.active,
.nav-dropdown[open] summary {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-dropdown summary:hover::after,
.nav-dropdown summary.active::after,
.nav-dropdown[open] summary::after {
  width: 100%;
}

.nav-links > li:last-child > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(201, 164, 76, 0.82);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.nav-links > li:last-child > a:hover,
.nav-links > li:last-child > a.active {
  background: var(--gold-soft);
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transform: scale(1.035);
}

.nav-links > li:last-child > a::after {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 260px;
  gap: 4px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: rgba(6, 23, 48, 0.98);
  border: 1px solid rgba(201, 164, 76, 0.2);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  visibility: hidden;
}

.nav-dropdown[open] .dropdown-menu,
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: none;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  border-color: rgba(201, 164, 76, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 14px 30px;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 35, 66, 0.16);
}

.btn-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

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

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-deep);
}

.btn-line {
  border-color: var(--navy);
  background: transparent;
  color: var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0.54), rgba(6, 23, 48, 0.45) 42%, rgba(6, 23, 48, 0.88)), var(--hero-image, url("title-ten-hq-header-image.jpg"));
  background-position: var(--hero-position, center);
  background-size: cover;
  animation: slowZoom 28s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 28%, rgba(6, 23, 48, 0.46) 100%);
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 86px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(108px, 13vh, 128px) 0 74px;
}

.hero-eyebrow,
.s-eb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-eyebrow::before,
.hero-eyebrow::after,
.s-eb::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.s-eb {
  color: var(--gold-deep);
  margin-bottom: 20px;
}

.s-eb::after {
  display: none;
}

.hero h1 {
  max-width: 1120px;
  margin: 34px 0 30px;
  color: var(--white);
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero h1 .serif-accent,
.dark h2 .serif-accent,
.cta h2 .serif-accent {
  color: var(--gold-soft);
}

.hero-sub {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions,
.cta-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
}

.strip {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(201, 164, 76, 0.15);
  padding: 36px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.strip-item {
  position: relative;
  text-align: center;
}

.strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 1px;
  height: 48px;
  background: rgba(201, 164, 76, 0.22);
  transform: translateY(-50%);
}

.strip-num {
  color: var(--gold-soft);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.strip-num span {
  font-size: 18px;
  font-weight: 600;
}

.strip-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

section {
  position: relative;
  padding: 116px 0;
}

.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-deep {
  background: var(--bg-deep);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 52px);
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.copy h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4.5vw, 56px);
}

.copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.pullquote {
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  color: var(--ink) !important;
  font-family: "Fraunces", Georgia, serif;
  font-size: 21px !important;
  font-style: italic;
  line-height: 1.5 !important;
}

.editorial-image {
  position: relative;
  min-height: 540px;
  background-image: linear-gradient(180deg, rgba(10, 35, 66, 0.1), rgba(10, 35, 66, 0.28)), var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
}

.editorial-image::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.badge {
  position: absolute;
  right: 32px;
  top: 32px;
  background: var(--navy);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  padding: 10px 18px;
  text-transform: uppercase;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  color: var(--navy);
  font-size: 42px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.stat-strip-section {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  border-left: 1px solid var(--gold);
  padding: 6px 0 6px 22px;
}

.stat-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.region-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.region-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0.08), rgba(6, 23, 48, 0.36) 48%, rgba(6, 23, 48, 0.92)), var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  transition: transform 0.8s ease;
}

.region-card:hover::before {
  transform: scale(1.06);
}

.region-hq {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 7px 12px;
  text-transform: uppercase;
}

.region-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 34px 30px;
}

.region-kicker,
.link-arrow {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.region-card h3 {
  margin: 12px 0 8px;
  color: var(--white);
  font-size: 31px;
}

.region-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  transition: color 220ms ease, transform 260ms ease;
}

.link-arrow::after {
  content: "→";
  font-size: 16px;
}

.jump-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.jump-links a {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 12px 14px;
  text-transform: uppercase;
}

.jump-links a:hover,
.jump-links a:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.home-resource-scroll {
  min-height: 150vh;
  padding: 0;
  overflow: clip;
}

.home-resource-scroll > .container {
  position: sticky;
  top: 86px;
  min-height: calc(100vh - 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0;
}

.home-resource-scroll .section-head {
  transition:
    opacity 0.36s ease,
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-resource-scroll.is-scrubbing .section-head {
  opacity: var(--resource-head-opacity, 1);
  transform: translate3d(0, var(--resource-head-y, 0), 0);
}

.home-resource-scroll .card-grid {
  perspective: 1400px;
}

.home-resource-scroll .service-card {
  opacity: var(--card-opacity, 1);
  transform: translate3d(var(--card-x, 0), 0, 0) scale(var(--card-scale, 1));
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.08s linear;
  will-change: transform, opacity;
}

.home-resource-scroll .service-card:hover,
.home-resource-scroll .service-card:focus-visible {
  transform: translate3d(var(--card-x, 0), -4px, 0) scale(var(--card-scale, 1));
}

.tool-card,
.service-card,
.result-card,
.office-card,
.nav-card {
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tool-card,
.service-card {
  min-height: 280px;
  padding: 44px;
}

.tool-card:hover,
.service-card:hover,
.office-card:hover,
.surveyor-card:hover,
.nav-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card-num {
  color: var(--gold-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

/* Explore More navigation cards (about.html) */
.nav-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.nav-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.nav-card-image {
  position: absolute;
  inset: 0;
  background-image: var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  transition: transform 0.8s ease;
}

.nav-card:hover .nav-card-image,
.nav-card:focus-visible .nav-card-image {
  transform: scale(1.05);
}

.nav-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.nav-card-body h3 {
  font-size: 24px;
  letter-spacing: -0.015em;
}

.nav-card-body p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.nav-card .link-arrow {
  margin-top: auto;
  padding-top: 20px;
}

.icon-box {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  margin: 22px 0 24px;
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

.tool-card h3,
.service-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.tool-card p,
.service-card p,
.office-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.28s ease, border-color 0.28s ease;
  will-change: transform;
}

.service-row:first-child {
  border-top: 1px solid var(--line);
}

.service-row > * {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

.service-row:hover,
.service-row:focus-visible {
  border-color: rgba(201, 164, 76, 0.42);
}

.service-row:hover > *:not(:last-child),
.service-row:focus-visible > *:not(:last-child) {
  transform: translateX(10px);
}

.service-row > span:last-child {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
}

.service-row:hover > span:last-child,
.service-row:focus-visible > span:last-child {
  color: var(--gold-deep);
  transform: translateX(6px);
}

.service-row h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.service-row p {
  color: var(--muted);
  font-size: 15px;
}

.dark {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.dark::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 76, 0.14), transparent 70%);
}

.dark h2,
.dark h3,
.dark .s-eb {
  color: var(--white);
}

.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.feature svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--gold);
}

.underwriters {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  padding: 64px 0;
}

.underwriters-label {
  display: block;
  text-align: center;
}

.uw-grid {
  max-width: 860px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.uw {
  position: relative;
  display: grid;
  min-height: 190px;
  place-items: center;
  padding: 42px 30px;
  text-align: center;
}

.uw + .uw {
  border-left: 1px solid var(--line);
}

.uw-link {
  display: grid;
  width: 100%;
  min-height: 86px;
  place-items: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.uw-link:hover {
  opacity: 0.86;
  transform: scale(1.025);
}

.uw-logo {
  width: min(260px, 82%);
  height: 74px;
  object-fit: contain;
  margin: 0 auto;
}

.uw .pending {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 9px;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 126px 0 138px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(6, 23, 48, 0.93), rgba(10, 35, 66, 0.84) 60%, rgba(26, 58, 102, 0.68)), var(--image, url("title-ten-hq-header-image.jpg"));
  background-position: var(--image-position, center);
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 76, 0.16), transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.breadcrumb a:hover,
.breadcrumb-current {
  color: var(--gold-soft);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 82px);
}

.page-hero h1 .serif-accent {
  color: var(--gold-soft);
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 19px;
  line-height: 1.65;
}

.page-meta {
  display: flex;
  gap: 48px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(201, 164, 76, 0.22);
}

.page-meta strong {
  display: block;
  color: var(--gold-soft);
  font-size: 32px;
  line-height: 1;
}

.page-meta span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.svc-block {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.svc-block:nth-child(even) {
  background: var(--bg-alt);
}

.svc-content h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 52px);
}

.svc-tagline {
  color: var(--ink) !important;
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px !important;
  font-style: italic;
  line-height: 1.5 !important;
}

.svc-features {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.svc-content .svc-features + .form-actions {
  margin-top: 30px;
}

.svc-content .form-actions {
  align-self: start;
}

.svc-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 15px;
}

.svc-feature svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  color: var(--gold-deep);
}

.svc-image {
  position: relative;
  min-height: 500px;
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0), rgba(6, 23, 48, 0.12)), var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
}

.svc-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.svc-image-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: var(--white);
  box-shadow: 0 24px 56px rgba(10, 35, 66, 0.18);
  padding: 22px 26px;
}

.svc-image-label strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}

.svc-image-label span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.who-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.who-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 76, 0.22);
  background: rgba(255, 255, 255, 0.04);
  padding: 34px 24px;
  text-align: center;
  transition: border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.who-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 420ms ease;
}

.who-card:hover,
.who-card:focus-within {
  border-color: rgba(201, 164, 76, 0.54);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.who-card:hover::before,
.who-card:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.who-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.who-card p {
  font-size: 13px;
  line-height: 1.6;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 30px;
  align-items: start;
}

.calculator-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.calculator-choice {
  display: grid;
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  padding: 38px;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.calculator-choice:hover,
.calculator-choice:focus-visible {
  border-color: rgba(201, 164, 76, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.calculator-choice .icon-box {
  margin-bottom: 28px;
}

.calculator-choice h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
}

.calculator-choice p {
  max-width: 560px;
  color: var(--muted);
}

.choice-footer {
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.area-link-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.area-link-card:hover,
.area-link-card:focus-visible {
  border-color: rgba(201, 164, 76, 0.62);
  box-shadow: 0 18px 38px rgba(10, 35, 66, 0.1);
  transform: translateY(-3px);
}

.area-link-card h3 {
  margin: 12px 0;
  font-size: 22px;
}

.area-link-card p {
  color: var(--muted);
  font-size: 14px;
}

.area-type {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.calc-panel,
.summary-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 38px;
}

.calc-panel h2,
.summary-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
}

.calc-panel > p,
.summary-panel > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.registration-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(10, 35, 66, 0.04), rgba(201, 164, 76, 0.04)),
    var(--bg-alt);
}

.registration-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(201, 164, 76, 0.24);
  background: rgba(10, 35, 66, 0.98);
  padding: 16px clamp(18px, 5vw, 64px);
  box-shadow: 0 16px 34px rgba(10, 35, 66, 0.18);
}

.registration-brand {
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: #fff;
  padding: 8px 10px;
}

.registration-brand img {
  width: 156px;
  height: auto;
}

.registration-back {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: end;
  background: var(--navy);
}

.registration-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 48, 0.96), rgba(6, 23, 48, 0.72), rgba(6, 23, 48, 0.38)),
    url("/Images/Conference Room.jpg") center / cover;
}

.registration-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(54px, 8vw, 96px);
}

.registration-hero .breadcrumb,
.registration-hero .breadcrumb a,
.registration-hero .breadcrumb-current {
  color: rgba(255, 255, 255, 0.78);
}

.registration-hero h1 {
  max-width: 920px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: -0.035em;
}

.registration-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
}

.registration-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.registration-event-meta span {
  border: 1px solid rgba(201, 164, 76, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.registration-section {
  padding: clamp(44px, 8vw, 90px) 0;
}

.registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.registration-card,
.registration-summary,
.registration-notice-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.registration-card {
  padding: clamp(28px, 5vw, 52px);
}

.registration-card h2,
.registration-summary h2,
.registration-notice-card h1 {
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.registration-card > p {
  max-width: 690px;
  margin: 14px 0 30px;
  color: var(--muted);
  font-size: 18px;
}

.registration-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.registration-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registration-form-grid .full {
  grid-column: 1 / -1;
}

.registration-form-grid input,
.registration-form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.registration-form-grid textarea {
  resize: vertical;
}

.registration-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.registration-summary {
  position: sticky;
  top: 104px;
  padding: clamp(26px, 4vw, 38px);
  background: var(--navy);
  color: #fff;
}

.registration-summary h2,
.registration-summary .s-eb {
  color: #fff;
}

.registration-summary ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.registration-summary li {
  color: rgba(255, 255, 255, 0.78);
}

.registration-mini-card,
.registration-payment-summary {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  border-top: 1px solid rgba(201, 164, 76, 0.28);
  padding-top: 22px;
}

.registration-mini-card strong,
.registration-payment-summary strong {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.registration-mini-card span,
.registration-payment-summary span {
  color: rgba(255, 255, 255, 0.78);
}

.registration-notice {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 44px 18px;
}

.registration-notice-card {
  width: min(100%, 760px);
  padding: clamp(30px, 6vw, 58px);
}

.registration-notice-card p {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.registration-payment-summary {
  border: 1px solid var(--line);
  background: var(--navy);
  padding: 22px;
}

.registration-payment-summary div {
  display: grid;
  gap: 4px;
}

@media (max-width: 900px) {
  .registration-layout {
    grid-template-columns: 1fr;
  }

  .registration-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .registration-topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .registration-brand img {
    width: 138px;
  }

  .registration-hero {
    min-height: 360px;
  }

  .registration-hero-media {
    background:
      linear-gradient(180deg, rgba(6, 23, 48, 0.96), rgba(6, 23, 48, 0.74)),
      url("/Images/Conference Room.jpg") center / cover;
  }

  .registration-hero-inner {
    padding-block: 38px;
  }

  .registration-event-meta span {
    width: 100%;
  }

  .registration-form-grid {
    grid-template-columns: 1fr;
  }

  .registration-actions,
  .registration-actions .btn {
    width: 100%;
  }

  .registration-card,
  .registration-summary,
  .registration-notice-card {
    padding: 22px;
  }
}

.service-detail-hero .hero-actions {
  margin-top: 28px;
}

.service-detail-hero .hero-actions .btn-line {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-deep);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.service-detail-hero .hero-actions .btn-line:hover,
.service-detail-hero .hero-actions .btn-line:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-deep);
}

.service-detail-hero .hero-actions .btn-dark {
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.service-detail-grid .service-card {
  min-height: 230px;
  padding: 32px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.process-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 38px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.process-step span {
  color: var(--gold-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: 17px;
  font-style: italic;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.faq-item[open] {
  border-color: rgba(201, 164, 76, 0.62);
  box-shadow: 0 18px 38px rgba(10, 35, 66, 0.08);
}

.faq-item summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  padding: 22px 24px;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.polished-faq {
  gap: 0;
  border-top: 1px solid var(--line);
}

.polished-faq .faq-item {
  position: relative;
  overflow: clip;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.polished-faq .faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: center;
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.polished-faq .faq-item[open],
.polished-faq .faq-item:hover {
  border-color: rgba(201, 164, 76, 0.5);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
}

.polished-faq .faq-item[open]::before {
  opacity: 1;
  transform: scaleY(1);
}

.polished-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  padding: 20px 18px 20px 22px;
}

.polished-faq summary::-webkit-details-marker {
  display: none;
}

.polished-faq summary span:first-child {
  flex: 1 1 auto;
}

.polished-faq .faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  transition: transform 0.24s ease-out;
}

.polished-faq .faq-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--gold-deep);
  border-right: 2px solid var(--gold-deep);
  transform: translate(-60%, -50%) rotate(45deg);
  transition: border-color 0.18s ease, transform 0.24s ease-out;
}

.polished-faq .faq-item[open] .faq-toggle {
  transform: rotate(90deg);
}

.polished-faq .faq-item[open].is-closing .faq-toggle {
  transform: rotate(0deg);
}

.polished-faq .faq-item[open] .faq-toggle::before {
  border-color: var(--navy);
}

.polished-faq.is-enhanced .faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.74s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.42s ease;
}

.polished-faq .faq-item[open] .faq-answer {
  max-height: var(--faq-height, 420px);
  opacity: 1;
}

.polished-faq .faq-item[open].is-closing .faq-answer {
  max-height: 0 !important;
  opacity: 0 !important;
}

.polished-faq .faq-answer p {
  padding: 0 54px 22px 22px;
}

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

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

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

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

.field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--ink);
  padding: 12px 14px;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold-deep);
  background: var(--white);
}

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

.segmented label,
.check-grid label {
  cursor: pointer;
}

.segmented input,
.check-grid input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  min-height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.segmented input:checked + span,
.segmented input:focus-visible + span {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.endorsement-box {
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 24px;
}

.endorsement-box h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

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

.check-grid span {
  display: block;
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding: 13px 14px;
  text-transform: uppercase;
}

.check-grid input:checked + span,
.check-grid input:focus-visible + span {
  border-color: var(--gold);
  background: rgba(201, 164, 76, 0.14);
  color: var(--navy);
}

.validation-message {
  min-height: 22px;
  margin-top: 18px;
  color: #9b4a16;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.result-card {
  margin-top: 22px;
  padding: 28px;
}

.branded-result {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 251, 0.98));
}

.result-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.result-head h3 {
  font-size: 22px;
}

.estimate-note {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.result-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 15px;
}

.result-line strong {
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.result-line small {
  display: block;
  margin-top: 3px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-line.muted-line strong {
  color: var(--muted);
}

.result-section {
  margin-top: 24px;
}

.result-section h4,
.payer-reference h4 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-subtotal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.payer-reference {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 20px;
}

.payer-reference div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.payer-reference strong {
  color: var(--ink);
}

.result-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

.big-total {
  color: var(--gold-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.disclaimer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.summary-panel {
  position: sticky;
  top: 104px;
  background: var(--navy);
  color: var(--white);
  border-color: rgba(201, 164, 76, 0.28);
}

.summary-panel h2,
.summary-panel h3 {
  color: var(--white);
}

.summary-panel p,
.summary-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.summary-panel ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding-left: 20px;
}

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

.service-map-office-grid {
  margin-top: 36px;
}

.office-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.office-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.office-card-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -8px;
}

.office-card-media {
  position: relative;
  z-index: 2;
  min-height: 300px;
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0.05), rgba(6, 23, 48, 0.16)), var(--image);
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.office-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 42px;
  pointer-events: none;
}

.office-card:hover .office-card-media {
  transform: scale(1.035);
}

.office-card .btn {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.office-card-body .form-actions {
  margin-top: auto;
  padding-top: 34px;
}

.office-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 3vw, 42px);
}

.office-card .status {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.address-line {
  display: inline-block;
  white-space: nowrap;
}

.address-line .address-indent {
  display: block;
  margin-top: 6px;
  padding-left: 0;
  white-space: nowrap;
}

.location-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.location-photo-panel {
  min-height: 520px;
  border: 1px solid rgba(201, 164, 76, 0.46);
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0.08), rgba(6, 23, 48, 0.2)), var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  box-shadow: var(--shadow);
}

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

.location-service-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 28px;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.location-service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.location-service-card span,
.surveyor-preview-card span,
.office-visit-panel span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-service-card h3,
.surveyor-preview-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
}

.location-service-card p,
.surveyor-preview-card p,
.office-visit-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.surveyor-preview-frame {
  position: relative;
  margin-top: 38px;
  overflow: hidden;
}

.surveyor-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.surveyor-preview-card {
  min-height: 210px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
}

.surveyor-preview-card:nth-child(n + 4) {
  opacity: 0.46;
  filter: saturate(0.82);
}

.surveyor-preview-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(246, 247, 249, 0), var(--off-white) 84%);
  pointer-events: none;
}

.surveyor-preview-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: -18px;
}

.surveyor-note {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  text-align: center;
}

.office-visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.office-visit-map {
  min-height: 360px;
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0.04), rgba(6, 23, 48, 0.16)), var(--image);
  background-position: center;
  background-size: cover;
}

.office-visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.office-visit-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.office-visit-details {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.office-visit-details a {
  color: var(--navy);
  font-weight: 800;
}

.office-final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 23, 48, 0.96), rgba(10, 35, 66, 0.82)),
    var(--image) center / cover;
  background-position: 0 0, center calc(50% + var(--cta-bg-y, 0px));
  background-size: auto, cover;
  color: var(--white);
  transition: background-position 80ms linear;
}

.office-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.office-final-panel h2 {
  max-width: 980px;
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(42px, 5.6vw, 78px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.office-final-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.office-final-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.office-final-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

.office-final-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--gold-soft);
}

.office-final-card {
  border: 1px solid rgba(201, 164, 76, 0.48);
  background: rgba(255, 255, 255, 0.08);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.office-final-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.office-final-card strong {
  display: block;
  color: var(--white);
  font-size: 25px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.office-final-card a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: stretch;
}

.coverage-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 38px;
}

.coverage-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
}

.coverage-panel > p {
  color: var(--muted);
  line-height: 1.75;
}

.lookup-field {
  margin-top: 28px;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.filter-btn {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.lookup-status {
  min-height: 24px;
  margin-top: 20px;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.coverage-visual {
  position: relative;
  min-height: 480px;
  background-image: linear-gradient(180deg, rgba(6, 23, 48, 0.06), rgba(6, 23, 48, 0.72)), var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  overflow: hidden;
}

.coverage-visual::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.coverage-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  max-width: 440px;
  background: rgba(6, 23, 48, 0.92);
  color: var(--white);
  padding: 28px;
}

.coverage-card span {
  display: block;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.coverage-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.16;
}

.coverage-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

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

.county-chip {
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 12px;
  text-align: left;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.county-chip:hover,
.county-chip.active {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.county-chip.is-hidden {
  display: none;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 30px;
  align-items: start;
}

.event-list,
.resource-list,
.team-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.event-card,
.resource-card,
.team-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 32px;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease, background-color 260ms ease;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: auto 32px 0 32px;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: opacity 280ms ease, transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.team-card:hover,
.team-card:focus-within {
  border-color: rgba(201, 164, 76, 0.68);
  box-shadow: 0 24px 58px rgba(10, 35, 66, 0.14);
  transform: translateY(-5px);
}

.team-card:hover::before,
.team-card:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transform: scaleY(0.34);
  transform-origin: center;
  transition: opacity 260ms ease, transform 260ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(201, 164, 76, 0.7);
  box-shadow: 0 22px 52px rgba(10, 35, 66, 0.12);
  transform: translateY(-4px);
}

.resource-card:hover::before,
.resource-card:focus-visible::before {
  opacity: 1;
  transform: scaleY(1);
}

.resource-card:hover .link-arrow,
.resource-card:focus-visible .link-arrow {
  transform: translateX(5px);
}

.event-card.featured,
.resource-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.resource-card.featured {
  background: var(--navy);
  color: var(--white);
}

.resource-card.featured:hover,
.resource-card.featured:focus-visible {
  box-shadow: 0 28px 68px rgba(10, 35, 66, 0.2);
  transform: translateY(-5px);
}

.resource-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.resource-card.featured .region-label,
.resource-card.featured .link-arrow {
  color: var(--gold);
}

.event-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 76px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.event-card h3,
.resource-card h3,
.team-card h3,
.contact-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.event-card p,
.resource-card p,
.team-card p,
.contact-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill {
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.calendar-card {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 30px;
}

.calendar-card h3 {
  margin-bottom: 18px;
  font-size: 26px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.calendar-grid .day-label {
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calendar-grid .has-event {
  border-color: var(--gold);
  background: rgba(201, 164, 76, 0.14);
  color: var(--navy);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.surveyor-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.surveyor-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.resource-card .region-label,
.surveyor-card .region-label,
.team-card .role-label {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.surveyor-card h3 {
  margin: 14px 0 10px;
  font-size: 21px;
  letter-spacing: -0.018em;
  line-height: 1.18;
}

.surveyor-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 18px;
}

.surveyor-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.surveyor-card dl > div {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.surveyor-card dt {
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.surveyor-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.card-actions .btn {
  min-height: 38px;
  padding: 10px 14px;
  font-size: 10px;
}

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

.team-photo {
  aspect-ratio: 4 / 5;
  margin: -32px -32px 24px;
  background-image: linear-gradient(135deg, rgba(10, 35, 66, 0.08), rgba(10, 35, 66, 0.26)), var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  transform-origin: center;
  transition: filter 300ms ease, transform 780ms cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-photo,
.team-card:focus-within .team-photo {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.035);
}

.team-card .role-label {
  transition: color 260ms ease, transform 260ms ease;
}

.team-card:hover .role-label,
.team-card:focus-within .role-label {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-method {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-method strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-method a {
  color: var(--gold-deep);
  font-weight: 700;
}

.form-status {
  margin-top: 18px;
  color: var(--gold-deep);
  font-size: 14px;
  font-weight: 700;
}

.cta {
  background: linear-gradient(135deg, rgba(6, 23, 48, 0.93), rgba(26, 58, 102, 0.84)), url("../Images/New downtown shot.png") center / cover;
  background-position: 0 0, center calc(50% + var(--cta-bg-y, 0px));
  background-size: auto, cover;
  color: var(--white);
  text-align: center;
  transition: background-position 80ms linear;
}

.cta h2 {
  margin: 18px auto 22px;
  max-width: 820px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 62px);
}

.cta p {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.footer-brand .logo {
  align-items: center;
}

.footer-brand .logo-plate {
  width: 164px;
  height: 44px;
  padding: 8px 10px;
}

.footer-brand .logo-img {
  width: 142px;
}

.footer-col h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

.footer-col a,
.footer-col span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

.reveal-item {
  transition:
    opacity 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.76s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms, 0ms, 0ms;
}

@media (max-width: 1100px) {
  .split-grid,
  .calculator-grid,
  .event-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .editorial-image,
  .svc-image {
    min-height: 420px;
  }

  .summary-panel {
    position: static;
  }

  .calendar-card {
    position: static;
  }

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

  .card-grid.three,
  .tile-grid,
  .office-grid,
  .resource-grid,
  .surveyor-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .calculator-hub-grid,
  .area-link-grid,
  .location-service-grid,
  .surveyor-preview-grid,
  .office-visit-panel {
    grid-template-columns: 1fr 1fr;
  }

  .office-final-panel {
    grid-template-columns: 1fr;
  }

  .location-story-grid {
    grid-template-columns: 1fr;
  }

  .office-visit-copy {
    padding: 34px;
  }

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

@media (max-width: 920px) {
  .container {
    width: min(100% - 48px, 1280px);
  }

  .site-header,
  .site-header.solid,
  .site-header.stuck {
    position: sticky;
    top: 0;
    background: var(--navy);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  body.menu-open .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px 34px;
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 164, 76, 0.18);
  }

  body.menu-open .nav-item,
  body.menu-open .nav-dropdown {
    width: 100%;
  }

  body.menu-open .nav-dropdown {
    display: block;
  }

  body.menu-open .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    width: 100%;
    margin-top: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  body.menu-open .nav-dropdown:not([open]) .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .hero-content {
    padding-top: 96px;
  }

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

  .strip-item:nth-child(2)::after {
    display: none;
  }

  section {
    padding: 84px 0;
  }

  .page-hero {
    padding: 86px 0 94px;
  }

  .page-meta {
    flex-direction: column;
    gap: 24px;
  }

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

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

@media (max-width: 900px) {
  .home-resource-scroll {
    min-height: auto;
    padding: 72px 0;
  }

  .home-resource-scroll > .container {
    position: static;
    min-height: auto;
    padding: 0;
  }

  .home-resource-scroll .section-head,
  .home-resource-scroll .service-card,
  .home-resource-scroll .service-card:hover,
  .home-resource-scroll .service-card:focus-visible {
    opacity: 1;
    transform: none;
  }

  .who-card:hover,
  .who-card:focus-within,
  .resource-card:hover,
  .resource-card:focus-visible,
  .resource-card.featured:hover,
  .resource-card.featured:focus-visible {
    transform: none;
  }

  .cta,
  .office-final-cta {
    background-position: 0 0, center !important;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 40px, 1280px);
  }

  .brand {
    font-size: 18px;
  }

  .logo-plate {
    width: 148px;
    height: 40px;
    padding: 7px 9px;
  }

  .logo-img {
    width: 126px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-sub,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .strip-grid,
  .card-grid,
  .card-grid.three,
  .tile-grid,
  .stat-strip,
  .who-grid,
  .form-grid,
  .check-grid,
  .office-grid,
  .resource-grid,
  .surveyor-grid,
  .team-grid,
  .county-grid,
  .footer-grid,
  .uw-grid,
  .calculator-hub-grid,
  .area-link-grid,
  .location-service-grid,
  .surveyor-preview-grid,
  .office-visit-panel {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-left: 0;
    padding-left: 0;
  }

  [data-regional-resources] .resource-card.featured {
    order: 10;
  }

  .location-photo-panel,
  .office-visit-map {
    min-height: 300px;
  }

  .underwriters {
    padding: 44px 0;
  }

  .uw-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .uw {
    min-height: 124px;
    padding: 30px 10px 22px;
  }

  .uw + .uw {
    border-left: 1px solid var(--line);
  }

  .uw-logo {
    width: min(142px, 92%);
    height: 48px;
  }

  .uw .pending {
    top: 8px;
    right: 8px;
    font-size: 7px;
    letter-spacing: 0.1em;
    padding: 4px 6px;
  }

  .office-visit-copy {
    padding: 28px;
  }

  .office-final-panel h2 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.03;
  }

  .office-final-panel p {
    font-size: 16px;
    line-height: 1.65;
  }

  .office-final-card strong {
    font-size: 21px;
  }

  .surveyor-preview-card:nth-child(n + 4) {
    display: none;
  }

  .surveyor-preview-frame::after {
    display: none;
  }

  .surveyor-preview-actions {
    margin-top: 22px;
  }

  .coverage-panel,
  .coverage-card {
    padding: 28px;
  }

  .uw + .uw {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .coverage-visual {
    min-height: 380px;
  }

  .strip-item::after {
    display: none;
  }

  .uw + .uw {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .tool-card,
  .service-card,
  .calc-panel,
  .summary-panel,
  .event-card,
  .resource-card,
  .surveyor-card,
  .team-card,
  .contact-card,
  .calendar-card {
    padding: 28px;
  }

  .office-card {
    min-height: auto;
    padding: 0;
  }

  .office-card-media {
    min-height: 220px;
  }

  .office-card-body {
    padding: 28px;
  }

  .calculator-choice,
  .area-link-card {
    min-height: auto;
    padding: 28px;
  }

  .team-photo {
    margin: -28px -28px 22px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ---------- Calendar (education page) ---------- */
.cal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cal-head-meta .s-eb {
  margin-bottom: 10px;
}

.cal-head-meta h3 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1;
}

.cal-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cal-nav-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cal-nav-btn svg {
  width: 18px;
  height: 18px;
}

.cal-nav-btn:hover {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.cal-today-btn {
  min-height: 38px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0 14px;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.cal-today-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.cal-day-labels {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

.cal-day-label {
  text-align: center;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.cal-day {
  position: relative;
  min-width: 0;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 8px 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.cal-day-empty {
  background: transparent;
  border-color: transparent;
}

.cal-day-num {
  position: relative;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}

.cal-day.is-past {
  opacity: 0.5;
}

.cal-day.is-today {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}

.cal-day.is-today .cal-day-num {
  color: var(--gold-deep);
  font-weight: 800;
}

.cal-day.has-events {
  background: rgba(201, 164, 76, 0.06);
}

.cal-today-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.cal-day-events {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  min-width: 0;
}

.cal-event-pill {
  display: block;
  width: 100%;
  border: 0;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  padding: 5px 7px;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.2s ease, color 0.2s ease;
}

.cal-event-pill:hover,
.cal-event-pill:focus-visible {
  background: var(--gold);
  color: var(--navy-deep);
}

.cal-event-more {
  border: 0;
  background: transparent;
  color: var(--gold-deep);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 7px;
  text-align: left;
  text-transform: uppercase;
}

.cal-event-more:hover {
  color: var(--navy);
}

.cal-agenda {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cal-agenda-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 16px 18px;
}

.cal-agenda-item.is-past {
  opacity: 0.55;
}

.cal-agenda-date {
  display: grid;
  place-items: center;
  width: 68px;
  padding: 10px 4px;
  border: 1px solid var(--gold);
  color: var(--navy);
  text-align: center;
}

.cal-agenda-month {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cal-agenda-day {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}

.cal-agenda-weekday {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cal-agenda-title {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0 0 4px;
  padding: 0;
  text-align: left;
}

.cal-agenda-title:hover {
  color: var(--gold-deep);
}

.cal-agenda-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cal-agenda-empty,
.cal-list-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.cal-popover-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(6, 23, 48, 0.46);
  animation: cal-fade 0.18s ease;
}

.cal-popover {
  position: absolute;
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  border: 1px solid var(--gold);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px 22px 24px;
  animation: cal-fade 0.18s ease;
}

.cal-popover.is-sheet {
  position: fixed;
  left: 50%;
  bottom: 24px;
  top: auto;
  width: min(420px, calc(100vw - 24px));
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 -20px 60px rgba(6, 23, 48, 0.4);
  animation: cal-slide 0.22s ease;
  transform: translateX(-50%);
}

@keyframes cal-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cal-slide {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.cal-popover-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cal-popover-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 0;
}

.cal-popover-close:hover {
  color: var(--navy);
}

.cal-popover h4 {
  margin: 0 0 14px;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.cal-popover-meta {
  display: grid;
  gap: 0;
  margin: 0 0 16px;
}

.cal-popover-meta > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.cal-popover-meta dt {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cal-popover-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
}

.cal-popover > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.cal-popover-actions {
  display: flex;
  gap: 10px;
}

.cal-popover-actions .btn {
  flex: 1;
  min-height: 42px;
  padding: 10px 18px;
}

.cal-poplist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cal-poplist button {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.4;
  padding: 12px 14px;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cal-poplist button:hover {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
}

.cal-poplist-time {
  display: block;
  margin-top: 4px;
  color: var(--gold-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cal-poplist button:hover .cal-poplist-time {
  color: var(--gold-soft);
}

@media (max-width: 700px) {
  .cal-day-labels,
  .cal-grid {
    display: none;
  }

  .cal-head {
    flex-wrap: wrap;
  }
}

@media (min-width: 701px) {
  .cal-agenda,
  .cal-agenda-empty {
    display: none;
  }
}

/* ---------- Mobile polish ---------- */
@media (max-width: 920px) {
  html {
    scroll-padding-top: 76px;
  }

  .nav {
    min-height: 72px;
    gap: 16px;
  }

  .site-header,
  .site-header.solid,
  .site-header.stuck {
    border-bottom: 1px solid rgba(201, 164, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle line {
    transform-box: fill-box;
    transform-origin: center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.menu-open .menu-toggle line:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .menu-toggle line:nth-of-type(2) {
    opacity: 0;
  }

  body.menu-open .menu-toggle line:nth-of-type(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    max-height: calc(100dvh - 72px);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    overflow-y: auto;
    padding: 14px 24px 20px;
    background: var(--navy-deep);
    border-top: 1px solid rgba(201, 164, 76, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
    visibility: hidden;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  body.menu-open .nav-links {
    position: absolute;
    display: flex;
  }

  body.menu-open .nav-links {
    max-height: calc(100dvh - 72px);
    gap: 4px;
    overflow-y: auto;
    padding: 14px 24px 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  }

  body.menu-open .nav-item {
    display: block;
  }

  body.menu-open .nav-links > li {
    width: 100%;
  }

  body.menu-open .nav-links a,
  body.menu-open .nav-dropdown summary {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  body.menu-open .nav-links > li:last-child > a {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    margin-top: 8px;
    border-bottom: 1px solid rgba(201, 164, 76, 0.82);
  }

  body.menu-open .nav-links a::after,
  body.menu-open .nav-dropdown summary::after {
    display: none;
  }

  body.menu-open .nav-dropdown summary {
    padding-right: 32px;
  }

  body.menu-open .nav-dropdown summary::before {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--gold-soft);
    border-bottom: 2px solid var(--gold-soft);
    transform: translateY(-62%) rotate(45deg);
    transition: transform 0.22s ease;
  }

  body.menu-open .nav-dropdown[open] summary::before {
    transform: translateY(-34%) rotate(225deg);
  }

  body.menu-open .nav-dropdown .dropdown-menu {
    display: grid;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: max-height 0.24s ease, opacity 0.2s ease, margin 0.24s ease, padding 0.24s ease, border-color 0.2s ease, visibility 0.2s ease;
    visibility: hidden;
  }

  body.menu-open .nav-dropdown[open] .dropdown-menu {
    display: grid;
    max-height: 280px;
    margin: 6px 0 10px;
    padding: 8px;
    border-color: rgba(201, 164, 76, 0.22);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  body.menu-open .nav-dropdown:not([open]) .dropdown-menu {
    display: grid;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  body.menu-open .dropdown-menu a {
    min-height: 44px;
    padding: 11px 12px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    letter-spacing: 0.03em;
    text-transform: none;
  }

  .card-actions .btn {
    min-height: 42px;
    padding: 10px 14px;
  }

  .page-hero {
    padding: 78px 0 82px;
  }

  .page-hero h1 {
    max-width: 720px;
    font-size: clamp(40px, 8vw, 64px);
  }

  .page-meta {
    margin-top: 38px;
    padding-top: 24px;
  }

  .cal-nav-btn {
    width: 44px;
    height: 44px;
  }

  .cal-today-btn {
    min-height: 44px;
  }
}

@media (max-width: 700px) {
  .cal-head {
    align-items: flex-start;
    gap: 14px;
  }

  .cal-head-meta h3 {
    font-size: 24px;
  }

  .cal-nav {
    width: 100%;
    justify-content: space-between;
  }

  .cal-nav-btn {
    width: 44px;
    height: 44px;
  }

  .cal-today-btn {
    min-height: 44px;
    flex: 1;
  }

  .cal-agenda-item {
    gap: 14px;
    padding: 14px;
  }

  .cal-popover.is-sheet {
    bottom: 12px;
    width: min(420px, calc(100vw - 20px));
    max-height: calc(100dvh - 24px);
    padding: 20px;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1280px);
  }

  .nav {
    min-height: 66px;
  }

  .logo-plate {
    width: 136px;
    height: 36px;
    padding: 6px 8px;
  }

  .logo-img {
    width: 116px;
  }

  body.menu-open .nav-links {
    max-height: calc(100dvh - 66px);
    padding-inline: 16px;
  }

  section {
    padding: 62px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .copy h2,
  .coverage-panel h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .section-head p,
  .copy p,
  .coverage-panel > p {
    font-size: 15px;
    line-height: 1.68;
  }

  .s-eb,
  .hero-eyebrow {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .s-eb::before,
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 24px;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero-content {
    min-height: calc(100svh - 66px);
    padding: 54px 0 34px;
  }

  .hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(34px, 10.2vw, 40px);
    line-height: 1.03;
  }

  .hero-sub,
  .page-hero p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-actions,
  .cta-actions,
  .form-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-scroll {
    display: none;
  }

  .btn {
    min-height: 46px;
    padding: 12px 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .page-hero {
    padding: 64px 0 68px;
  }

  .breadcrumb {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(31px, 8.8vw, 38px);
    line-height: 1.04;
  }

  .page-meta {
    display: none;
  }

  .page-meta strong {
    font-size: 24px;
  }

  .page-meta span {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .split-grid,
  .calculator-grid,
  .event-layout,
  .contact-layout {
    gap: 34px;
  }

  .editorial-image,
  .svc-image {
    min-height: 300px;
  }

  .svc-block {
    padding: 58px 0;
  }

  .svc-block .split-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .svc-content {
    order: 2;
  }

  .svc-content h2 {
    margin-bottom: 16px;
    font-size: 31px;
  }

  .svc-tagline {
    font-size: 16px !important;
  }

  .svc-features {
    gap: 10px;
    margin-top: 20px;
  }

  .svc-feature {
    font-size: 14px;
    line-height: 1.55;
  }

  .svc-image {
    order: 1;
    min-height: 220px;
    width: 100%;
  }

  .svc-image::before,
  .svc-image-label {
    display: none;
  }

  .editorial-image::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .pullquote {
    padding-left: 16px;
    font-size: 18px !important;
  }

  .tool-card,
  .service-card,
  .calc-panel,
  .summary-panel,
  .event-card,
  .resource-card,
  .surveyor-card,
  .team-card,
  .contact-card,
  .calendar-card,
  .calculator-choice,
  .area-link-card,
  .coverage-panel,
  .coverage-card {
    padding: 22px;
  }

  .calculator-choice {
    min-height: 300px;
  }

  .choice-footer {
    margin-top: 30px;
    padding-top: 18px;
  }

  .service-detail-grid .service-card {
    min-height: 0;
    padding: 24px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 20px 20px;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .polished-faq summary {
    gap: 14px;
    padding: 17px 12px 17px 16px;
  }

  .polished-faq .faq-toggle {
    width: 22px;
    height: 22px;
  }

  .polished-faq .faq-answer p {
    padding: 0 38px 19px 16px;
  }

  .field input,
  .field select,
  .segmented span {
    min-height: 48px;
  }

  .endorsement-box {
    margin-top: 22px;
    padding: 18px;
  }

  .check-grid span {
    min-height: 46px;
    padding: 12px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .result-card {
    padding: 20px;
  }

  .result-head,
  .result-line,
  .result-subtotal,
  .payer-reference div {
    gap: 12px;
  }

  .result-head {
    flex-direction: column;
  }

  .result-line {
    display: grid;
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  .result-line strong,
  .result-line small {
    text-align: left;
    white-space: normal;
  }

  .result-subtotal,
  .payer-reference div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .result-total {
    font-size: 18px;
  }

  .big-total {
    font-size: 25px;
  }

  .coverage-visual {
    min-height: 320px;
  }

  .coverage-visual::after {
    inset: 16px;
  }

  .coverage-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .coverage-card strong {
    font-size: 22px;
  }

  .filter-btn,
  .county-chip {
    min-height: 44px;
    font-size: 11px;
  }

  .office-card-media {
    min-height: 190px;
  }

  .office-card-body {
    padding: 22px;
  }

  .surveyor-card h3,
  .event-card h3,
  .resource-card h3,
  .team-card h3,
  .contact-card h3 {
    font-size: 20px;
  }

  .card-actions {
    gap: 8px;
  }

  .card-actions .btn {
    min-height: 42px;
    flex: 1 1 auto;
    padding: 10px 12px;
  }

  .site-footer {
    padding: 42px 0 24px;
  }

  .footer-brand p {
    margin-top: 16px;
    font-size: 13.5px;
  }

  .footer-col h2 {
    margin-bottom: 12px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .logo-plate {
    width: 126px;
    height: 34px;
  }

  .logo-img {
    width: 108px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  section {
    padding: 54px 0;
  }

  .hero-content {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 37px);
  }

  .hero-sub,
  .page-hero p {
    font-size: 15px;
  }

  .page-hero h1 {
    font-size: clamp(30px, 8.8vw, 36px);
  }

  .section-head h2,
  .copy h2,
  .coverage-panel h2 {
    font-size: 31px;
  }

  .tool-card,
  .service-card,
  .calc-panel,
  .summary-panel,
  .event-card,
  .resource-card,
  .surveyor-card,
  .team-card,
  .contact-card,
  .calendar-card,
  .calculator-choice,
  .area-link-card,
  .coverage-panel,
  .coverage-card {
    padding: 20px;
  }

  .cal-agenda-item {
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .cal-agenda-date {
    width: 58px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, 1280px);
  }

  .logo-plate {
    width: 118px;
    padding: 5px 7px;
  }

  .logo-img {
    width: 100px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .btn {
    padding-inline: 14px;
    letter-spacing: 0.08em;
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }

  .home-resource-scroll {
    min-height: auto;
    padding: 88px 0;
  }

  .home-resource-scroll > .container {
    position: static;
    min-height: auto;
    padding: 0;
  }

  .home-resource-scroll .section-head,
  .home-resource-scroll .service-card,
  .home-resource-scroll .service-card:hover,
  .home-resource-scroll .service-card:focus-visible {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .page-hero,
  .summary-panel,
  .cta,
  .site-footer,
  .form-actions,
  .print-hide {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  section {
    padding: 0;
  }

  .container {
    width: 100%;
  }

  .calculator-grid {
    display: block;
  }

  .calc-panel {
    border: 0;
    padding: 0;
  }

  .result-card {
    page-break-inside: avoid;
    border-color: #999;
    box-shadow: none;
  }

  .endorsement-box,
  .live-form,
  .validation-message {
    display: none;
  }

  .branded-result {
    border: 1px solid #999;
    background: #fff;
  }

  .result-line,
  .result-subtotal,
  .payer-reference div {
    break-inside: avoid;
  }
}
