:root {
  --forest: #244f3b;
  --forest-dark: #10291f;
  --moss: #6f8e4f;
  --ochre: #d9a12c;
  --clay: #a85d36;
  --ink: #17221d;
  --paper: #f7f1e4;
  --paper-2: #ebe0cb;
  --blue: #28556c;
  --white: #fffaf0;
  --shadow: 0 24px 80px rgba(16, 41, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 241, 228, 0.88);
  border-bottom: 1px solid rgba(36, 79, 59, 0.13);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

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

.nav a,
.nav-cta {
  text-decoration: none;
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 41, 31, 0.86), rgba(16, 41, 31, 0.42) 52%, rgba(16, 41, 31, 0.18)),
    linear-gradient(0deg, rgba(16, 41, 31, 0.72), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 92px;
}

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

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 14vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-intro {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  color: rgba(255, 250, 240, 0.92);
}

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

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

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.45);
  background: rgba(255, 250, 240, 0.08);
}

.button.wide {
  width: 100%;
}

.intro-band {
  background: var(--forest-dark);
  color: var(--white);
}

.intro-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 250, 240, 0.16);
}

.intro-grid div {
  padding: clamp(26px, 4vw, 46px);
  background: var(--forest-dark);
}

.intro-grid span {
  color: var(--ochre);
  font-weight: 900;
}

.intro-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.2rem;
}

.intro-grid p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 7vw, 92px);
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.story-copy {
  font-size: 1.08rem;
  color: rgba(23, 34, 29, 0.82);
}

.story-copy p:first-child {
  margin-top: 0;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  height: clamp(340px, 45vw, 620px);
}

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

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p {
  margin: 0;
  color: rgba(23, 34, 29, 0.72);
  font-size: 1.05rem;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.facility-grid article {
  background: var(--white);
  border: 1px solid rgba(36, 79, 59, 0.14);
  box-shadow: 0 10px 30px rgba(16, 41, 31, 0.08);
}

.facility-grid img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.facility-grid h3 {
  margin: 18px 18px 8px;
  font-size: 1.1rem;
}

.facility-grid p {
  margin: 0 18px 22px;
  color: rgba(23, 34, 29, 0.68);
  font-size: 0.95rem;
}

.builder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.builder-copy p {
  max-width: 500px;
  color: rgba(23, 34, 29, 0.74);
  font-size: 1.08rem;
}

.builder-note {
  display: grid;
  gap: 8px;
  max-width: 440px;
  margin-top: 30px;
  padding: 20px;
  color: var(--white);
  background: var(--blue);
}

.builder-note strong {
  color: var(--ochre);
}

.builder-panel {
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid rgba(36, 79, 59, 0.14);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label,
legend {
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 79, 59, 0.22);
  border-radius: 0;
  color: var(--ink);
  background: #fffdf6;
  font: inherit;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 0;
  padding: 20px 0;
  border: 0;
  border-top: 1px solid rgba(36, 79, 59, 0.14);
  border-bottom: 1px solid rgba(36, 79, 59, 0.14);
}

.options legend {
  padding: 0 0 12px;
}

.options label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(23, 34, 29, 0.82);
  font-weight: 750;
}

.options input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.summary {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 22px;
  color: var(--white);
  background: var(--forest-dark);
}

.summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.summary span {
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

.summary strong {
  color: var(--ochre);
  font-size: 2rem;
  line-height: 1;
}

.summary p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.closing {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 86px 18px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(16, 41, 31, 0.82), rgba(16, 41, 31, 0.86)),
    url("assets/tentenkamp.jpg") center / cover;
}

.closing div {
  width: min(820px, 100%);
}

.closing img {
  width: 126px;
  height: 126px;
  margin: 0 auto 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.closing p {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.12rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--forest-dark);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 250, 240, 0.64);
}

.site-footer a {
  color: var(--ochre);
  font-weight: 900;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .intro-grid,
  .story-layout,
  .section-heading,
  .builder {
    grid-template-columns: 1fr;
  }

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

  .image-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .image-strip img {
    height: 320px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 14px;
  }

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

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 4.2rem);
  }

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

  .button {
    width: 100%;
  }

  .facility-grid,
  .field-row.split,
  .options {
    grid-template-columns: 1fr;
  }

  .summary div {
    display: grid;
  }
}
