:root {
  --opus-blue: #0047ba;
  --opus-deep: #003da5;
  --opus-dark: #101010;
  --opus-text: #161616;
  --opus-gray: #eceeef;
  --opus-light: #f6f7f8;
  --opus-orange: #f7941d;
  --max: 1320px;
  --font-display: "neue-haas-grotesk-display", Arial, Helvetica, sans-serif;
  --font-text: "neue-haas-grotesk-text", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-family: var(--font-text);
  color: var(--opus-text);
  background: #fff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.35;
  color: var(--opus-text);
  background: #fff;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: #fff;
  color: var(--opus-blue);
  padding: 10px 16px;
}

.skip-link:focus {
  left: 12px;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.opus-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 9px solid var(--opus-blue);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(var(--max), calc(100vw - 42px));
  margin: 0 auto;
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(250px, 24vw, 350px);
  height: auto;
}

/* brand-logo: raster brand lockup (replaces SVG wordmark) */
.brand img.brand-logo {
  height: 46px;
  width: auto;
  max-width: 320px;
  display: block;
}
.footer-brand img.footer-brand-logo {
  width: auto;
  height: 50px;
  max-width: 300px;
  filter: none;
}
@media (max-width: 620px) {
  .brand img.brand-logo {
    height: 40px;
  }
}
/* /brand-logo */

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  height: 100%;
}

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

.nav-link,
.nav-button {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 100%;
  padding: 0 17px;
  border: 0;
  background: transparent;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-link::after,
.nav-button::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: -9px;
  height: 5px;
  background: var(--opus-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-item:hover .nav-link::after,
.nav-item:hover .nav-button::after,
.nav-item.is-current .nav-link::after,
.nav-item.is-current .nav-button::after {
  transform: scaleX(1);
}

.icon-chevron,
.icon-plus,
.icon-arrow,
.icon-arrow-large,
.icon-up {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.05em;
  height: 1.05em;
}

.mega {
  position: absolute;
  top: 74px;
  right: 0;
  width: 360px;
  padding: 21px 25px 24px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  border-top: 6px solid var(--opus-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.mega a {
  display: block;
  padding: 9px 0;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #e5e5e5;
}

.mega a:hover {
  color: var(--opus-blue);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-left: 10px;
  padding: 10px 17px;
  border: 2px solid var(--opus-blue);
  border-radius: 4px;
  color: var(--opus-blue);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.header-phone:hover {
  background: var(--opus-blue);
  color: #fff;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  background: #111;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .mobile-menu-button span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-open .mobile-menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .mobile-menu-button span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-panel {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 0 22px 24px;
}

.mobile-panel a,
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  text-align: left;
}

.mobile-subnav {
  padding: 7px 0 9px 16px;
}

.mobile-subnav a {
  min-height: 38px;
  font-weight: 600;
  font-size: 15px;
}

.hero {
  position: relative;
  min-height: 540px;
  background: #d8d8d8 center / cover no-repeat;
  overflow: hidden;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100vw - 72px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.home-hero .hero-inner {
  justify-content: flex-start;
}

.hero-panel {
  background: rgba(0, 71, 186, 0.83);
  color: #fff;
  width: min(830px, 68vw);
  padding: 34px 45px 40px;
}

.home-hero .hero-panel {
  margin-top: 26px;
}

.internal-hero .hero-inner {
  justify-content: flex-end;
}

.internal-hero .hero-panel {
  width: min(760px, 63vw);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

.internal-hero h1 {
  font-size: clamp(42px, 5.4vw, 82px);
}

.hero .kicker {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 700;
  color: #fff;
}

.hero .hero-copy {
  max-width: 780px;
  margin: 19px 0 0;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.38;
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn,
.outline-btn,
.text-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 4px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn {
  background: var(--opus-blue);
  color: #fff;
  border: 2px solid var(--opus-blue);
}

.btn:hover {
  background: var(--opus-orange);
  border-color: var(--opus-orange);
  transform: translateY(-1px);
}

.outline-btn {
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
}

.outline-btn:hover {
  background: #fff;
  color: var(--opus-blue);
}

.text-arrow {
  padding-inline: 0;
  color: var(--opus-blue);
}

.text-arrow::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: 9px;
  border-radius: 50%;
  color: #fff;
  background: var(--opus-orange);
  transition: transform 180ms ease;
}

.text-arrow:hover::after {
  transform: translateX(4px);
}

.section {
  padding: 58px 0;
  background: #fff;
}

.section.gray {
  background: var(--opus-gray);
}

.section.blue {
  color: #fff;
  background: var(--opus-blue);
}

.wrap {
  width: min(var(--max), calc(100vw - 72px));
  margin: 0 auto;
}

.split-certainty {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) 1.65fr;
  gap: 52px;
  align-items: start;
}

.section h2 {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.1vw, 56px);
  line-height: 1.04;
  font-weight: 500;
  color: #111;
}

.section.blue h2,
.section.blue p,
.section.blue a {
  color: #fff;
}

.blue-heading {
  color: var(--opus-blue) !important;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--opus-blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead {
  max-width: 1000px;
  margin: 0 0 24px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.23;
  font-weight: 800;
}

.body-copy {
  font-size: 18px;
  line-height: 1.47;
}

.column-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rule-card {
  padding: 0 31px;
  border-left: 2px solid #111;
}

.rule-card:first-child {
  border-left: 0;
  padding-left: 0;
}

.rule-card h3,
.tile h3,
.list-card h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  color: #111;
}

.rule-card p,
.tile p,
.list-card p,
.content-block p,
.copy-column p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.45;
}

.approach-head {
  max-width: 1120px;
  margin-bottom: 34px;
}

.approach-head h2 {
  text-transform: uppercase;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.image-card {
  position: relative;
  display: block;
  min-height: 370px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 420ms ease, opacity 220ms ease;
}

.image-card:hover img {
  transform: scale(1.045);
  opacity: 0.72;
}

.image-card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.image-card-text strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-family: var(--font-display);
}

.image-card-text span {
  display: inline-flex;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 800;
}

.blue-band {
  padding: 54px 0 58px;
  background: var(--opus-blue);
  color: #fff;
}

.blue-band .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}

.blue-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4.6vw, 64px);
}

