:root {
  --sage-light: #dfe9df;
  --sage: #89a58e;
  --sage-glow: #b7d0b2;
  --sage-text: #d4e4d1;
  --sage-deep: #496a57;
  --forest: #10281f;
  --forest-soft: #18372b;
  --blue: #17335b;
  --blue-deep: #0c203e;
  --mineral-blue: #16456d;
  --mineral-blue-soft: #2f6f83;
  --cream: #fbfaf5;
  --cream-block: rgba(255, 253, 244, 0.96);
  --cream-block-strong: rgba(255, 255, 240, 0.98);
  --white: #ffffff;
  --ink: #172333;
  --muted: #5d6b68;
  --line: rgba(23, 51, 91, 0.14);
  --shadow: 0 24px 60px rgba(12, 32, 62, 0.16);
  --soft-shadow: 0 18px 46px rgba(12, 32, 62, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(6, 22, 31, 0.68), rgba(7, 34, 41, 0.4) 24rem, rgba(12, 32, 62, 0.22)),
    radial-gradient(ellipse at 76% 18%, rgba(255, 255, 255, 0.22), transparent 28rem),
    radial-gradient(ellipse at 16% 74%, rgba(0, 181, 194, 0.18), transparent 30rem),
    url("ocean-geode-background.png") center top / cover fixed;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24rem),
    radial-gradient(ellipse at 50% 28%, rgba(12, 32, 62, 0.18), transparent 42%);
  opacity: 0.82;
}

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

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

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

.announcement-bar {
  position: fixed;
  z-index: 22;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 111, 131, 0.18), transparent 58%),
    linear-gradient(90deg, #07110e, #102018 48%, #07110e);
  color: rgba(223, 233, 223, 0.94);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.announcement-bar a {
  color: rgba(223, 233, 223, 0.98);
  border-bottom: 1px solid currentColor;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 52px;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(ellipse at 16% 0%, rgba(223, 233, 223, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(5, 17, 36, 0.99), rgba(11, 32, 62, 0.98), rgba(5, 17, 36, 0.99));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: rgba(251, 250, 245, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.brand-mark img {
  width: 50px;
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--sage-light);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-deep), var(--mineral-blue));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(12, 32, 62, 0.28);
}

.button-primary:hover {
  background: linear-gradient(135deg, #07182f, #123d62);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(223, 233, 223, 0.34);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(12, 32, 62, 0.34);
}

.button-secondary:hover {
  border-color: rgba(223, 233, 223, 0.58);
  background: rgba(22, 69, 109, 0.44);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 168px 24px 78px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(73, 106, 87, 0), rgba(73, 106, 87, 0.18) 55%, rgba(73, 106, 87, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 233, 223, 0.16));
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(251, 250, 245, 0.03), rgba(16, 40, 31, 0.16) 68%, var(--forest) 100%),
    linear-gradient(90deg, rgba(251, 250, 245, 0.12), rgba(251, 250, 245, 0), rgba(16, 40, 31, 0.18)),
    url("langford-coast-backdrop.png") center / cover no-repeat;
}

.watercolor-field {
  position: absolute;
  inset: 18% -6% auto;
  height: 58%;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.18), transparent 62%),
    radial-gradient(ellipse at 24% 62%, rgba(137, 165, 142, 0.08), transparent 42%),
    radial-gradient(ellipse at 72% 52%, rgba(23, 51, 91, 0.06), transparent 40%);
  filter: blur(16px);
  opacity: 0.36;
}

.hero-content {
  width: min(980px, 100%);
  text-align: center;
  color: var(--blue-deep);
}

.opening-date,
.eyebrow {
  margin: 0 0 16px;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-wordmark {
  width: min(940px, 96vw);
  margin: 12px auto 24px;
  mix-blend-mode: multiply;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--sage-glow);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.04;
  font-weight: 400;
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2.05rem, 4vw, 4.35rem);
  font-weight: 300;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  letter-spacing: 0;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4.7rem);
}

