:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-strong: #111827;
  --ink: #1f2937;
  --muted: #667085;
  --line: #e5e7eb;
  --accent: #0f766e;
  --accent-strong: #0b5d57;
  --gold: #b7791f;
  --shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: white;
  background: var(--surface-strong);
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover,
.footer-links a:hover,
.text-link:hover,
.legal-content a:hover {
  color: var(--accent);
}

.hero {
  min-height: 620px;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.58)),
    url("home-hero.webp") center / cover;
  color: #fff;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy,
.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border-color: white;
  color: var(--surface-strong);
  background: white;
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.section,
.page-hero,
.legal-content {
  padding-right: clamp(20px, 5vw, 72px);
  padding-left: clamp(20px, 5vw, 72px);
}

.section {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(48px, 6vw, 76px);
}

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

.section h2,
.page-hero h1,
.contact-card h2 {
  color: var(--surface-strong);
}

.section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card h3,
.contact-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.card p,
.contact-card p,
.text-block p,
.site-footer p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: white;
}

.text-block {
  max-width: 760px;
  font-size: 17px;
}

.text-link,
.legal-content a {
  color: var(--accent-strong);
  font-weight: 800;
}

.page-hero {
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(52px, 6vw, 78px);
  color: white;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.62)),
    url("page-hero.webp") center / cover;
}

.page-hero h1 {
  color: white;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.62)),
    url("contact-hero.webp") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.contact-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--accent-strong);
  overflow-wrap: anywhere;
}

.legal-page .page-hero {
  min-height: 320px;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 54px;
  padding-bottom: 72px;
  font-size: 17px;
}

.legal-content h2 {
  margin: 36px 0 10px;
  color: var(--surface-strong);
  font-size: 24px;
}

.legal-content p {
  margin: 12px 0;
  color: #344054;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: white;
  background: var(--surface-strong);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header,
  .split,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .nav,
  .footer-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .cards.three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    padding: 16px 18px;
  }

  .brand {
    min-width: 0;
  }

  .hero,
  .section,
  .page-hero,
  .legal-content,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .button {
    width: 100%;
  }
}
