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

:root {
  --navy: #000615;
  --header: #202331;
  --red: #d20401;
  --soft-red: #ffdce4;
  --paper: #ffffff;
  --wash: #f2f7fb;
  --muted: #617085;
  --line: #dbe4ed;
  --shadow: 0 24px 60px rgba(0, 6, 21, 0.13);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

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

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--header);
  color: var(--paper);
  min-height: 97px;
}

.header-inner {
  width: min(1360px, calc(100% - 72px));
  min-height: 97px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 178px;
  min-height: 52px;
  padding: 7px 0 4px 22px;
  color: var(--paper);
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 38px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.brand-logo::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 166px;
  height: 13px;
  background: var(--paper);
  clip-path: polygon(0 100%, 19% 20%, 64% 18%, 100% 0, 96% 40%, 62% 40%, 23% 44%, 4% 100%);
}

.brand-logo strong {
  position: relative;
  z-index: 1;
  font-size: 23px;
  letter-spacing: -0.5px;
}

.brand-logo em {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 2px;
  padding: 2px 5px 2px 6px;
  background: var(--paper);
  color: var(--header);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
}

.desktop-nav > a,
.nav-drop > span {
  display: flex;
  align-items: center;
  min-height: 97px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.nav-drop:hover > span {
  color: var(--red);
}

.nav-drop {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  top: 78px;
  left: -22px;
  width: 260px;
  padding: 12px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-drop-menu--mega {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, calc(100vw - 52px));
}

.nav-drop-menu--mega .nav-menu-group {
  min-width: 0;
}

.nav-menu-group strong {
  display: block;
  padding: 8px 11px 5px;
  color: var(--red);
  font-size: 11px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 9px 11px;
  border-radius: 9px;
  color: var(--navy);
  line-height: 1.25;
}

.nav-drop-menu a:hover {
  background: var(--wash);
  color: var(--red);
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.header-phone:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.search-dot {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: var(--paper);
  opacity: 0.9;
}

.search-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 7px 7px 0 -5px currentColor;
}

.bid-button,
.red-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 18px;
  border-radius: 10px;
  border: 0;
  color: var(--paper);
  background: var(--red);
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bid-button {
  min-height: 40px;
  padding: 11px 15px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--red);
  font-size: 13px;
  white-space: nowrap;
}

.bid-button .button-icon,
.red-button .button-icon,
.outline-button .button-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: currentColor;
  color: var(--paper);
  font-size: 10px;
  line-height: 1;
}

.red-button .button-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--paper);
}

.red-button:hover,
.outline-button:hover,
.bid-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(210, 4, 1, 0.24);
}

.outline-button {
  border: 2px solid var(--red);
  color: var(--red);
  background: var(--paper);
}

.mobile-toggle {
  display: none;
}

.mobile-menu-button {
  display: none;
  width: 38px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 7px;
  color: var(--paper);
  cursor: pointer;
}

.mobile-menu-button span,
.mobile-menu-button span::before,
.mobile-menu-button span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.mobile-menu-button span {
  position: relative;
}

.mobile-menu-button span::before,
.mobile-menu-button span::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-menu-button span::before {
  top: -6px;
}

.mobile-menu-button span::after {
  top: 6px;
}

.mobile-panel {
  display: none;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: var(--header);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-panel nav {
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 10px 18px 18px;
  display: grid;
  gap: 3px;
}

.mobile-panel a {
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

.mobile-toggle:checked ~ .header-inner .mobile-menu-button span {
  background: transparent;
}

.mobile-toggle:checked ~ .header-inner .mobile-menu-button span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle:checked ~ .header-inner .mobile-menu-button span::after {
  top: 0;
  transform: rotate(-45deg);
}

.home-hero {
  position: relative;
  min-height: 700px;
  padding: 84px 0 145px;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  border-bottom-left-radius: 160px 72px;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 14% 100%, 0 87%);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 58%;
  background: linear-gradient(90deg, rgba(0, 6, 21, 0.7), rgba(0, 6, 21, 0.1)), var(--hero-image) center / cover no-repeat;
  opacity: 0.6;
}

.home-hero::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 170px;
  width: 380px;
  height: 230px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 55%, 46% 0, 100% 55%, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: var(--red);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 65px;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--paper);
}

.hero-copy p {
  max-width: 610px;
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 18px;
  font-weight: 600;
}

.hero-image-card {
  position: relative;
  margin-top: 42px;
  padding: 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-image-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  border-radius: 10px;
}

