:root {
  --ink: #1f2723;
  --muted: #66736c;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --linen: #ebe3d4;
  --forest: #294c3d;
  --forest-dark: #173126;
  --brass: #b78945;
  --clay: #8f5146;
  --line: rgba(31, 39, 35, 0.14);
  --shadow: 0 22px 60px rgba(30, 38, 34, 0.16);
  --radius: 8px;
  --shell: min(1140px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--panel);
  border: 2px solid var(--forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #fff;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.5rem;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.brand small {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  background: rgba(41, 76, 61, 0.1);
  color: var(--forest-dark);
}

.nav-menu .nav-cta {
  background: var(--forest);
  color: #fff;
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 50%;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bar::before {
  transform: translateY(-6px);
}

.nav-toggle__bar::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle__bar {
  transform: rotate(45deg);
}

.nav-open .nav-toggle__bar::before {
  transform: translateY(0) rotate(90deg);
}

.nav-open .nav-toggle__bar::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(18, 30, 25, 0.86), rgba(18, 30, 25, 0.48) 48%, rgba(18, 30, 25, 0.14));
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 92px;
  max-width: var(--shell);
}

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

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

h1,
h2,
h3 {
  line-height: 1.05;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

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

h3 {
  font-size: 1.2rem;
}

.hero__lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.button--primary {
  background: var(--brass);
  color: #151a17;
}

.button--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest-dark);
}

.button--secondary {
  background: var(--forest);
  color: #fff;
}

.text-link {
  color: var(--forest-dark);
  font-weight: 700;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.intro-band {
  background: var(--forest-dark);
  color: #fff;
  padding: 46px 0;
}

.intro-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.intro-grid h2,
.cta-grid h2 {
  margin-bottom: 0;
}

.intro-grid p:last-child,
.cta-grid p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.section {
  padding: 82px 0;
}

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

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

.service-grid,
.preview-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.process-grid article,
.contact-card,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(30, 38, 34, 0.08);
}

.service-card {
  min-height: 250px;
  padding: 28px;
}

.service-card__number {
  color: var(--clay);
  font-weight: 800;
}

.service-card p,
.process-grid p,
.contact-card span,
.contact-form p {
  color: var(--muted);
}

.feature-strip {
  background: var(--linen);
  padding: 72px 0;
}

.feature-strip--light {
  background: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.feature-grid--reverse img {
  order: 2;
}

.feature-grid img,
.page-hero--split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 540px;
}

.preview-tile {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  background: var(--ink);
}

.preview-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.preview-tile span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: rgba(23, 49, 38, 0.86);
  border-radius: var(--radius);
  font-weight: 700;
}

.preview-tile:hover img {
  transform: scale(1.05);
}

.cta-band {
  background: var(--forest);
  color: #fff;
  padding: 58px 0;
}

.page-hero {
  padding: 88px 0 48px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  padding: 10px 14px;
  color: var(--ink);
  cursor: pointer;
}

.gallery-filter.is-active,
.gallery-filter:hover {
  background: var(--forest);
  color: #fff;
}

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

.gallery-item {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(30, 38, 34, 0.08);
  text-align: left;
  cursor: pointer;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-item span {
  padding: 14px 16px;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(18, 30, 25, 0.9);
  color: #fff;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
}

.story-main {
  max-width: 760px;
}

.stat-panel {
  display: grid;
  gap: 14px;
}

.stat-panel div,
.process-grid article {
  padding: 24px;
  background: var(--panel);
  border-left: 4px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(30, 38, 34, 0.08);
}

.stat-panel strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.8rem;
}

.stat-panel span {
  color: var(--muted);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-card,
.contact-form {
  padding: 26px;
}

.contact-card h2,
.contact-form h2,
.site-footer h2 {
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

address {
  font-style: normal;
}

.map-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--linen);
}

.map-panel iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
  padding: 12px 13px;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(183, 137, 69, 0.28);
  border-color: var(--brass);
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.site-footer {
  background: #151a17;
  color: rgba(255, 255, 255, 0.82);
  padding: 54px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.brand--footer {
  color: #fff;
  margin-bottom: 14px;
}

.brand--footer small,
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  :root {
    --shell: min(100vw - 28px, 720px);
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    display: none;
    padding: 12px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-menu {
    display: grid;
  }

  .nav-menu a {
    border-radius: var(--radius);
  }

  .nav-menu .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(18, 30, 25, 0.88), rgba(18, 30, 25, 0.38));
  }

  .intro-grid,
  .cta-grid,
  .feature-grid,
  .page-hero--split,
  .story-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid--reverse img {
    order: 0;
  }

  .service-grid,
  .preview-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading--split {
    display: block;
  }

  .section-heading--split .button {
    margin-top: 10px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.65rem;
  }

  .hero__content {
    padding-bottom: 58px;
  }

  .button,
  .button-row,
  .cta-actions {
    width: 100%;
  }

  .service-grid,
  .preview-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .preview-tile {
    min-height: 260px;
  }

  .footer-bottom {
    display: block;
  }
}

@media print {
  .site-header,
  .button,
  .nav-toggle,
  .gallery-toolbar,
  .map-panel,
  .lightbox {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
