.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 10vw, 130px) 0;
  color: white;
  background:
    radial-gradient(circle at 80% 15%, rgba(54, 115, 218, .4), transparent 30%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.025);
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: 80px;
  align-items: center;
}
.page-hero h1 { max-width: 850px; margin-bottom: 25px; font-size: clamp(2.8rem, 5.5vw, 5rem); }
.page-hero p:not(.eyebrow) { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 680px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.page-hero-side, .facility-stat, .contact-quick, .about-quote {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}
.page-hero-side > span, .facility-stat > span, .contact-quick > span {
  color: var(--gold-400);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.page-hero-side ul { margin: 18px 0 0; padding-left: 20px; }
.page-hero-side li { margin: 8px 0; }
.page-hero-side li::marker { color: var(--gold-500); }

.service-detail-section { padding-top: 80px; }
.service-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  max-width: 970px;
  margin: 0 auto;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.service-detail:first-child { padding-top: 0; }
.service-detail:last-child { border-bottom: 0; padding-bottom: 0; }
.service-detail-number {
  color: var(--blue-200);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}
.service-detail h2 { max-width: 800px; font-size: clamp(2rem, 4vw, 3.2rem); }
.service-detail > div:last-child > p:not(.eyebrow) { max-width: 790px; font-size: 1.04rem; }
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 900;
}

.split-content {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
}
.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.feature-columns article { padding-top: 18px; border-top: 3px solid var(--gold-500); }
.feature-columns h3 { color: var(--navy-900); margin-bottom: 8px; }
.feature-columns p { margin: 0; }

.notice-section { padding-top: 0; }
.notice-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.notice-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--gold-100);
  font-size: 1.4rem;
  font-weight: 900;
}
.notice-card h2 { margin: 0 0 5px; font-size: 1.45rem; }
.notice-card p { margin: 0; }

.facility-stat strong, .facility-stat p { display: block; }
.facility-stat strong { font-size: clamp(1.7rem, 3vw, 2.5rem); margin: 12px 0; }
.facility-stat p { margin: 0; font-size: .95rem !important; }
.facility-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.facility-feature-grid article {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.facility-feature-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.facility-feature-grid span { color: var(--gold-500); font-size: .75rem; font-weight: 900; }
.facility-feature-grid h3 { color: var(--navy-900); margin: 28px 0 10px; }
.facility-feature-grid p { margin: 0; font-size: .92rem; }

.partner-workflow {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.partner-workflow ol { margin: 0; padding: 0; list-style: none; }
.partner-workflow li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  margin-bottom: 25px;
}
.partner-workflow li > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy-900);
  color: white;
  font-weight: 900;
}
.partner-workflow h3 { margin: 0 0 5px; color: var(--navy-900); }
.partner-workflow li p { margin: 0; }

.two-column-callout { display: grid; grid-template-columns: 1fr 1fr; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.callout-dark, .callout-light { padding: clamp(40px, 7vw, 70px); }
.callout-dark { color: white; background: var(--navy-950); }
.callout-light { background: var(--gold-100); }
.callout-light .button { margin: 15px 0 22px; }
.callout-light .text-link { display: flex; }
.large-list { padding: 0; list-style: none; }
.large-list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.large-list li::before { content: "—"; color: var(--gold-500); margin-right: 12px; }

.about-quote { position: relative; }
.about-quote span { color: var(--gold-500); font-family: var(--font-serif); font-size: 5rem; line-height: .5; }
.about-quote p { color: white !important; font-family: var(--font-serif); font-size: 1.65rem !important; margin: 20px 0 0; }
.story-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
.story-grid .lead-copy { color: var(--navy-900); font-size: 1.35rem; font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.values-grid article { padding: 32px; background: white; border-radius: 14px; border: 1px solid var(--line); }
.values-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--navy-900);
  font-weight: 900;
}
.values-grid h3 { margin: 22px 0 8px; color: var(--navy-900); }
.values-grid p { margin: 0; }

.safety-grid { display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 20px; overflow: hidden; }
.safety-panel { padding: clamp(45px, 7vw, 75px); color: white; background: var(--navy-900); }
.safety-list { padding: clamp(35px, 6vw, 65px); background: var(--gold-100); }
.safety-list > div { padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid rgba(8,47,117,.14); }
.safety-list > div:last-child { margin: 0; padding: 0; border: 0; }
.safety-list strong { color: var(--navy-900); }
.safety-list p { margin: 4px 0 0; }

