:root {
  --ink: #151515;
  --muted: #5f6568;
  --line: #d9ded9;
  --paper: #fbfbf8;
  --white: #ffffff;
  --forest: #28473b;
  --steel: #516977;
  --wood: #b78b59;
  --soft-green: #eef3ed;
  --shadow: 0 20px 50px rgba(20, 29, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 251, 248, 0.94);
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(260px, 58vw);
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav a {
  border-radius: 4px;
  padding: 10px 13px;
  color: #2c3030;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.1));
}

.hero-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 clamp(18px, 7vw, 92px) clamp(44px, 8vw, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.3rem, 7vw, 5.8rem);
}

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

h3 {
  font-size: 1.28rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.36rem);
}

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

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

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

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

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.split-section,
.services-preview,
.content-section,
.process-section,
.gallery-section,
.values-section,
.contact-layout,
.contact-hero,
.image-text {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.choice-grid,
.service-grid,
.step-grid,
.values-section,
.gallery-grid {
  display: grid;
  gap: 18px;
}

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

.choice-card,
.service-grid article,
.step-grid article,
.values-section article,
.contact-panel,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(35, 38, 35, 0.06);
}

.choice-card {
  overflow: hidden;
}

.choice-card > div:not(.card-media) {
  padding: 26px;
}

.card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-media img,
.gallery-grid img,
.image-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  width: fit-content;
  margin: 0 0 14px;
  border-left: 4px solid var(--wood);
  padding-left: 10px;
  color: var(--muted);
  font-weight: 800;
}

.choice-card p,
.service-grid p,
.step-grid p,
.values-section p,
.rich-text p,
.contact-panel p,
.contact-panel li,
.image-text p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 86px) 0;
}

.band p:not(.eyebrow) {
  margin: 0;
  color: #d9ddd9;
  font-size: 1.1rem;
}

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

.service-grid article,
.step-grid article,
.values-section article {
  padding: 26px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: var(--soft-green);
  color: var(--forest);
  font-weight: 900;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.rich-text p:first-child {
  margin-top: 0;
}

.process-section {
  padding-top: 20px;
}

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

.step-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--steel);
  font-weight: 900;
}

.image-text {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.image-text img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compact {
  padding-top: 20px;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 360px);
  gap: 36px;
  align-items: center;
  padding-bottom: 36px;
}

.contact-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.contact-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.14rem;
}

.contact-hero img {
  width: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.8fr);
  gap: 22px;
  padding-top: 0;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d0cc;
  border-radius: 4px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-panel {
  padding: 26px;
}

.contact-panel ul {
  margin: 18px 0;
  padding-left: 20px;
}

.small {
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(18px, 4vw, 54px);
  background: var(--forest);
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
  color: #dfe6df;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .choice-grid,
  .service-grid,
  .step-grid,
  .gallery-grid,
  .band-inner,
  .two-column,
  .image-text,
  .contact-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 74vh;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.58);
  }
}

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

  .brand {
    width: min(210px, 58vw);
  }

  .hero-content {
    margin-bottom: 34px;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .choice-card > div:not(.card-media),
  .service-grid article,
  .step-grid article,
  .values-section article,
  .contact-panel,
  .contact-form {
    padding: 20px;
  }
}
