:root {
  --ink: #17221f;
  --muted: #65716d;
  --cream: #f5f1e9;
  --paper: #fffdf9;
  --line: #d9dfd9;
  --green: #1e5547;
  --green-dark: #143b32;
  --coral: #d96c4d;
  --white: #ffffff;
  --max-width: 1120px;
}

* {
  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.6;
}

a {
  color: inherit;
}

.site-header {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
}

nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

nav a:hover,
.footer-links a:hover {
  color: var(--coral);
}

.hero {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  padding: 110px 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  right: 12%;
  top: 100px;
  border: 22px solid var(--green);
  border-radius: 50%;
  opacity: 0.12;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.9;
  letter-spacing: 2px;
}

h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--green-dark);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 25px;
  line-height: 1.2;
}

.hero-text {
  max-width: 460px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.button-primary:hover {
  background: #bd573c;
}

.button-secondary {
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--green-dark);
}

.button-dark {
  color: var(--white);
  background: var(--green-dark);
}

.button-dark:hover {
  background: var(--coral);
}

.hero-note {
  max-width: 180px;
  padding-left: 18px;
  border-left: 2px solid var(--coral);
  position: relative;
  z-index: 1;
}

.hero-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.note-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.section {
  padding: 100px max(20px, calc((100% - var(--max-width)) / 2));
}

.section-light {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 55px;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
}

.large-copy {
  max-width: 650px;
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
}

.info-list {
  border-top: 1px solid var(--line);
}

.info-list div {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line);
}

.info-list span,
.contact-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.info-list strong {
  color: var(--green-dark);
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  gap: 24px;
  margin-bottom: 70px;
}

.contact-card {
  padding: 32px;
  background: var(--cream);
  border-top: 3px solid var(--coral);
}

.contact-value {
  display: block;
  margin: 12px 0;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

address {
  font-style: normal;
}

.social-area {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--green);
}

.social-area h3,
.social-area .eyebrow {
  color: var(--white);
}

.social-area p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 0;
  color: #d8e5df;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--green-dark);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

.legal-page {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 110px;
}

.legal-page h1 {
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 80px);
}

.legal-date {
  color: var(--muted);
  margin-bottom: 60px;
}

.legal-page article {
  color: #3f4a46;
  font-size: 16px;
}

.legal-page article h2 {
  margin: 42px 0 12px;
  color: var(--green-dark);
  font-size: 25px;
}

.legal-page article p {
  margin-bottom: 16px;
}

.legal-page article ul {
  padding-left: 22px;
}

.legal-page article a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
    display: block;
  }

  .hero::before {
    width: 150px;
    height: 150px;
    right: -35px;
    top: 90px;
    border-width: 14px;
  }

  .hero-note {
    margin-top: 60px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .social-area,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .copyright {
    white-space: normal;
  }
}