.leadership-section { padding-top: 30px; }
.leadership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; }
.leadership-grid article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.initials {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 1.2rem;
  font-weight: 900;
}
.leadership-grid h3 { margin: 0 0 3px; color: var(--navy-900); }
.leadership-grid .role { margin: 0 0 8px; color: var(--gold-500); font-weight: 850; }
.leadership-grid a { display: block; color: var(--muted); text-decoration: none; font-size: .92rem; }

.contact-quick { text-align: center; }
.contact-quick a { display: block; color: white; text-decoration: none; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin: 10px 0 2px; }
.contact-quick small { color: rgba(255,255,255,.7); }
.contact-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.contact-details { position: sticky; top: 140px; }
.contact-details h2 { font-size: 2.5rem; }
.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item > span { display: block; color: var(--blue-700); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 5px; }
.contact-item a, .contact-item p, .contact-item address { color: var(--ink); font-weight: 750; text-decoration: none; margin: 0; }
.contact-person { padding-top: 25px; }
.contact-person strong, .contact-person a { display: block; }
.contact-person a { color: var(--blue-700); text-decoration: none; font-size: .9rem; }
.form-card { padding: clamp(30px, 5vw, 55px); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); scroll-margin-top: 120px; }
.form-heading { margin-bottom: 30px; }
.form-heading h2 { font-size: 2.5rem; }
.form-heading p:last-child { font-size: .92rem; padding: 12px 15px; border-left: 3px solid var(--gold-500); background: var(--gold-100); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--navy-950);
  font-size: .87rem;
  font-weight: 800;
}
.form-grid label span { color: #a33131; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  border: 1px solid #bdc7d8;
  border-radius: 8px;
  background: white;
  padding: 12px 13px;
  color: var(--ink);
}
.form-grid input, .form-grid select { min-height: 48px; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--blue-600); outline: 3px solid rgba(29,98,196,.15); }
.full-width { grid-column: 1 / -1; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 23px 0;
  font-size: .86rem;
  color: var(--muted);
}
.consent input { margin-top: 4px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { margin-top: 16px; font-size: .92rem; font-weight: 750; }
.form-status.success { color: #1d6c3f; }
.form-status.error { color: #a33131; }
.form-card .button[disabled] { opacity: .65; cursor: wait; transform: none; }

.facility-inquiry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.facility-inquiry > div:last-child { display: flex; gap: 12px; flex-wrap: wrap; }
.facility-inquiry h2 { margin-bottom: 12px; font-size: clamp(2rem,4vw,3rem); }

.legal-hero { padding: 70px 0; color: white; background: var(--navy-950); }
.legal-hero h1 { margin-bottom: 8px; font-size: clamp(2.6rem, 5vw, 4.2rem); }
.legal-hero p:last-child { color: rgba(255,255,255,.66); }
.legal-prose { max-width: 850px; }
.legal-prose h2 { margin: 42px 0 12px; font-size: 1.65rem; color: var(--navy-900); }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p { font-size: 1.02rem; }
.legal-prose a { color: var(--blue-700); }

.not-found { display: grid; min-height: 65vh; place-items: center; text-align: center; padding: 80px 0; }
.not-found h1 { color: var(--navy-950); }
.not-found p:not(.eyebrow) { font-size: 1.1rem; }
.not-found .button { margin: 8px; }

.site-footer {
  padding: 72px 0 28px;
  color: white;
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}
.footer-brand img {
  width: 220px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer-brand p { max-width: 400px; color: rgba(255,255,255,.62); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .72rem; }
.footer-grid h2 { font-size: .84rem; color: var(--gold-400); text-transform: uppercase; letter-spacing: .13em; margin-bottom: 19px; }
.footer-grid > div:not(.footer-brand) a {
  display: block;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: .9rem;
  margin-bottom: 8px;
}
.footer-grid address, .footer-service-area { color: rgba(255,255,255,.58); font-size: .88rem; }
.footer-service-area { margin-top: 15px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: .75rem; }

.mobile-call { display: none; }
