:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --text: #151a17;
  --muted: #58615c;
  --line: #dfe5de;
  --green: #0f8a70;
  --green-dark: #0b4f44;
  --accent: #e85d4f;
  --shadow: 0 18px 50px rgba(21, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: #ffffff;
}

.brand {
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 72px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(10, 16, 13, 0.83), rgba(10, 16, 13, 0.46)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80")
      center / cover;
}

.hero-content {
  width: min(680px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb0a8;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.primary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.intro-section,
.contact-section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-section p:not(.section-kicker),
.contact-section p {
  width: min(720px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 8vw, 96px);
  align-items: end;
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9faf8;
  font-style: normal;
  color: var(--muted);
}

.contact-list a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--accent);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

  .hero {
    min-height: 76vh;
    padding-top: 140px;
  }

  h1 {
    max-width: 9ch;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}
