:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dbe2ea;
  --soft: #f5f7fb;
  --panel: #ffffff;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --gold: #f6bd3a;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(219, 226, 234, 0.9);
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(360px, 54vw);
  height: auto;
}

.brand-logo {
  width: min(420px, 54vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: #334155;
}

.site-nav a:hover,
.site-nav .nav-cta {
  color: #ffffff;
  background: var(--blue);
}

.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 120px clamp(20px, 6vw, 96px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(8, 12, 23, 0.06), rgba(8, 12, 23, 0.18) 38%, rgba(8, 12, 23, 0.82) 70%),
    url("../../images/hero-1-1024x576.jpg") center / cover;
}

.hero-copy {
  max-width: 780px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

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

.hero-text {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border: 1px solid var(--blue);
  color: #ffffff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 96px);
}

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

.section-heading h2,
.split-section h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
}

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

.feature-card,
.bio-card,
.contact-form,
.policy-summary,
.policy-content article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
}

.feature-card {
  padding: 26px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--soft);
}

.split-section p {
  margin-top: 18px;
  max-width: 650px;
  font-size: 1.08rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 14px;
  align-items: end;
}

.photo-stack img {
  aspect-ratio: 4 / 5;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-stack img:last-child {
  margin-bottom: 42px;
}

.bio-section {
  background: var(--soft);
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(28px, 5vw, 48px);
}

.bio-card h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.bio-copy {
  display: grid;
  gap: 18px;
}

.bio-copy p {
  font-size: 1.08rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p:last-child {
  margin-top: 18px;
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.16);
  border-color: var(--blue);
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-size: 0.95rem;
  font-weight: 500 !important;
}

.consent-row input {
  width: auto;
  margin-top: 7px;
}

.consent-row a {
  color: var(--blue);
  font-weight: 750;
}

.form-alert {
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-alert.success {
  color: #166534;
  background: #dcfce7;
}

.form-alert.error {
  color: #991b1b;
  background: #fee2e2;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 96px);
  color: #ffffff;
  background: #111827;
}

.site-footer p {
  margin-top: 4px;
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-weight: 700;
}

.footer-links a {
  color: #e5e7eb;
}

.footer-links a:hover {
  color: var(--gold);
}

.policy-page {
  background: var(--soft);
}

.policy-hero {
  padding: 96px clamp(20px, 6vw, 96px) 42px;
}

.policy-hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.policy-hero p:last-child {
  max-width: 720px;
  margin-top: 18px;
  font-size: 1.15rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  padding: 0 clamp(20px, 6vw, 96px) 96px;
}

.policy-summary {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 24px;
}

.policy-summary h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.policy-summary dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.policy-summary dt {
  color: var(--ink);
  font-weight: 800;
}

.policy-summary dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-content article {
  padding: clamp(20px, 3vw, 30px);
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.policy-content p + p {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    width: min(100%, 440px);
  }

  .brand img,
  .brand-logo {
    width: min(100%, 440px);
  }

  .site-nav {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 680px;
  }

  .feature-grid,
  .split-section,
  .bio-card,
  .contact-section,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .policy-summary {
    position: static;
  }
}

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

  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: 100%;
  }

  .brand img,
  .brand-logo {
    width: min(100%, 340px);
  }

  .hero {
    min-height: 620px;
    padding-top: 88px;
    background:
      linear-gradient(90deg, rgba(8, 12, 23, 0.78), rgba(8, 12, 23, 0.68)),
      url("../../images/hero-1-1024x576.jpg") 28% center / cover;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .button-row {
    display: grid;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .site-nav a {
    display: flex;
    justify-content: center;
    padding: 9px 8px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .button {
    width: 100%;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img:last-child {
    margin-bottom: 0;
  }
}
