:root {
  --ink: #1d2017;
  --ink-soft: #424738;
  --olive: #6f765d;
  --olive-deep: #3d4630;
  --cream: #f7f4ed;
  --paper: #fffdf8;
  --stone: #d9d2c3;
  --mist: #e9eee8;
  --water: #8fb7b5;
  --line: rgba(29, 32, 23, 0.16);
  --shadow: 0 24px 80px rgba(19, 21, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(29, 32, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(168px, 17vw, 270px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 40px);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 92vh;
  background: var(--ink);
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 21, 16, 0.78), rgba(19, 21, 16, 0.34) 48%, rgba(19, 21, 16, 0.16)),
    linear-gradient(0deg, rgba(19, 21, 16, 0.55), rgba(19, 21, 16, 0.08) 44%);
}

.hero-content {
  position: absolute;
  bottom: clamp(56px, 9vw, 110px);
  left: clamp(22px, 6vw, 86px);
  width: min(760px, calc(100% - 44px));
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dce5d1;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 9vw, 8.3rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: white;
}

.section-band,
.section-block {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 76px);
}

.section-band {
  background: var(--cream);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: end;
}

.intro h2 {
  max-width: 910px;
}

.intro-stats {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.intro-stats div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-bottom: 1px solid var(--line);
}

.intro-stats strong {
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.intro-stats span {
  align-self: center;
  color: var(--ink-soft);
  font-weight: 620;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 34px;
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 66px);
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 850px;
}

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

.feature-card {
  display: grid;
  grid-column: span 2;
  min-height: 440px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(29, 32, 23, 0.1);
  border-radius: 6px;
  box-shadow: 0 14px 48px rgba(19, 21, 16, 0.08);
}

.feature-large {
  grid-column: span 4;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 560px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.feature-card div {
  align-self: end;
  padding: clamp(24px, 4vw, 48px);
}

.feature-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card p,
.service-list p,
.process-copy li span,
.inquiry p,
.site-footer p {
  color: var(--ink-soft);
}

.services {
  background:
    linear-gradient(90deg, rgba(143, 183, 181, 0.18), transparent 42%),
    var(--mist);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 32, 23, 0.12);
  border-radius: 6px;
  background: rgba(29, 32, 23, 0.12);
}

.service-list article {
  min-height: 260px;
  padding: clamp(24px, 3.4vw, 38px);
  background: rgba(255, 253, 248, 0.74);
}

.service-list h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.process-media {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.process-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.process-copy ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 40px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-copy li {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-copy strong {
  color: var(--olive-deep);
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(64px, 8vw, 106px) clamp(20px, 5vw, 76px);
  color: white;
  background:
    linear-gradient(90deg, rgba(29, 32, 23, 0.92), rgba(61, 70, 48, 0.88)),
    url("assets/landscape-lighting.png") center/cover;
}

.inquiry .section-kicker,
.inquiry p {
  color: rgba(255, 255, 255, 0.74);
}

.inquiry h2 {
  max-width: 950px;
}

.inquiry p {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.inquiry .button-primary {
  color: var(--ink);
  background: white;
  border-color: white;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 76px);
  background: var(--paper);
  border-top: 1px solid rgba(29, 32, 23, 0.1);
}

.site-footer img {
  width: min(260px, 100%);
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--olive-deep);
}

@media (max-width: 1020px) {
  .feature-grid,
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .feature-large {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .intro,
  .process,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .inquiry {
    align-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    display: grid;
    gap: 14px;
    justify-items: center;
    padding-top: 14px;
  }

  .brand img {
    width: min(78vw, 320px);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero,
  .hero-video {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(19, 21, 16, 0.25), rgba(19, 21, 16, 0.78) 58%, rgba(19, 21, 16, 0.88)),
      linear-gradient(90deg, rgba(19, 21, 16, 0.42), rgba(19, 21, 16, 0.16));
  }

  .hero-content {
    bottom: 42px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-large {
    grid-column: span 1;
    min-height: auto;
  }

  .service-list article {
    min-height: auto;
  }

  .process-copy li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