.cycle-copy {
  max-width: 760px;
  margin: 13px 0 0;
  font-size: 22px;
  line-height: 1.32;
  color: #fff;
  opacity: 1;
  transition: opacity 240ms ease;
}

.cycle-copy.is-changing {
  opacity: 0.25;
}

.round-arrow {
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--opus-orange);
  font-size: 38px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.round-arrow:hover {
  transform: translateX(5px);
  background: #d87300;
}

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

.feature-tile {
  color: #fff;
  text-decoration: none;
  background: #111;
}

.feature-tile img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.feature-tile:hover img {
  opacity: 0.72;
}

.feature-caption {
  padding: 22px 24px 25px;
  background: var(--opus-blue);
}

.feature-caption small {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-caption strong {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading-row h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.location-section {
  background: #f8f9fb;
}

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

.location-tile {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #111;
}

.location-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 23, 64, 0.82));
}

.location-tile img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform 520ms ease, opacity 220ms ease;
}

.location-tile:hover img {
  transform: scale(1.055);
  opacity: 0.78;
}

.location-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.location-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 0.98;
}

.location-tile small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-gray {
  padding: 36px 0;
  background: var(--opus-gray);
}

.cta-gray p {
  width: min(1000px, calc(100vw - 72px));
  margin: 0 auto;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 800;
}

