:root {
  --ink: #111827;
  --muted: #536070;
  --paper: #f6f4ee;
  --panel: #ffffff;
  --line: #d9dee7;
  --green: #0f5c4d;
  --green-dark: #08372f;
  --blue: #1e4f72;
  --gold: #b47a26;
}

* {
  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;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(246, 244, 238, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  align-items: center;
  background: var(--green-dark);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

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

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

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a {
  border-radius: 6px;
  color: #263241;
  font-size: 14px;
  font-weight: 650;
  padding: 9px 10px;
  text-decoration: none;
}

nav a:hover,
.nav-cta {
  background: var(--green-dark);
  color: white;
}

.hero {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 20, 0.92) 0%, rgba(5, 12, 20, 0.74) 42%, rgba(5, 12, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 12, 20, 0.42), rgba(5, 12, 20, 0.08));
}

.hero-content {
  color: white;
  max-width: 780px;
  padding: 120px clamp(18px, 5vw, 72px) 86px;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  margin: 0;
  max-width: 760px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 24px 0 0;
  max-width: 690px;
}

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

.button {
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  padding: 13px 18px;
  text-decoration: none;
}

.button.primary {
  background: #f3f7f5;
  color: #0c332c;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

.section,
.band,
.contact {
  padding: 72px clamp(18px, 5vw, 72px);
}

.band {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

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

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
}

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

.intro {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.9fr 1.1fr;
}

.intro-text {
  display: grid;
  gap: 16px;
}

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

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.service-grid article,
.steps article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.service-icon {
  align-items: center;
  background: #e7f1ee;
  border-radius: 6px;
  color: var(--green-dark);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.service-grid p,
.steps p {
  margin: 0;
}

.audience-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.audience-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: 24px;
}

.audience-grid p {
  margin: 0;
}

.split {
  display: grid;
  gap: 48px;
  grid-template-columns: 0.95fr 1.05fr;
}

.split-content p {
  font-size: 18px;
  margin-top: 0;
}

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

.check-list li {
  background: #f6f8f7;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
}

.steps {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.steps strong {
  color: var(--green);
  display: inline-block;
  font-size: 14px;
  margin-bottom: 16px;
}

.contact {
  align-items: center;
  background: var(--green-dark);
  color: white;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 0.75fr;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  max-width: 720px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-card a {
  color: white;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.78);
}

footer {
  align-items: center;
  background: #071b18;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 72px);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-hero {
  background: #0b2a25;
  color: white;
  padding: 76px clamp(18px, 5vw, 72px) 54px;
}

.legal-hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.04;
  margin: 0;
}

.legal-page {
  padding: 54px clamp(18px, 5vw, 72px) 82px;
}

.legal-content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 980px;
  padding: clamp(22px, 4vw, 48px);
}

.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--ink);
  line-height: 1.18;
  margin: 30px 0 12px;
}

.legal-content h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.legal-content h3 {
  font-size: 24px;
}

.legal-content h4 {
  font-size: 19px;
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  color: #354151;
}

.legal-content a {
  color: var(--green);
  font-weight: 700;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content table {
  border-collapse: collapse;
  display: block;
  margin: 18px 0;
  max-width: 100%;
  overflow-x: auto;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

.privacy-consent {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: 0 18px 50px rgba(7, 27, 24, 0.22);
  display: flex;
  gap: 20px;
  left: 50%;
  max-width: min(920px, calc(100vw - 32px));
  padding: 18px;
  position: fixed;
  transform: translateX(-50%);
  width: max-content;
  z-index: 50;
}

.privacy-consent__text {
  display: grid;
  gap: 4px;
  max-width: 620px;
}

.privacy-consent__text strong {
  color: var(--ink);
}

.privacy-consent__text span {
  color: var(--muted);
  font-size: 14px;
}

.privacy-consent__text a {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.privacy-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-consent__button {
  border: 1px solid var(--green-dark);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 10px 14px;
}

.privacy-consent__button--primary {
  background: var(--green-dark);
  color: #ffffff;
}

.privacy-consent__button--ghost {
  background: #ffffff;
  color: var(--green-dark);
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .audience-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .privacy-consent {
    align-items: stretch;
    flex-direction: column;
    width: calc(100vw - 32px);
  }

  .privacy-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  nav a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }
}
