:root {
  color-scheme: light;
  --cream: #fff8ef;
  --paper: #ffffff;
  --ink: #17323a;
  --muted: #557078;
  --aqua: #20a9c9;
  --deep-water: #176e8f;
  --coral: #ff7e67;
  --line: rgba(23, 50, 58, 0.12);
  --shadow: 0 18px 50px rgba(23, 110, 143, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 214, 116, 0.23), transparent 32rem),
    radial-gradient(circle at 92% 4%, rgba(32, 169, 201, 0.2), transparent 34rem),
    var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

a {
  color: var(--deep-water);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0d5777;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}

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

.site-header,
.site-footer {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 7px 16px rgba(23, 110, 143, 0.18);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.page {
  width: min(920px, calc(100% - 36px));
  margin: 30px auto 56px;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow {
  color: var(--deep-water);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  font-size: clamp(42px, 8vw, 68px);
}

h2 {
  margin: 48px 0 12px;
  font-size: clamp(26px, 4vw, 34px);
}

h3 {
  margin: 30px 0 7px;
  font-size: 21px;
}

p,
li {
  color: var(--muted);
}

strong {
  color: var(--ink);
}

.meta {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 14px;
}

.callout {
  margin: 32px 0;
  padding: 22px 24px;
  border: 1px solid rgba(32, 169, 201, 0.22);
  border-left: 5px solid var(--aqua);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(32, 169, 201, 0.1), rgba(255, 126, 103, 0.08));
}

.callout p:first-child,
.callout p:last-child {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol {
  padding-left: 1.35rem;
}

li {
  margin: 8px 0;
}

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

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 36px 0 6px;
  padding: 24px;
  border-radius: 20px;
  background: var(--ink);
  color: white;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--aqua);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  background: #70d8ea;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .page {
    margin-top: 18px;
    border-radius: 26px;
  }

  .contact-card,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
