:root {
  --ink: #18211c;
  --muted: #62706a;
  --line: #dfe5df;
  --paper: #f5f6f1;
  --white: #ffffff;
  --green: #176246;
  --green-dark: #0e392c;
  --leaf: #7f9a56;
  --gold: #c3973f;
  --terracotta: #b26143;
  --shadow: 0 22px 60px rgba(20, 32, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(20, 32, 26, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.05;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.2));
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.header-wa,
.btn {
  text-decoration: none;
}

.nav a {
  opacity: 0.92;
}

.nav a:hover {
  opacity: 1;
}

.header-wa {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 7px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 31, 24, 0.88) 0%, rgba(8, 31, 24, 0.65) 46%, rgba(8, 31, 24, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 31, 24, 0.42), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  padding: 26vh 0 172px clamp(18px, 7vw, 92px);
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 0 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(23, 98, 70, 0.32);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  color: var(--green-dark);
  background: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(630px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-panel strong {
  display: block;
  font-size: 23px;
}

.hero-panel span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.section {
  padding: 92px clamp(18px, 6vw, 76px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 86px);
  background: var(--white);
}

.section-heading h2,
.product-copy h2,
.feature-content h2,
.location-copy h2,
.cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro-copy,
.product-copy p,
.location-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(238, 242, 232, 0.96), rgba(255, 255, 255, 0.9)),
    var(--paper);
}

.product-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 0;
}

.product-visual {
  min-height: 390px;
  display: grid;
  place-items: end center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #d7e3d3 0%, #f7f3e7 62%, #c2b08b 100%);
  box-shadow: var(--shadow);
}

.product-visual img {
  width: min(880px, 110%);
  max-width: none;
  object-fit: contain;
}

.clusters {
  background: var(--white);
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.cluster-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7f9f4);
}

.cluster-card div {
  min-height: 188px;
  padding: 24px;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status.new {
  color: var(--white);
  background: var(--green);
}

.status.sold-out {
  color: #71411f;
  background: #f0d7b2;
}

.status.commercial {
  color: var(--green-dark);
  background: #dcebd5;
}

.cluster-card h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.cluster-card p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.feature-media,
.facility-media {
  aspect-ratio: 5 / 4;
  max-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-media img,
.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--white);
}

.facility-media img {
  min-height: 0;
  border-radius: 6px;
}

.facility-media .facility-main {
  grid-row: span 2;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 8px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  color: var(--terracotta);
  font-weight: 900;
}

.feature-list h3,
.feature-list p {
  grid-column: 2;
}

.feature-list h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.feature-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #2f6f4e 58%, #8f7d39);
}

.location .eyebrow {
  color: #f3cf7a;
}

.location-copy p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.location-copy .btn {
  margin-top: 10px;
  background: var(--white);
  color: var(--green-dark);
  box-shadow: none;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.access-grid article {
  min-height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.access-grid strong,
.access-grid span {
  display: block;
}

.access-grid strong {
  font-size: 28px;
}

.access-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

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

.gallery-grid img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: center;
  margin: 0 clamp(18px, 6vw, 76px) 92px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #24634e 62%, #9a6b26);
}

.cta .eyebrow {
  color: #f3cf7a;
}

.cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.7;
}

.contact-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.contact-card span,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card strong {
  margin: 8px 0 20px;
  font-size: 25px;
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 42px 18px;
  text-align: center;
  color: var(--muted);
  background: var(--white);
}

.footer-logos {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.footer img {
  width: 92px;
  max-height: 64px;
  object-fit: contain;
}

.footer img + img {
  width: 120px;
}

.footer p {
  max-width: 820px;
  margin: 0;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: #18a958;
  box-shadow: 0 16px 34px rgba(24, 169, 88, 0.4);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
    font-size: 13px;
  }

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

  .menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    margin-left: auto;
    border: 1px solid currentColor;
    border-radius: 6px;
    color: inherit;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 22px 42px rgba(20, 32, 26, 0.14);
  }

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

  .nav a {
    padding: 13px 10px;
  }

  .header-wa {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-content {
    width: 100%;
    padding: 178px 18px 340px;
  }

  .hero-panel {
    left: 18px;
    right: 18px;
    bottom: 24px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-left: 0;
  }

  .intro,
  .product-band,
  .feature-band,
  .location,
  .cta {
    grid-template-columns: 1fr;
  }

  .cluster-grid {
    grid-template-columns: 1fr 1fr;
  }

  .access-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-grid .wide {
    grid-column: span 1;
  }

  .gallery-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .cta {
    margin-bottom: 72px;
  }
}

@media (max-width: 620px) {
  h1 {
    max-width: 320px;
    font-size: 36px;
    line-height: 1;
  }

  .section-heading h2,
  .product-copy h2,
  .feature-content h2,
  .location-copy h2,
  .cta h2 {
    max-width: 360px;
    font-size: 28px;
  }

  .hero-copy,
  .intro-copy,
  .product-copy p,
  .location-copy p {
    font-size: 16px;
  }

  .hero-copy {
    max-width: 340px;
  }

  .section,
  .cta {
    width: 100%;
    max-width: 100vw;
  }

  .hero-content,
  .section-heading,
  .intro-copy,
  .feature-content,
  .contact-card {
    min-width: 0;
    max-width: 100%;
  }

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

  .hero-actions {
    width: min(100%, 350px);
  }

  .product-visual {
    min-height: 260px;
  }

  .cluster-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-list h3,
  .feature-list p {
    grid-column: 1;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .contact-card strong {
    font-size: 22px;
  }
}