.section {
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
  padding: 90px 0;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.center-heading h2,
.section-title,
.split-copy h2,
.index-title,
.article h2,
.contact-title {
  margin: 0;
  color: var(--navy);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.center-heading h2 span,
.split-copy h2 span,
.section-title span,
.index-title span {
  color: var(--red);
}

.center-heading p,
.split-copy p,
.article p,
.intro-text {
  color: #263346;
}

.tab-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: -1px;
}

.tab-row a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 61px;
  padding: 0 34px;
  border-radius: 12px 12px 0 0;
  background: #ffe5eb;
  color: var(--red);
  font-weight: 900;
}

.tab-row a:first-child {
  background: #ffcbd6;
  border-bottom: 5px solid var(--red);
}

.service-feature {
  position: relative;
  padding: 20px 90px;
  border-radius: 0 0 8px 8px;
  background: var(--soft-red);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: center;
  min-height: 330px;
  padding: 22px;
  border-radius: 22px;
  background: var(--paper);
}

.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.feature-card h3,
.card h3,
.article h3,
.dark-card h3 {
  margin: 0 0 10px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.14;
}

.feature-card p,
.card p,
.dark-card p {
  margin: 0 0 18px;
  color: #35445a;
}

.round-arrow {
  position: absolute;
  top: 50%;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
}

.round-arrow.left {
  left: 30px;
}

.round-arrow.right {
  right: 30px;
}

.split {
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 70px;
}

.split-image {
  position: relative;
  padding-top: 48px;
}

.split-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 54px;
  width: 240px;
  height: 138px;
  background: var(--navy);
  clip-path: polygon(0 100%, 0 42%, 34% 42%, 34% 0, 55% 0, 55% 42%, 100% 42%, 100% 100%);
}

.split-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 0 22px 22px 42px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.chip-row a,
.chip-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--wash);
  color: #203044;
  font-weight: 900;
}

.evidence-band {
  text-align: center;
}

.dark-panel {
  width: min(970px, 100%);
  margin: 32px auto 0;
  padding: 34px 42px;
  border-radius: 18px;
  background: #202331;
  color: var(--paper);
  text-align: left;
}

.dark-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: stretch;
  gap: 32px;
  text-align: left;
}

.evidence-copy {
  padding: 42px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--paper);
}

.evidence-copy h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 44px;
  line-height: 1.05;
}

.evidence-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.77);
  font-weight: 700;
}

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

.evidence-cards a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 22px;
  background: var(--wash);
  color: var(--navy);
  box-shadow: 0 7px 20px rgba(0, 6, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.evidence-cards a::after {
  content: "→";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-weight: 900;
}

.evidence-cards a:hover {
  transform: translateY(-3px);
  background: #fff7f9;
  box-shadow: var(--shadow);
}

.evidence-cards strong {
  display: block;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
}

.evidence-cards span {
  display: block;
  margin: 14px 0 26px;
  color: #34445b;
  font-weight: 700;
}

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

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

.card {
  position: relative;
  min-height: 248px;
  padding: 24px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(0, 6, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 190px;
  margin-bottom: 22px;
  border-radius: 12px;
  object-fit: cover;
}

.card .arrow-link,
.image-card .arrow-link {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
}

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

.dark-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--navy);
  color: var(--paper);
}

.dark-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 220ms ease, opacity 220ms ease;
}

.dark-card:hover img {
  transform: scale(1.04);
  opacity: 0.6;
}

.dark-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.82);
}

.area-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 22px;
  max-width: 850px;
}

.area-buttons a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--wash);
  color: #203044;
  font-weight: 900;
}

.location-map-section {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: center;
  padding-top: 70px;
}

.location-map-copy {
  padding: 38px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--paper);
}

.location-map-copy .section-title {
  color: var(--paper);
}

.location-map-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.location-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin: 26px 0;
}

.location-search input,
.location-search button {
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  padding: 0 16px;
  font-weight: 800;
}

.location-search input {
  background: var(--paper);
  color: var(--navy);
}

.location-search button {
  background: var(--red);
  color: var(--paper);
  cursor: pointer;
}

.wv-map-card {
  min-height: 560px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 24%, rgba(210, 4, 1, 0.1), transparent 30%),
    linear-gradient(135deg, #f8fbff, #eef4fa);
  box-shadow: var(--shadow);
}

.wv-map {
  width: 100%;
  min-height: 410px;
}

