:root {
  color-scheme: light;
  --ink: #1f3129;
  --muted: #65766c;
  --line: #dbe7df;
  --surface: #fbfdf9;
  --leaf-dark: #2f5f4b;
  --leaf: #517965;
  --cream: #f7f3e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 58, 46, 0.16);
}

* {
  box-sizing: border-box;
}

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

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

a {
  color: inherit;
}

.site-shell {
  padding: 20px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 40px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__image,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 253, 249, 0.96) 0%, rgba(251, 253, 249, 0.82) 42%, rgba(251, 253, 249, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.1) 52%, rgba(247, 243, 232, 0.66) 100%);
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  align-self: start;
  padding: 26px clamp(22px, 5vw, 56px);
}

.brand {
  min-width: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 28px);
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--ink);
}

.hero__content {
  width: min(700px, 100%);
  align-self: center;
  padding: 32px clamp(22px, 5vw, 56px) 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.4vw, 5.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 60px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0;
  align-items: center;
}

.feature h2 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.feature p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.feature__panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature__panel > div {
  padding: 24px;
}

.feature__panel > div + div {
  border-top: 1px solid var(--line);
}

.feature__panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature__panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
}

.feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(47, 95, 75, 0.32);
  border-radius: 8px;
  color: var(--leaf-dark);
  background: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button:hover {
  border-color: var(--leaf-dark);
}

.button--primary {
  color: var(--white);
  background: var(--leaf-dark);
}

.button--primary:hover {
  background: #244f3e;
}

@media (max-width: 720px) {
  .site-shell {
    padding: 12px;
  }

  .hero {
    min-height: calc(100vh - 24px);
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(251, 253, 249, 0.98) 0%, rgba(251, 253, 249, 0.92) 48%, rgba(251, 253, 249, 0.38) 100%),
      linear-gradient(90deg, rgba(247, 243, 232, 0.52), rgba(255, 255, 255, 0));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 18px;
    font-size: 0.86rem;
  }

  .hero__content {
    align-self: start;
    padding: 32px 22px 220px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .feature {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1120px);
    padding: 48px 0 64px;
  }

  .feature__panel > div {
    padding: 20px;
  }

  .feature__actions {
    display: grid;
  }
}
