:root {
  color-scheme: light;
  --ink: #24312a;
  --muted: #637067;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --line: #ded8ca;
  --leaf: #44634d;
  --clay: #b56f43;
  --sky: #d9e9ef;
  --shadow: 0 20px 50px rgba(47, 43, 35, 0.14);
}

* {
  box-sizing: border-box;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 2;
}

.brand {
  color: var(--leaf);
  font-weight: 800;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.hero {
  display: grid;
  min-height: calc(100vh - 64px);
  position: relative;
}

.hero img {
  grid-area: 1 / 1;
  height: calc(100vh - 64px);
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}

.hero::after {
  background: linear-gradient(90deg, rgba(13, 22, 16, 0.62), rgba(13, 22, 16, 0.18) 58%, rgba(13, 22, 16, 0.04));
  content: "";
  grid-area: 1 / 1;
}

.hero-copy {
  align-self: center;
  color: #fffaf0;
  grid-area: 1 / 1;
  max-width: 660px;
  padding: 8vh 6vw 12vh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8a8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  margin-bottom: 24px;
  max-width: 720px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0;
}

h3 {
  font-size: 1.1rem;
  margin: 18px 0 8px;
}

.hero-copy p:last-child {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 520px;
}

.section {
  padding: 82px 6vw;
}

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

.intro > p,
.care ul {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

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

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

.photo-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.photo-grid h3,
.photo-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.photo-grid p {
  color: var(--muted);
  margin-bottom: 24px;
}

.care {
  background: var(--sky);
}

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

.care li {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(68, 99, 77, 0.18);
  border-radius: 8px;
  padding: 16px 18px;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px 6vw;
}

footer p {
  margin: 0;
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 14px;
    padding-top: 14px;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero img {
    height: 76vh;
    min-height: 520px;
  }

  .hero-copy {
    align-self: end;
    padding-bottom: 9vh;
  }

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

  .section {
    padding-bottom: 62px;
    padding-top: 62px;
  }
}
