:root {
  --ink: #202331;
  --muted: #596072;
  --teal: #111d72;
  --teal-dark: #0b1454;
  --teal-soft: #e9ebf6;
  --terracotta: #bd163f;
  --pink: #f42552;
  --gold: #ffc857;
  --mist: #f5f6fa;
  --white: #ffffff;
  --line: #dcdfea;
  --error: #9d2d20;
  --focus: #f6c84f;
  --shadow: 0 16px 40px rgba(16, 52, 54, 0.12);
  --radius: 6px;
  --content: 72rem;
  --header-height: 5.25rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.16em;
}

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

button,
.button {
  min-height: 3rem;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #754600;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--teal-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2.5rem), 48rem);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--terracotta);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--teal-dark);
  font-weight: 760;
  line-height: 1.12;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-size: 3.25rem;
}

h2 {
  max-width: 24ch;
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.35rem;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.25rem;
}

.utility-bar {
  color: var(--white);
  background: var(--teal-dark);
  font-size: 0.88rem;
}

.utility-inner {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar a {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(4, 75, 80, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.site-logo {
  width: 15.5rem;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.main-nav a:not(.button) {
  padding-block: 0.7rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a[aria-current="page"]:not(.button),
.main-nav a:not(.button):hover {
  color: var(--teal);
  box-shadow: inset 0 -3px var(--terracotta);
}

.menu-button {
  display: none;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 750;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--teal-dark);
  color: var(--white);
  background: var(--teal-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--teal-dark);
  background: transparent;
}

.button.secondary:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.button.light {
  border-color: var(--white);
  color: var(--teal-dark);
  background: var(--white);
}

.button.light:hover {
  border-color: var(--teal-soft);
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.hero {
  position: relative;
  min-height: calc(100svh - 7.65rem);
  overflow: hidden;
  color: var(--white);
  background: #0b1454;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 13, 60, 0.95) 0%, rgba(7, 13, 60, 0.82) 36%, rgba(7, 13, 60, 0.14) 72%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-image 900ms ease both;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 7.65rem);
  align-items: center;
  padding-block: 4rem;
}

.hero-copy {
  max-width: 39rem;
  animation: hero-copy 700ms 120ms ease both;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .lede {
  color: rgba(255, 255, 255, 0.9);
}

.hero-note {
  max-width: 43rem;
  margin-top: 1.5rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--gold);
  font-size: 0.98rem;
}

@keyframes hero-image {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-copy {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-line {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 1.15rem 0;
  list-style: none;
}

.trust-items li {
  padding: 0.25rem 1.25rem;
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 750;
  text-align: center;
}

.trust-items li:last-child {
  border-right: 0;
}

.section {
  padding-block: 6rem;
}

.section.mist {
  background: var(--mist);
}

.section.teal {
  color: var(--white);
  background: var(--teal-dark);
}

.section.teal h2,
.section.teal h3,
.section.teal .eyebrow,
.section.teal .lede,
.section.teal a:not(.button) {
  color: var(--white);
}

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

.split.reverse .media {
  order: -1;
}

.media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-list {
  margin-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.service-row h3,
.service-row p {
  margin: 0;
}

.service-row a {
  font-weight: 750;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 0;
  padding: 0;
  counter-reset: care-steps;
  list-style: none;
}

.steps li {
  position: relative;
  padding-top: 4.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  counter-increment: care-steps;
}

.steps li::before {
  position: absolute;
  top: 0.8rem;
  left: 0;
  content: "0" counter(care-steps);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 850;
}

.section.mist .steps li {
  border-top-color: var(--line);
}

.section.mist .steps li::before {
  color: var(--terracotta);
}

.link-list {
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.link-list li {
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.link-list a {
  font-weight: 750;
}

.page-hero {
  padding-block: 6rem 4.5rem;
  background: var(--mist);
}

.page-hero h1 {
  max-width: 22ch;
}

.breadcrumbs {
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: inherit;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-band > div {
  padding-top: 1.25rem;
  border-top: 4px solid var(--pink);
}

.notice {
  padding: 1.2rem 1.3rem;
  border-left: 4px solid var(--terracotta);
  background: #fff6ed;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  flex: 0 0 auto;
  content: "+";
  font-size: 1.5rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 1.2rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

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

label,
legend {
  color: var(--ink);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.65rem 0.75rem;
  border: 2px solid #91a4a6;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
}

.help-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--terracotta);
  background: #fff6ed;
}

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

.contact-block {
  padding-top: 1.25rem;
  border-top: 4px solid var(--teal);
}

.cta-band {
  padding-block: 5rem;
  color: var(--white);
  background: var(--terracotta);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band h2 {
  margin-bottom: 0.7rem;
}

.site-footer {
  padding-block: 4.5rem 1.5rem;
  color: var(--muted);
  background: #f0f1f8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}

.site-footer h2,
.site-footer h3,
.site-footer a,
.site-footer .brand {
  color: var(--teal-dark);
}

.site-footer h3 {
  font-size: 1rem;
}

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

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  font-size: 0.95rem;
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.mobile-actions {
  display: none;
}

@media (max-width: 64rem) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2rem; }
  .main-nav { gap: 0.75rem; }
  .main-nav a:not(.button) { font-size: 0.87rem; }
  .main-nav .button { display: none; }
  .split { gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 48rem) {
  :root { --header-height: 4.65rem; }
  body { font-size: 1.0625rem; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.75rem; }
  .container,
  .narrow { width: min(calc(100% - 2.5rem), var(--content)); }
  .utility-inner { justify-content: center; }
  .utility-inner span:first-child { display: none; }
  .header-inner { gap: 0.75rem; }
  .site-logo { width: 12.5rem; }
  .menu-button { display: inline-flex; align-items: center; padding: 0.55rem 0.8rem; }
  .main-nav {
    position: fixed;
    inset: calc(2.4rem + var(--header-height)) 0 0;
    display: none;
    overflow-y: auto;
    align-content: start;
    align-items: stretch;
    padding: 1.25rem;
    background: var(--white);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a:not(.button) { min-height: 3.2rem; padding: 0.75rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav .button { display: inline-flex; }
  .hero,
  .hero-inner { min-height: calc(100svh - 7.05rem); }
  .hero-media { object-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(7, 13, 60, 0.95), rgba(7, 13, 60, 0.7)); }
  .hero-inner { align-items: end; padding-block: 4rem 3.5rem; }
  .section { padding-block: 4.5rem; }
  .trust-items,
  .split,
  .steps,
  .feature-band,
  .form-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .trust-items li { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-items li:last-child { border-bottom: 0; }
  .split { gap: 2.5rem; }
  .split.reverse .media { order: 0; }
  .service-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .field.full { grid-column: auto; }
  .cta-band .container { display: block; }
  .cta-band .button-row { margin-top: 1.5rem; }
  .footer-bottom { display: block; }
  .mobile-actions {
    position: sticky;
    z-index: 90;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
  }
  .mobile-actions .button { min-height: 2.85rem; }
}

@media (max-width: 23rem) {
  .site-logo { width: 10.25rem; }
  h1 { font-size: 2.05rem; }
  .button-row { display: grid; }
}

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

@media print {
  .utility-bar,
  .site-header,
  .mobile-actions,
  .button-row { display: none !important; }
  body { color: #000; background: #fff; font-size: 12pt; }
  .section,
  .page-hero { padding-block: 1.5rem; }
  a { color: #000; }
}
