:root {
  --ink: #20211d;
  --muted: #5f5e56;
  --paper: #f4f0e8;
  --soft: #e8dfd0;
  --white: #fffdf8;
  --wood: #8a5b35;
  --green: #536454;
  --dark: #171813;
  --line: rgba(32, 33, 29, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(244, 240, 232, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(32, 33, 29, 0.06);
}

.hero {
  width: min(100%, var(--max));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

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

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.7vw, 4.4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-weight: 760;
}

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

.button.ghost {
  background: rgba(255, 253, 248, 0.36);
}

.hero-image {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  background: var(--soft);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 122px) clamp(18px, 4vw, 54px);
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.two-columns p,
.services p,
.steps p,
.site-footer p,
.info-card p {
  color: var(--muted);
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(clamp(18px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px));
  padding-right: max(clamp(18px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px));
  background: var(--soft);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.horizontal {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-weight: 760;
  white-space: nowrap;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.38);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services span,
.info-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--wood);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.steps article {
  min-height: 190px;
  padding: 28px;
  background: var(--paper);
}

.steps strong {
  display: block;
  margin-bottom: 16px;
  font-size: 1.2rem;
}

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

.image-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--soft);
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: clamp(54px, 7vw, 86px) max(clamp(18px, 4vw, 54px), calc((100vw - var(--max)) / 2 + 54px));
  color: var(--white);
  background: var(--dark);
}

.cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
}

.cta .eyebrow {
  color: #d5c3a5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px clamp(18px, 4vw, 54px);
  color: rgba(255, 253, 248, 0.78);
  background: var(--dark);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.site-footer strong {
  color: var(--white);
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-links a:hover {
  color: var(--white);
}

.page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) clamp(18px, 4vw, 54px) clamp(38px, 6vw, 70px);
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
}

.gallery-block {
  padding-top: 32px;
}

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

.gallery-grid figure {
  position: relative;
  grid-column: span 4;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.gallery-grid figure.large {
  grid-column: span 7;
  min-height: 440px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(23, 24, 19, 0.74);
  font-weight: 740;
}

.gallery-grid .placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(83, 100, 84, 0.18), rgba(138, 91, 53, 0.12)),
    var(--soft);
}

.placeholder span {
  color: var(--wood);
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.placeholder figcaption {
  position: static;
  padding: 0;
  color: var(--muted);
  background: transparent;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  gap: 22px;
  padding-top: 26px;
}

.contact-card,
.info-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}

.contact-card a {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact-card a:hover {
  border-color: rgba(83, 100, 84, 0.55);
}

.contact-card span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.12rem, 2.4vw, 1.8rem);
}

.info-card {
  display: grid;
  gap: 26px;
}

.info-card span {
  margin-bottom: 8px;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .two-columns,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .hero-image img {
    min-height: 380px;
  }

  .services,
  .steps,
  .image-grid {
    grid-template-columns: 1fr;
  }

  .section-head.horizontal {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid figure,
  .gallery-grid figure.large {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 0;
  }

  .brand img {
    width: 146px;
  }

  .site-nav a {
    padding: 8px 9px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-image,
  .hero-image img,
  .gallery-grid figure,
  .gallery-grid figure.large {
    min-height: 280px;
  }
}