.wv-shape {
  fill: #ffffff;
  stroke: var(--navy);
  stroke-width: 5;
  filter: drop-shadow(0 18px 25px rgba(0, 6, 21, 0.12));
}

.wv-river {
  fill: none;
  stroke: #8cb7d1;
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0.8;
}

.wv-map a circle {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 3;
}

.wv-map a text {
  fill: var(--navy);
  font: 800 13px "Manrope", Arial, sans-serif;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 4px;
}

.map-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-location-list a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 15px;
  background: var(--navy);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.inner-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(rgba(0, 6, 21, 0.52), rgba(0, 6, 21, 0.6)), var(--hero-image) center / cover no-repeat;
  color: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 12% 100%, 0 86%);
}

.inner-hero .hero-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.hero-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-breadcrumb a:hover {
  color: var(--paper);
}

.inner-hero h1,
.inner-hero h2 {
  max-width: 1120px;
  margin: 5px auto 0;
  padding: 0 24px;
  text-align: center;
  color: var(--paper);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 45px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.content-area {
  background: var(--wash);
}

.content-area.white {
  background: var(--paper);
}

.index-layout,
.detail-layout {
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
  padding: 88px 0 96px;
}

.index-intro {
  max-width: 900px;
  margin-bottom: 45px;
}

.index-intro p {
  margin: 18px 0 0;
  color: #314056;
  font-size: 17px;
}

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

.index-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(0, 6, 21, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.index-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.index-card img {
  width: 100%;
  height: 182px;
  object-fit: cover;
}

.index-card .card-body {
  padding: 22px 22px 56px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: start;
}

.article {
  min-width: 0;
}

.article h2 {
  margin: 0 0 22px;
}

.article h3 {
  margin-top: 34px;
  color: var(--red);
}

.article p,
.article li {
  color: #2e3f56;
  font-size: 16px;
}

.article ul,
.article ol {
  margin: 18px 0 26px;
  padding-left: 22px;
}

.article a {
  color: var(--red);
  font-weight: 800;
}

.article-card {
  margin: 28px 0;
  padding: 28px;
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(0, 6, 21, 0.08);
}

.article-card img {
  width: 100%;
  max-height: 420px;
  margin-bottom: 25px;
  border-radius: 13px;
  object-fit: cover;
}

.side-nav {
  position: sticky;
  top: 28px;
  padding: 25px 18px;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(0, 6, 21, 0.08);
}

.side-nav h2 {
  margin: 0 0 14px;
  text-align: center;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.side-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 9px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--wash);
  color: #223149;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.related-strip {
  margin-top: 56px;
}

.related-strip h2 {
  margin-bottom: 22px;
  color: var(--red);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.faq-section {
  margin-top: 34px;
  padding: 32px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 7px 20px rgba(0, 6, 21, 0.08);
}

.faq-heading {
  margin-bottom: 20px;
}

.faq-heading h2 {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 32px;
  line-height: 1.08;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
}

.faq-list details[open] summary::after {
  content: "–";
}

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

.contact-wrap {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
  padding: 80px 0 52px;
  text-align: center;
}

.contact-title {
  font-size: 50px;
}

.contact-form {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2d3c52;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid #ef332f;
  border-radius: 13px;
  background: var(--paper);
  padding: 12px 16px;
  color: var(--navy);
  outline: none;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form button {
  grid-column: 1 / -1;
  width: min(340px, 100%);
  min-height: 48px;
  margin: 0 auto;
  border-radius: 13px;
}

.callout-box {
  width: min(760px, 100%);
  margin: 38px auto 24px;
  padding: 28px;
  border: 3px solid var(--red);
  border-radius: 15px;
  color: var(--red);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.location-card-grid {
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
  padding: 18px 0 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

.office-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 28px;
  background: var(--navy);
  color: var(--paper);
}

.office-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 6, 21, 0.08), rgba(0, 6, 21, 0.84)),
    var(--card-image) center / cover no-repeat;
  transition: transform 240ms ease, opacity 240ms ease;
}

.office-card:hover::before {
  transform: scale(1.04);
  opacity: 0.92;
}

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

.office-card h3 {
  margin: 0 0 10px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  background: var(--navy);
  color: var(--paper);
}

.footer-inner {
  width: min(1320px, calc(100% - 88px));
  margin: 0 auto;
  padding: 68px 0 26px;
}

.footer-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.footer-intro p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-contact a {
  color: var(--paper);
  font-weight: 900;
}

.footer-map {
  overflow: hidden;
  height: 220px;
  margin-bottom: 34px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1) contrast(1.08);
}

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

