:root {
  --ink: #16242a;
  --muted: #5e7077;
  --line: #dbe6e9;
  --paper: #f7fafb;
  --white: #ffffff;
  --teal: #0f8a91;
  --teal-dark: #0b6870;
  --gold: #d9a441;
  --shadow: 0 18px 50px rgba(16, 36, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 24, 30, 0.86), rgba(9, 24, 30, 0));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 25, 30, 0.9) 0%, rgba(8, 25, 30, 0.66) 42%, rgba(8, 25, 30, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 25, 30, 0.18), rgba(8, 25, 30, 0.38));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

.soon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 8px;
  padding: 0 9px;
  border-radius: 999px;
  color: #6c4a00;
  background: #fff0c7;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  vertical-align: middle;
}

.hero-text {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--white);
}

.intro p:last-child,
.location-copy p,
.study-card p,
.site-footer p {
  color: var(--muted);
}

.intro p:last-child {
  margin: 0;
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.studies {
  background: var(--paper);
}

.study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.study-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(16, 36, 42, 0.06);
}

.study-card p {
  margin: 0;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: #e8f5f5;
}

.icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.confidence {
  background: var(--white);
}

.confidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: var(--white);
  background: #12343b;
  box-shadow: var(--shadow);
}

.confidence-panel h2 {
  max-width: 760px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  background: #eef6f7;
}

.location-copy p {
  max-width: 620px;
  font-size: 18px;
}

.map-button {
  margin-top: 16px;
  color: var(--white);
  background: var(--teal-dark);
}

.address-box {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.address-box span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.address-box strong {
  display: block;
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.08;
}

.address-box p {
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.84);
  background: #101c21;
}

.site-footer strong {
  color: var(--white);
  font-size: 20px;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: flex-end;
  font-weight: 700;
}

.footer-actions a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 16px 18px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 25, 30, 0.86) 0%, rgba(8, 25, 30, 0.72) 58%, rgba(8, 25, 30, 0.46) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 116px;
  }

  .intro,
  .study-grid,
  .confidence-panel,
  .location,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .study-card {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }

  .brand small {
    display: none;
  }

  .address-box strong {
    font-size: 24px;
  }
}
