:root {
  --ink: #182119;
  --muted: #5e695f;
  --paper: #f7f3ec;
  --soft: #ece5d8;
  --leaf: #5f7d65;
  --leaf-dark: #314737;
  --clay: #b7784d;
  --line: rgba(24, 33, 25, 0.14);
  --white: #fffdf8;
  --shadow: 0 18px 50px rgba(24, 33, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 5vw;
  background: rgba(247, 243, 236, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  font-size: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: 4px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--leaf-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  padding: 9rem 5vw 6rem;
  overflow: hidden;
}

.hero.compact {
  min-height: 68vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 33, 25, 0.78), rgba(24, 33, 25, 0.34) 52%, rgba(24, 33, 25, 0.05));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f0cf9c;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.hero p {
  max-width: 720px;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

section {
  padding: 6.5rem 5vw;
}

.section-head {
  max-width: 880px;
  margin-bottom: 2.6rem;
}

.section-head p {
  max-width: 720px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.quote-card,
.price-card,
.metric,
.person-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card img,
.person-card img {
  aspect-ratio: 4 / 3;
}

.feature-card .content,
.quote-card,
.price-card,
.metric,
.person-card .content {
  padding: 1.35rem;
}

.feature-card p,
.quote-card p,
.price-card p,
.metric p,
.person-card p {
  color: var(--muted);
  margin-top: 0.65rem;
}

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

.band .section-head p,
.band .quote-card p {
  color: rgba(255, 253, 248, 0.78);
}

.band .quote-card {
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.18);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 4rem;
  align-items: center;
}

.split-image {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step {
  padding: 1.35rem;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--clay);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
}

.price {
  margin: 1rem 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.price-card ul {
  margin: 1.25rem 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 0.45rem;
}

.price-card .button {
  margin-top: auto;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3.5rem 5vw;
  background: #141914;
  color: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255, 253, 248, 0.72);
}

.footer-meta {
  color: rgba(255, 253, 248, 0.64);
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5vw 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav.open {
    display: flex;
  }

  .nav .button {
    width: 100%;
  }

  .hero {
    min-height: 76vh;
  }

  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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