:root {
  --green-900: #113d2a;
  --green-800: #17472f;
  --green-700: #225a3c;
  --green-100: #e8f2ea;
  --leaf: #8bbd52;
  --gold: #d7b768;
  --ink: #1b211d;
  --muted: #647067;
  --line: #d9e2dc;
  --paper: #fbfdf9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 61, 42, 0.18);
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 253, 249, 0.94);
  box-shadow: 0 1px 24px rgba(17, 61, 42, 0.12);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.header-call {
  text-decoration: none;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 20, 0.82) 0%, rgba(7, 28, 20, 0.55) 46%, rgba(7, 28, 20, 0.18) 100%),
    url("/assets/images/hero-landscape.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

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

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

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.65rem, 6.3vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--green-900);
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(215, 183, 104, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.button.secondary.on-dark {
  color: var(--white);
}

.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -42px auto 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quick-info div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  color: var(--green-900);
  font-size: 1.05rem;
}

.quick-info span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  width: min(780px, 100%);
}

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

.service-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.work-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 92px clamp(18px, 5vw, 72px);
  background: var(--green-900);
  color: var(--white);
}

.work-band h2 {
  color: var(--white);
}

.work-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 16px;
}

.media-item {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  background: var(--green-700);
}

.media-item.large {
  grid-row: span 2;
}

.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.media-item.accent,
.media-item.dark {
  display: grid;
  place-items: center;
  min-height: 190px;
}

.media-item.accent {
  background: linear-gradient(135deg, #d7b768, #8bbd52);
}

.media-item.dark {
  background: linear-gradient(135deg, #1d2a24, #225a3c);
}

.media-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  font-weight: 900;
}

.gallery-section {
  padding-top: 86px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.detail-gallery figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--green-100);
}

.detail-gallery img,
.detail-gallery video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery video {
  background: var(--green-900);
}

.detail-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.detail-gallery figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.video-figure video {
  object-position: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.area-panel {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.area-panel p {
  margin-top: 0;
  color: var(--muted);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.area-list li {
  padding: 12px 14px;
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 800;
}

.contact-section {
  padding: 86px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(17, 61, 42, 0.88), rgba(17, 61, 42, 0.88)),
    url("/assets/images/hero-landscape.png") center / cover no-repeat;
}

.contact-card {
  width: min(820px, 100%);
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--green-900);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .hero {
    min-height: 850px;
  }

  .quick-info,
  .services-grid,
  .work-band,
  .split {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

  .media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .media-item.large {
    grid-row: auto;
    min-height: 330px;
  }

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

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

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 132px;
  }

  .header-call {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 760px;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .service-card {
    min-height: auto;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

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

  .detail-gallery figure {
    min-height: 390px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
