* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #17342f;
  background: #f3f8f4;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 56px clamp(22px, 6vw, 96px);
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 253, 249, 0.97) 0%, rgba(250, 253, 249, 0.85) 37%, rgba(250, 253, 249, 0.26) 65%, rgba(250, 253, 249, 0.03) 100%),
    linear-gradient(0deg, rgba(15, 54, 48, 0.14), rgba(15, 54, 48, 0));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #2f7c87;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #17342f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.2rem);
  font-weight: 700;
  line-height: 0.88;
}

.tagline {
  margin: 20px 0 0;
  color: #2c6870;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
}

.intro {
  margin: 24px 0 0;
  max-width: 500px;
  color: #2b4c47;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.62;
}

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

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(29, 78, 72, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: #17342f;
  font-weight: 700;
  background: #1e6d76;
  color: #ffffff;
  border-color: #1e6d76;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(29, 78, 72, 0.2);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.actions a:hover {
  background: #175c64;
  box-shadow: 0 15px 32px rgba(29, 78, 72, 0.26);
  transform: translateY(-2px);
}

.actions a:focus-visible {
  outline: 3px solid #f6c84f;
  outline-offset: 4px;
}

.note {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(36px, 7vw, 82px) clamp(22px, 6vw, 96px);
  background: #fffdf7;
  border-top: 1px solid rgba(29, 78, 72, 0.16);
}

.note__label {
  margin: 0 0 10px;
  color: #2f7c87;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note h2 {
  margin: 0;
  color: #17342f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.note__copy > p:first-child {
  margin: 0;
  color: #38534f;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.note__copy p {
  margin: 0;
}

.note__copy .note__signoff {
  margin-top: 18px;
  color: #2f7c87;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.45;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(22px, 6vw, 96px);
  background: #17342f;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .hero {
    min-height: 78vh;
    align-items: end;
    padding-block: 42px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(246, 252, 249, 0.96) 0%, rgba(246, 252, 249, 0.82) 44%, rgba(246, 252, 249, 0.12) 78%, rgba(246, 252, 249, 0) 100%),
      linear-gradient(90deg, rgba(246, 252, 249, 0.54), rgba(246, 252, 249, 0));
  }

  .hero__image {
    object-position: 70% center;
  }

  .actions a {
    flex: 1 1 160px;
  }

  .note {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 440px) {
  .hero {
    min-height: 84vh;
  }

  h1 {
    font-size: clamp(3.45rem, 20vw, 5.2rem);
  }

  .intro {
    line-height: 1.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .actions a {
    transition: none;
  }
}
