:root {
  --ink: #102738;
  --navy: #0b2f4a;
  --teal: #0f8fa3;
  --teal-dark: #087184;
  --sky: #e9f8fa;
  --paper: #f8fbfc;
  --line: #d8e5e9;
  --muted: #526976;
  --white: #ffffff;
  --max: 1080px;
  --shadow: 0 20px 50px rgba(11, 47, 74, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a { color: var(--teal-dark); }
a:hover { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(15, 143, 163, 0.42);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 229, 233, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
}

.brand-name { display: block; font-weight: 800; letter-spacing: -0.02em; }
.brand-location { display: block; color: var(--muted); font-size: 13px; }

nav { display: flex; flex-wrap: wrap; gap: 18px; }
nav a { color: var(--ink); font-size: 14px; font-weight: 700; text-decoration: none; }
nav a[aria-current="page"] { color: var(--teal-dark); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(69, 205, 218, 0.25), transparent 32%),
    linear-gradient(135deg, #0b2f4a 0%, #123f5c 58%, #0f7182 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #8ce8ef;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 { color: var(--navy); line-height: 1.15; }
.hero h1 { max-width: 760px; margin: 0; color: var(--white); font-family: Georgia, serif; font-size: clamp(2.45rem, 6vw, 4.9rem); font-weight: 500; letter-spacing: -.045em; }
.hero-copy { max-width: 670px; margin: 24px 0 0; color: #dcebf0; font-size: 19px; }

.hero-card {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}
.hero-card h2 { margin: 0 0 8px; color: var(--white); font-size: 23px; }
.hero-card p { margin: 0; color: #e4f0f3; }
.hero-card ul { margin: 18px 0 0; padding-left: 20px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { color: var(--navy); background: #dff9fb; transform: translateY(-1px); }
.button.secondary { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.button.secondary:hover { color: var(--white); background: rgba(255,255,255,.1); }

.section { padding: 70px 0; }
.section-heading { max-width: 700px; margin-bottom: 30px; }
.section-heading h2, .page-heading h1 { margin: 0 0 12px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 500; letter-spacing: -.025em; }
.section-heading p, .page-heading p { margin: 0; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(16, 39, 56, .055);
}
.card h3 { margin: 0 0 10px; font-size: 19px; }
.card p { margin: 0; color: var(--muted); }

.sms-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: start;
  border-radius: 26px;
  padding: 36px;
  background: var(--sky);
}
.sms-panel h2 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.sms-list { margin: 0; padding-left: 21px; }
.sms-list li + li { margin-top: 8px; }
.disclosure { margin-top: 20px; color: var(--muted); font-size: 15px; }

.page-main { min-height: 62vh; padding: 58px 0 74px; }
.page-heading { max-width: 760px; margin-bottom: 28px; }
.content-card { border: 1px solid var(--line); border-radius: 20px; padding: clamp(22px, 5vw, 44px); background: var(--white); box-shadow: var(--shadow); }
.content-card h2 { margin-top: 34px; margin-bottom: 8px; font-size: 22px; }
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li { color: #354e5c; }
.content-card ul { padding-left: 22px; }

.contact-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 24px; align-items: start; }
.contact-box { border-radius: 18px; padding: 24px; color: var(--white); background: var(--navy); }
.contact-box h2 { margin: 0 0 18px; color: var(--white); font-size: 23px; }
.contact-box a { color: #8ce8ef; }
.contact-box address { font-style: normal; }
.contact-box p { color: #dcebf0; }

form { display: grid; gap: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 6px; font-weight: 750; }
input, textarea {
  width: 100%;
  border: 1px solid #b9ccd3;
  border-radius: 11px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

.consent-box { display: grid; gap: 0; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfe; }
.consent-row { display: grid; grid-template-columns: 30px 1fr; gap: 11px; align-items: start; padding: 16px; }
.consent-row + .consent-row { border-top: 1px solid var(--line); }
.consent-row input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--teal-dark); }
.consent-row label { margin: 0; color: #2b4554; font-size: 15px; font-weight: 500; }
.consent-note { margin: 0; color: var(--muted); font-size: 14px; }
.submit-button { width: fit-content; min-height: 48px; border: 0; border-radius: 999px; padding: 12px 22px; color: var(--white); background: var(--teal-dark); font: inherit; font-weight: 800; cursor: pointer; }
.submit-button:hover { background: var(--navy); }

.site-footer { border-top: 1px solid var(--line); padding: 30px 0; background: var(--white); }
.footer-inner { display: flex; justify-content: space-between; gap: 22px; align-items: flex-start; }
.footer-copy { max-width: 650px; color: var(--muted); font-size: 14px; }
.footer-copy strong { color: var(--ink); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; font-weight: 700; }

@media (max-width: 820px) {
  .header-inner, .footer-inner { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .hero { padding: 58px 0; }
  .hero-grid, .sms-panel, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  nav { gap: 10px 14px; }
  .field-row { grid-template-columns: 1fr; }
  .sms-panel { padding: 24px; }
  .hero-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
