:root {
  color-scheme: light;
  --ink: #26312c;
  --muted: #5d6d67;
  --paper: #fffaf3;
  --surface: #ffffff;
  --green: #567c55;
  --coral: #c7584f;
  --gold: #d6a84f;
  --line: rgba(38, 49, 44, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.actions,
address,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

nav {
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 128px clamp(20px, 6vw, 88px) 68px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.94), rgba(255, 250, 243, 0.68) 42%, rgba(255, 250, 243, 0.08) 76%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #34413b;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.secondary {
  background: rgba(255, 255, 255, 0.76);
}

.section-band,
.content-grid,
.values {
  padding: clamp(58px, 9vw, 110px) clamp(20px, 6vw, 88px);
}

.section-band,
.content-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.intro {
  background: var(--surface);
}

.content-grid {
  background: #f7fbf2;
  border-block: 1px solid var(--line);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.value {
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--surface);
}

.contact {
  background: #fff5f1;
}

address {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 800;
}

address a {
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
}

footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: var(--muted);
  background: var(--ink);
}

footer span:first-child {
  color: white;
  font-weight: 800;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 880px;
    padding-top: 170px;
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.9), rgba(255, 250, 243, 0.76) 45%, rgba(255, 250, 243, 0.98));
  }

  h1 {
    max-width: 8ch;
    font-size: 4rem;
  }

  .section-band,
  .content-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .value {
    min-height: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