h3 {
  font-size: 1.8rem;
}

.mantra {
  max-width: 820px;
  margin: 30px auto 0;
  color: #0c203e;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.32rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.34;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.intro-band {
  width: 100%;
  margin-inline: 0;
}

.site-footer {
  width: 100%;
  margin-inline: 0;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
}

.intro-band div {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: clamp(30px, 4vw, 42px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intro-band span {
  color: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: none;
}

.intro-band strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none;
}

.intro-band p {
  color: var(--blue-deep);
  font-weight: 500;
  text-shadow: none;
}

.section p {
  color: rgba(212, 228, 209, 0.86);
}

.section {
  padding: 120px 0;
}

.section-about,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.section-copy p:last-child,
.split-section > p,
.muted-section > p,
.policy-careers p,
.contact-section p {
  margin: 24px 0 0;
  font-size: 1.06rem;
}

.feature-panel,
.contact-card {
  padding: 36px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(47, 111, 131, 0.18), transparent 56%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(7, 17, 14, 0.32)),
    linear-gradient(90deg, #07110e, #102018 48%, #07110e);
  color: var(--white);
  border-radius: 2px;
  border: 1px solid rgba(223, 233, 223, 0.16);
  box-shadow: 0 20px 54px rgba(3, 14, 10, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.feature-panel p,
.feature-panel span,
.contact-card span {
  margin: 0;
  color: var(--blue-deep);
  text-shadow: none;
}

.feature-panel strong {
  display: block;
  margin: 10px 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.section-services {
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(180deg, rgba(5, 31, 43, 0.98), rgba(7, 62, 72, 0.9)),
    linear-gradient(135deg, rgba(0, 156, 176, 0.24), rgba(12, 32, 62, 0.22));
}

.section-heading {
  max-width: 820px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.service-grid article,
.policy-careers article {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 34px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intro-band div,
.service-grid article,
.policy-careers article,
.feature-panel,
.contact-card {
  background: var(--cream-block-strong);
  border: 1px solid rgba(12, 32, 62, 0.16);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(12, 32, 62, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.intro-band div:hover,
.service-grid article:hover,
.policy-careers article:hover {
  border-color: rgba(255, 253, 248, 0.96);
  box-shadow: 0 22px 52px rgba(12, 32, 62, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-3px);
}

.service-grid article span {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.service-grid p {
  margin: 18px 0 0;
}

.service-grid article p,
.service-grid article .eyebrow,
.intro-band p,
.policy-careers article p,
.feature-panel p,
.contact-card p,
.page-card p,
.service-menu-card p,
.direct-billing-card p,
.direct-billing-card .content-list,
.contact-page .page-card p,
.contact-page .page-card a:not(.button) {
  color: var(--blue-deep);
  text-shadow: none;
}

.muted-section {
  padding-top: 90px;
  padding-bottom: 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-careers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 900px;
}

.policy-careers article {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
}

.policy-careers article h2 {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.18;
}

.policy-careers article .eyebrow,
.policy-careers article p {
  color: var(--blue-deep);
  text-shadow: none;
}

.inline-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue-deep);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(12, 32, 62, 0.35);
  text-underline-offset: 5px;
}

.inline-card-link:hover,
.inline-card-link:focus-visible {
  color: var(--mineral-blue);
  text-decoration-color: currentColor;
}

.contact-section {
  padding-top: 80px;
  display: block;
  max-width: 820px;
  text-align: center;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: var(--blue-deep);
  text-shadow: 0 1px 18px rgba(255, 255, 240, 0.52);
}

.page-main {
  flex: 1 0 auto;
  min-height: calc(100vh - 220px);
  padding-top: 160px;
}

.page-hero,
.page-section {
  width: min(1040px, calc(100% - 40px));
  margin-inline: auto;
}

.page-hero {
  min-height: 56vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 96px 0 72px;
  text-align: center;
}

.page-hero h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(3rem, 6.8vw, 6.8rem);
}

.page-title-accent {
  display: block;
  width: min(100%, 980px);
  max-width: min(980px, calc(100vw - 56px));
  margin-inline: auto;
  color: var(--sage-glow);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.34), 0 16px 34px rgba(12, 32, 62, 0.42);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--sage-text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.34), 0 12px 26px rgba(12, 32, 62, 0.34);
}

.page-section {
  padding: 0 0 108px;
}

.page-grid {
  display: grid;
  gap: 20px;
}

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

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

.page-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  min-height: 210px;
  background: var(--cream-block-strong);
  border: 1px solid rgba(12, 32, 62, 0.16);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(12, 32, 62, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.page-card h2 {
  color: var(--blue-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.page-card p {
  color: var(--blue-deep);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  font-weight: 400;
  text-shadow: none;
}

.page-card p:last-child {
  margin-bottom: 0;
}

.page-card a:not(.button) {
  color: var(--blue-deep);
  font-weight: 600;
  text-decoration-color: rgba(12, 32, 62, 0.4);
  text-underline-offset: 4px;
}

.page-card a:not(.button):hover,
.page-card a:not(.button):focus-visible {
  color: var(--mineral-blue);
  text-decoration-color: currentColor;
}

.owner-note-section {
  padding-top: 0;
}

.owner-note-card {
  max-width: 920px;
  margin-inline: auto;
}

.owner-note-card .eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  text-shadow: none;
}

.owner-note-card h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.owner-note-card p {
  max-width: 780px;
}

.owner-signature {
  margin-top: 28px;
  color: var(--blue-deep);
  font-weight: 500;
}

.policy-page .page-hero {
  text-align: center;
}

.policy-page .page-title-accent {
  overflow-wrap: normal;
}

.policy-stack {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.page-copy-card h3 {
  margin: 24px 0 8px;
  color: var(--blue-deep);
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  color: var(--blue-deep);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 20px;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue-deep);
  opacity: 0.72;
}

.direct-billing-card {
  padding: clamp(30px, 4vw, 48px);
}

.direct-billing-card h2:not(:first-child) {
  margin-top: 34px;
}

.direct-billing-card p,
.direct-billing-card .content-list {
  font-size: clamp(1.02rem, 1.45vw, 1.14rem);
}

.team-profile {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.team-photo-frame {
  position: relative;
  width: min(100%, 320px);
  margin-top: 8px;
  aspect-ratio: 3 / 4;
  justify-self: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(218, 202, 174, 0.78));
  border: 8px solid rgba(247, 240, 226, 0.94);
  border-radius: 50%;
  box-shadow: 0 24px 60px rgba(12, 32, 62, 0.24), inset 0 0 0 1px rgba(12, 32, 62, 0.12);
}

.team-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 18%;
}

.team-bio .eyebrow {
  color: var(--blue);
}

.team-bio h2 {
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-bio p {
  max-width: 760px;
}

.contact-page .page-title-accent {
  width: min(1180px, calc(100vw - 40px));
  max-width: none;
  margin: 0 auto;
  color: var(--sage-glow);
  font-size: clamp(2.2rem, 4.8vw, 4.9rem);
  letter-spacing: clamp(0.1em, 0.9vw, 0.16em);
  overflow-wrap: anywhere;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.42), 0 16px 34px rgba(12, 32, 62, 0.5);
  text-align: center;
}

.contact-title-balanced {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.45em, 2.2vw, 0.9em);
}

.contact-title-balanced span:first-child {
  justify-self: end;
}

.contact-title-balanced span:nth-child(2) {
  justify-self: center;
}

.contact-title-balanced span:last-child {
  justify-self: start;
}

.contact-page .page-hero {
  min-height: 56vh;
  padding: 96px 0 72px;
}

.contact-page .page-hero p:last-child {
  max-width: 760px;
  margin: 28px auto 0;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 0 12px 26px rgba(12, 32, 62, 0.34);
}

.contact-page .page-section {
  max-width: 1040px;
  padding-bottom: 108px;
  margin-inline: auto;
}

.contact-page .page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  justify-items: center;
  margin-inline: auto;
}

.contact-page .page-card p,
.contact-page .page-card a:not(.button) {
  color: var(--blue-deep);
  text-shadow: none;
}

.contact-page .page-card {
  display: grid;
  align-content: center;
  justify-items: center;
  width: 100%;
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--cream-block-strong);
  border-color: rgba(12, 32, 62, 0.16);
  box-shadow: 0 18px 44px rgba(12, 32, 62, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  text-align: center;
}

.contact-page .page-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-deep);
  text-shadow: none;
}

.contact-page .page-card h2 svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-page .page-card a:not(.button) {
  text-decoration-color: rgba(12, 32, 62, 0.4);
}

.contact-page .page-card a:not(.button):hover,
.contact-page .page-card a:not(.button):focus-visible {
  color: var(--mineral-blue);
  text-decoration-color: currentColor;
}

.page-button {
  margin-top: 26px;
}

.service-menu {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.service-menu-card {
  padding: clamp(24px, 3vw, 34px);
  background: var(--cream-block-strong);
  border: 1px solid rgba(12, 32, 62, 0.16);
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(12, 32, 62, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.service-menu-card h2 {
  max-width: 720px;
  color: var(--blue-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-note {
  margin: 8px 0 14px;
  color: rgba(12, 32, 62, 0.68);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-note-secondary {
  margin-top: -8px;
}

.service-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(12, 32, 62, 0.16);
  color: var(--blue-deep);
  cursor: pointer;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(0.94rem, 1.35vw, 1.05rem);
  text-decoration: none;
  text-shadow: none;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-more-info {
  display: inline-flex;
  width: fit-content;
  margin: 4px 0 12px;
  color: rgba(12, 32, 62, 0.76);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(12, 32, 62, 0.28);
  text-underline-offset: 4px;
}

.service-more-info:hover,
.service-more-info:focus-visible {
  color: var(--mineral-blue);
  text-decoration-color: currentColor;
}

.service-line:hover,
.service-line:focus-visible {
  border-bottom-color: rgba(12, 37, 73, 0.36);
  color: var(--mineral-blue);
  transform: translateX(3px);
}

.service-line:focus-visible {
  border-radius: 10px;
  outline: 2px solid rgba(31, 82, 101, 0.45);
  outline-offset: 5px;
}

.service-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-line span {
  min-width: 0;
}

.service-line em {
  color: rgba(12, 32, 62, 0.56);
  font-size: 0.82em;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-line strong {
  color: var(--blue-deep);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.06em;
  font-weight: 500;
  transition: color 180ms ease;
}

.service-line:hover strong,
.service-line:focus-visible strong {
  color: var(--mineral-blue);
}

.service-cta {
  display: flex;
  justify-content: center;
  padding-top: 12px;
}

.service-cta .button {
  min-width: 190px;
}

.service-info-section {
  margin-top: clamp(34px, 6vw, 72px);
}

.service-info-card h2 {
  margin-bottom: 18px;
}

.service-info-card h3 {
  scroll-margin-top: 130px;
}

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

.contact-card a:not(.button) {
  color: var(--blue-deep);
  font-size: 1.08rem;
  font-weight: 500;
}

.service-grid article h3,
.policy-careers article h2,
.feature-panel strong,
.contact-card h2,
.contact-card h3 {
  color: var(--blue-deep);
  text-shadow: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 16px;
  padding: 54px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center 42%, rgba(251, 250, 245, 0.42), rgba(223, 233, 223, 0.24) 36%, rgba(137, 165, 142, 0.11) 62%, transparent 82%),
    linear-gradient(180deg, rgba(16, 40, 31, 0.08), rgba(223, 233, 223, 0.22) 52%, rgba(16, 40, 31, 0.08));
}

.site-footer img {
  width: 190px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.site-footer .copyright {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    z-index: 200;
  }

  .nav-toggle {
    display: inline-grid;
    position: relative;
    z-index: 220;
    align-content: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    z-index: 210;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 17, 36, 0.99);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 22px 42px rgba(12, 32, 62, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .intro-band,
  .section-about,
  .split-section,
  .contact-section,
  .service-grid,
  .policy-careers,
  .team-profile,
  .two-column,
  .three-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 82px 0;
  }

  .page-main {
    padding-top: 150px;
  }

  .page-hero {
    min-height: auto;
    padding: 72px 0 54px;
  }

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

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

  .announcement-bar {
    min-height: 54px;
    gap: 10px;
    padding: 8px 12px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .site-header {
    top: 54px;
    width: 100%;
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 8px 14px;
  }

  .brand-mark img {
    width: 48px;
    height: 32px;
  }

  .hero {
    min-height: calc(100svh - 54px);
    align-items: center;
    padding: 176px 22px 74px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
    white-space: normal;
  }

  .hero-wordmark {
    margin-top: 10px;
    margin-bottom: 24px;
    width: min(560px, 92vw);
  }

  .mantra {
    max-width: 34rem;
    margin-top: 28px;
    font-size: clamp(1.12rem, 5vw, 1.34rem);
    line-height: 1.5;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 34px;
  }

  .intro-band,
  .section,
  .page-hero,
  .page-section {
    width: min(100% - 32px, 1160px);
  }

  .intro-band {
    width: 100%;
  }

  .intro-band,
  .page-grid,
  .service-menu,
  .policy-careers {
    gap: 0;
  }

  .policy-careers {
    gap: 18px;
  }

  .intro-band div,
  .service-grid article,
  .policy-careers article,
  .page-card,
  .service-menu-card,
  .feature-panel,
  .contact-card {
    min-height: auto;
    padding: 26px;
    border-radius: 0;
    box-shadow: 0 14px 34px rgba(12, 32, 62, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  }

  .team-photo-frame {
    max-width: 280px;
    margin-inline: auto;
  }

  .team-bio {
    text-align: center;
  }

  .intro-band strong,
  .page-card h2,
  .service-menu-card h2 {
    font-size: 1.02rem;
    letter-spacing: 0.06em;
  }

  .intro-band p,
  .page-card p,
  .service-line {
    font-size: 1rem;
    line-height: 1.62;
  }

  .page-main {
    min-height: calc(100vh - 174px);
    padding-top: 132px;
  }

  .page-hero {
    padding: 70px 0 48px;
  }

  .page-hero .page-title-accent {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.7rem, 9vw, 2.55rem);
    letter-spacing: 0.045em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .page-hero p:last-child {
    margin-top: 24px;
    font-size: 1.14rem;
    line-height: 1.5;
  }

  .contact-page .page-hero {
    padding: 52px 0 36px;
  }

  .contact-page .page-title-accent {
    max-width: 100%;
    font-size: clamp(1.7rem, 9vw, 2.55rem);
    letter-spacing: 0.045em;
  }

  .contact-title-balanced {
    display: grid;
    gap: 0.12em;
  }

  .contact-title-balanced span {
    display: block;
    justify-self: center;
  }

  .direct-billing-page .page-title-accent {
    font-size: clamp(1.52rem, 8vw, 2.2rem);
    letter-spacing: 0.045em;
  }

  .contact-page .page-hero p:last-child {
    max-width: 28rem;
    margin: 18px auto 0;
  }

  .contact-page .page-section {
    padding-bottom: 58px;
  }

  .contact-page .two-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .service-line {
    gap: 14px;
    padding: 10px 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-footer {
    display: grid;
    margin-top: auto;
  }
}
