:root {
  color-scheme: light;
  --bg: #fbfaf6;
  --paper: #ffffff;
  --ink: #24231f;
  --muted: #6c675d;
  --line: #e7e0d2;
  --accent: #52745d;
  --accent-strong: #31523b;
  --warm: #d99a43;
  --shadow: 0 18px 50px rgba(59, 44, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header,
.site-footer,
.section {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover {
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-block: 1px solid rgba(231, 224, 210, 0.6);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 19, 16, 0.72), rgba(20, 19, 16, 0.2) 48%, rgba(20, 19, 16, 0.03)),
    linear-gradient(0deg, rgba(20, 19, 16, 0.5), transparent 45%);
  pointer-events: none;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 72px;
  color: #fff;
  justify-self: start;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(40px, 7vw, 82px);
}

.hero-copy p:last-child {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.hero .eyebrow {
  color: #ffe0b3;
}

.section {
  padding: 70px 0;
}

.intro,
.care {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: start;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-date {
  color: var(--warm);
  font-size: 14px;
  font-weight: 800;
}

.card h3 {
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.card p {
  font-size: 16px;
}

.checklist {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(20, 19, 16, 0.78), rgba(20, 19, 16, 0.1) 72%),
      linear-gradient(90deg, rgba(20, 19, 16, 0.2), transparent);
  }

  .hero-image {
    object-position: 42% center;
  }

  .hero-copy {
    padding-bottom: 46px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .intro,
  .care,
  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
