:root {
  color-scheme: light;
  --ink: #18242c;
  --muted: #59656e;
  --line: #d7e0e5;
  --paper: #fffdf7;
  --surface: #f4f7f5;
  --green: #254d47;
  --red: #b84434;
  --gold: #c49b33;
  --blue: #184654;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #254d47;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 30, 36, 0.86), rgba(15, 30, 36, 0.44) 52%, rgba(15, 30, 36, 0.12)),
    linear-gradient(0deg, rgba(15, 30, 36, 0.38), rgba(15, 30, 36, 0));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(56px, 12vh, 118px) clamp(20px, 5vw, 72px);
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-band h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 22px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

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

.section h2,
.contact-band h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.feature,
.policy-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.feature p,
.policy-list p,
.privacy-copy p,
.contact-band p {
  margin: 0;
}

.policy-section {
  background: var(--surface);
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: start;
}

.privacy-copy {
  display: grid;
  gap: 18px;
  font-size: 1.04rem;
}

.contact-band {
  padding: clamp(44px, 6vw, 70px) clamp(20px, 5vw, 72px);
  background: var(--blue);
  color: #ffffff;
}

.contact-band div {
  max-width: 780px;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.86);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-copy {
    margin-bottom: 48px;
  }

  .feature-grid,
  .policy-list,
  .split-section {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}