.footer-grid h3 {
  margin: 22px 0 8px;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-brand .brand-logo {
  margin-bottom: 26px;
}

.internal-links,
.wppbv-h-breadcrumbs,
[data-seo-breadcrumbs] {
  display: none !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .header-inner {
    width: min(100%, 390px);
    min-height: 64px;
    padding: 0 8px;
    gap: 12px;
  }

  .site-header {
    min-height: 64px;
  }

  .brand-logo {
    min-width: 144px;
    min-height: 43px;
    padding-left: 17px;
  }

  .brand-logo::before {
    width: 18px;
    height: 30px;
  }

  .brand-logo::after {
    width: 136px;
    height: 10px;
  }

  .brand-logo strong {
    font-size: 18px;
  }

  .brand-logo em {
    font-size: 8px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .mobile-toggle:checked ~ .mobile-panel {
    display: block;
  }

  .home-hero {
    min-height: 540px;
    padding: 34px 0 86px;
    clip-path: polygon(0 0, 100% 0, 100% 87%, 15% 100%, 0 89%);
    border-bottom-left-radius: 70px 32px;
  }

  .home-hero::before {
    width: 100%;
    opacity: 0.2;
  }

  .home-hero::after {
    top: 70px;
    right: -20px;
    width: 190px;
    height: 130px;
  }

  .hero-inner {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 36px;
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-image-card {
    margin-top: 0;
  }

  .section,
  .index-layout,
  .detail-layout,
  .location-card-grid,
  .footer-inner {
    width: min(100%, 360px);
  }

  .section {
    padding: 58px 0;
  }

  .center-heading h2,
  .section-title,
  .split-copy h2,
  .index-title,
  .contact-title {
    font-size: 34px;
  }

  .tab-row {
    gap: 5px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .tab-row a {
    min-height: 44px;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 12px;
  }

  .service-feature {
    padding: 13px;
  }

  .feature-card,
  .split,
  .evidence-layout,
  .location-map-section,
  .detail-layout,
  .footer-intro,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 12px;
    min-height: 0;
  }

  .feature-card img {
    height: 210px;
  }

  .round-arrow.left {
    left: 8px;
  }

  .round-arrow.right {
    right: 8px;
  }

  .split {
    gap: 30px;
  }

  .split-image img {
    height: 270px;
  }

  .grid,
  .grid.two,
  .dark-grid,
  .evidence-cards,
  .index-grid,
  .location-card-grid {
    grid-template-columns: 1fr;
  }

  .evidence-copy,
  .location-map-copy,
  .faq-section {
    padding: 24px;
  }

  .evidence-copy h2 {
    font-size: 31px;
  }

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

  .wv-map-card {
    min-height: 0;
    padding: 18px;
  }

  .wv-map {
    min-height: 310px;
  }

  .wv-map a text {
    font-size: 10px;
  }

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

  .inner-hero {
    min-height: 260px;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 16% 100%, 0 90%);
  }

  .inner-hero h1,
  .inner-hero h2 {
    font-size: 34px;
  }

  .index-layout,
  .detail-layout {
    padding: 56px 0 68px;
  }

  .side-nav {
    position: static;
    order: -1;
  }

  .article-card {
    padding: 18px;
  }

  .callout-box {
    font-size: 23px;
  }

  .office-card {
    min-height: 300px;
  }

  .footer-intro {
    align-items: start;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-map {
    height: 190px;
  }

  .footer-grid {
    gap: 25px;
  }

  .footer-bottom {
    display: grid;
  }
}


/* Internal "Explore More" related-links section (generated deep pages) */
.internal-links {
  margin: 48px auto;
  max-width: 1180px;
  padding: 0 22px;
}

.internal-links h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 0 0 16px;
}

.internal-links ul {
  display: grid;
  gap: 8px 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.internal-links a {
  display: inline-block;
  padding: 4px 0;
  text-decoration: none;
}

.internal-links a:hover {
  text-decoration: underline;
}

/* === BRAND-LOGO-IMG (image wordmark; neutralizes CSS flag construct) === */
.brand-logo--img {
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
}
.brand-logo--img::before,
.brand-logo--img::after {
  content: none;
  display: none;
}
.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 320px;
  display: block;
}
.footer-brand .brand-logo--img,
.footer-intro .brand-logo--img {
  margin-bottom: 26px;
}
@media (max-width: 1040px) {
  .brand-logo-img {
    height: 32px;
  }
}
