:root {
  color-scheme: light;
  --navy: #10243a;
  --navy-deep: #071625;
  --green: #4d735d;
  --green-soft: #eef4ef;
  --gold: #c99b38;
  --gold-soft: #f7edda;
  --ink: #142131;
  --muted: #607084;
  --line: #dce4e8;
  --white: #ffffff;
  --max: 1120px;
}

* {
  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(--white);
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 22, 37, 0.74), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-logo {
  width: 74px;
  height: 37px;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

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

.hero-media {
  background-image: url("/assets/banksia-solar-farm-hero.png");
  background-size: cover;
  background-position: center 56%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 22, 37, 0.88) 0%, rgba(7, 22, 37, 0.62) 40%, rgba(7, 22, 37, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 22, 37, 0.72) 0%, rgba(7, 22, 37, 0.04) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 14vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 34px;
}

.hero-facts div {
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 22, 37, 0.34);
  backdrop-filter: blur(12px);
}

.hero-facts dt,
.hero-facts dd {
  margin: 0;
}

.hero-facts dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-facts dd {
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.status-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(56px, 8vw, 92px) 0;
}

.status-band h2,
.status-band .section-kicker {
  color: var(--white);
}

.split,
.two-column,
.updates-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.status-copy,
.body-copy,
.updates-layout > p,
.contact-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.status-copy {
  color: rgba(255, 255, 255, 0.78);
}

.status-copy p,
.body-copy p,
.updates-layout > p,
.contact-copy p {
  margin-bottom: 0;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(247, 237, 218, 0.38);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-section,
.updates-section,
.contact-section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.content-section {
  background: var(--white);
}

.updates-section {
  background: var(--green-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section {
  background: var(--white);
}

.contact-copy a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.company-details {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.company-details div {
  display: grid;
  gap: 4px;
}

.company-details dt,
.company-details dd {
  margin: 0;
}

.company-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-details dd {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .brand {
    gap: 10px;
    font-size: 14px;
  }

  .brand-logo {
    width: 58px;
    height: 29px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding-bottom: 82px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .split,
  .two-column,
  .updates-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .status-copy,
  .body-copy,
  .updates-layout > p,
  .contact-copy {
    font-size: 16px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}