.cta-gray a {
  color: var(--opus-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-list {
  display: grid;
  gap: 28px;
}

.news-item {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 25px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid #d5d8dc;
  color: #111;
  text-decoration: none;
}

.news-item img {
  width: 230px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
}

.news-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.46;
}

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

.list-card {
  min-height: 100%;
  background: #fff;
  border: 1px solid #dedede;
  color: #111;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.list-card:hover {
  transform: translateY(-3px);
  border-color: var(--opus-blue);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

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

.list-card-body {
  padding: 23px 24px 27px;
}

.list-card .label {
  display: block;
  margin-bottom: 10px;
  color: var(--opus-blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: start;
}

.content-block h2 {
  font-size: clamp(30px, 3.1vw, 44px);
}

.detail-body {
  max-width: 1040px;
}

.detail-body .lead {
  max-width: 940px;
  margin-bottom: 34px;
}

.detail-copy {
  max-width: 900px;
  padding: 42px;
  border-left: 8px solid var(--opus-blue);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.detail-copy h2,
.detail-copy h3,
.detail-copy h4 {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  line-height: 1.05;
  color: #111;
}

.detail-copy h2:first-child {
  margin-top: 0;
  font-size: clamp(34px, 4vw, 52px);
}

.detail-copy h3 {
  font-size: clamp(25px, 2.4vw, 34px);
}

.detail-copy p,
.detail-copy li,
.detail-copy td,
.detail-copy th {
  font-size: 18px;
  line-height: 1.58;
}

.detail-copy p {
  margin: 0 0 18px;
}

.detail-copy ul,
.detail-copy ol {
  margin: 0 0 22px 20px;
  padding: 0;
}

.detail-copy table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.detail-copy td,
.detail-copy th {
  padding: 12px;
  border: 1px solid #d5d8dc;
  text-align: left;
}

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

.related-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid #d7dbe0;
  background: #fff;
  color: #111;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--opus-blue);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.related-card span,
.related-card small {
  color: var(--opus-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card strong {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
}

.related-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-card {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d2b63;
  color: #fff;
  overflow: hidden;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 71, 186, 0.88), rgba(0, 20, 62, 0.86));
}

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

.play-dot {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}

.play-dot::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 23px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
}

.video-card strong {
  position: absolute;
  bottom: 42px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 22px;
  margin-top: 25px;
}

.pill-grid a {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.pill-grid a:hover {
  background: #fff;
  color: var(--opus-blue);
}

.inline-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.inline-buttons a,
.inline-buttons button {
  min-height: 36px;
  padding: 8px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--opus-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.inline-buttons button.is-active,
.inline-buttons a:hover,
.inline-buttons button:hover {
  background: var(--opus-orange);
}

.history-panel {
  margin-top: 26px;
}

.history-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
}

.form-zone {
  padding: 52px 0 58px;
  background: var(--opus-gray);
}

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

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

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

.field label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid #c4c8cc;
  background: #fff;
  padding: 10px 12px;
}

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

.field.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.field.checkbox input {
  width: 18px;
  min-height: 18px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.footer {
  padding: 46px 0 16px;
  background: var(--opus-blue);
  color: #fff;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 0.9fr) minmax(360px, 1fr) minmax(300px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.footer .footer-grid > * {
  min-width: 0;
}

.footer-brand img {
  width: min(280px, 72vw);
  filter: brightness(0) invert(1);
}

.footer p,
.footer a {
  color: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin: 19px 0 0;
  font-weight: 800;
  line-height: 1.38;
}

.footer-address {
  margin: 18px 0 18px !important;
  font-weight: 700;
  line-height: 1.35;
}

.footer-address a {
  overflow-wrap: anywhere;
}

.footer-locations-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-map-panel {
  min-height: 100%;
}

.footer-map,
.contact-map {
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-map {
  height: 100%;
  min-height: 360px;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, 0.9);
}

.footer-map iframe,
.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.footer-map iframe {
  height: 100%;
  min-height: 360px;
}

.contact-map {
  margin-top: 28px;
  border-color: #d5d8dc;
  background: #fff;
}

.contact-map iframe {
  height: 330px;
}

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

.footer-links a {
  display: block;
  margin: 0 0 14px;
  font-weight: 800;
  text-decoration: none;
}

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

.footer-contact-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: rgba(0, 39, 110, 0.45);
}

.footer-contact-panel h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.03;
}

.footer-contact-panel p {
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.42;
}

.footer-contact-form {
  grid-template-columns: 1fr 1fr;
  gap: 13px 14px;
}

.footer-contact-form .field {
  gap: 6px;
}

.footer-contact-form .field label {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-contact-form .field input,
.footer-contact-form .field textarea {
  min-height: 43px;
  border-color: rgba(255, 255, 255, 0.92);
  background: #fff;
  color: #111;
}

.footer-contact-form .field textarea {
  min-height: 102px;
}

.footer-submit {
  grid-column: 1 / -1;
  width: 100%;
  background: var(--opus-orange);
  border-color: var(--opus-orange);
  gap: 9px;
}

.footer-submit:hover {
  background: #d87300;
  border-color: #d87300;
}

.footer-bottom {
  width: min(var(--max), calc(100vw - 72px));
  margin: 28px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  gap: 10px;
}

.float-button {
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--opus-blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 13px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
}

.float-button[data-top] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.float-button[data-top].is-visible {
  opacity: 1;
  pointer-events: auto;
}

.legal-page .body-copy {
  max-width: 880px;
}

@media (max-width: 1180px) {
  .primary-nav,
  .header-phone {
    display: none;
  }

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

  .header-inner {
    width: min(var(--max), calc(100vw - 28px));
    height: 67px;
  }

  .opus-header {
    border-bottom-width: 7px;
  }
}

@media (max-width: 920px) {
  .hero,
  .hero.home-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: min(54vw, 360px);
  }

  .hero::before {
    display: none;
  }

  .hero-inner,
  .home-hero .hero-inner,
  .internal-hero .hero-inner {
    width: 100%;
    min-height: 0;
    display: block;
    margin: 0;
  }

  .hero-panel,
  .home-hero .hero-panel,
  .internal-hero .hero-panel {
    width: 100%;
    margin: 0;
    padding: 28px 28px 31px;
  }

  .hero h1,
  .internal-hero h1 {
    font-size: clamp(36px, 10.4vw, 58px);
  }

  .wrap,
  .cta-gray p,
  .footer-bottom {
    width: min(var(--max), calc(100vw - 42px));
  }

  .split-certainty,
  .two-column,
  .blue-band .wrap,
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .column-rule-grid,
  .image-card-grid,
  .feature-grid,
  .location-grid,
  .related-grid,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .rule-card {
    border-left: 0;
    border-top: 2px solid #111;
    padding: 24px 0 0;
  }

  .rule-card:first-child {
    border-top: 0;
    padding-top: 0;
  }

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

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item img {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-map,
  .footer-map iframe {
    min-height: 300px;
  }

  .detail-copy {
    padding: 30px;
  }

  .footer-bottom {
    display: block;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: min(245px, 72vw);
  }

  .section {
    padding: 42px 0;
  }

  .pill-grid,
  .footer-contact-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card img {
    min-height: 300px;
  }

  .location-tile,
  .location-tile img {
    min-height: 280px;
  }
}
