:root {
  --ink: #20251f;
  --moss: #344c37;
  --sage: #dce5d6;
  --leaf: #6f8a58;
  --clay: #9a5b3c;
  --gold: #c7a454;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --line: rgba(32, 37, 31, 0.16);
  --shadow: 0 24px 60px rgba(32, 37, 31, 0.16);
}

* {
  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.6;
}

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

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--moss);
}

.brand span {
  border-bottom: 2px solid var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
}

.site-nav a {
  padding: 8px 0;
  color: rgba(32, 37, 31, 0.78);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  border-color: var(--clay);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--moss);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 28, 18, 0.78), rgba(20, 28, 18, 0.36) 52%, rgba(20, 28, 18, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 48px));
  margin: 0 0 11vh 7vw;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0d58c;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
}

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

.button.secondary {
  color: white;
  background: var(--moss);
}

.button.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.62);
}

.band,
.services-preview,
.feature-split,
.page-main,
.cta-band,
.gallery-grid,
.about-layout,
.values-band,
.contact-layout,
.payment-layout {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.intro {
  padding: 88px 0 72px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.intro-grid p {
  font-size: 1.18rem;
}

.services-preview {
  padding: 78px 0;
}

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

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

.service-card,
.service-detail-grid article,
.values-band article,
.payment-panel,
.payment-notes,
.contact-aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.service-card span,
.service-number {
  display: block;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--moss);
  font-weight: 800;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 86px 0;
}

.feature-copy p {
  font-size: 1.06rem;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sage);
}

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

.image-panel figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: rgba(32, 37, 31, 0.72);
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 360px;
  margin-top: 40px;
}

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

.cta-band {
  justify-content: space-between;
  margin-top: 84px;
  margin-bottom: 84px;
  padding: 42px;
  color: white;
  background: var(--moss);
  border-radius: 8px;
}

.cta-band h2 {
  margin-bottom: 0;
}

.page-main {
  padding: 72px 0 86px;
}

.page-hero {
  padding: 28px 0 62px;
}

.page-hero.compact {
  max-width: 900px;
}

.page-hero h1 {
  color: var(--moss);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.15rem;
}

.service-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 26px;
}

.services-image {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  border-radius: 8px;
  background: var(--sage);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: white;
  background: rgba(32, 37, 31, 0.7);
  border-radius: 8px;
  font-weight: 700;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.lightbox {
  width: min(920px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(20, 24, 18, 0.76);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ink);
}

.lightbox p {
  margin: 0;
  padding: 16px 18px;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  color: white;
  background: rgba(32, 37, 31, 0.82);
  border: 0;
  border-radius: 8px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  height: 660px;
  object-fit: cover;
}

.about-copy h1 {
  color: var(--moss);
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.about-copy p {
  font-size: 1.08rem;
}

.values-band {
  margin-top: 78px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

.contact-aside img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 22px;
  border-radius: 8px;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 24px;
}

.disabled-link {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
  color: rgba(32, 37, 31, 0.74);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 880px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: grid;
    gap: 8px;
  }

  .hero-content {
    margin: 0 auto 56px;
  }

  .intro-grid,
  .feature-split,
  .services-image,
  .about-layout,
  .contact-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-detail-grid,
  .values-band,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .gallery-strip img {
    height: 230px;
  }

  .portrait img,
  .image-panel img {
    height: 430px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.14rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(20, 28, 18, 0.3), rgba(20, 28, 18, 0.82));
  }

  .band,
  .services-preview,
  .feature-split,
  .page-main,
  .cta-band,
  .gallery-grid,
  .about-layout,
  .values-band,
  .contact-layout,
  .payment-layout {
    width: min(100% - 28px, 1180px);
  }

  .cta-band {
    padding: 28px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 24px 20px;
  }
}
