:root {
  --green: #8aa33a;
  --green-dark: #53631f;
  --green-deep: #303b17;
  --sage: #eef2df;
  --paper: #fbf7ef;
  --sand: #f3eadc;
  --white: #ffffff;
  --espresso: #3d322e;
  --clay: #a8662c;
  --muted: #746b62;
  --line: rgba(61, 50, 46, 0.14);
  --shadow: 0 22px 60px rgba(61, 50, 46, 0.11);
  --black: #1c1c1c;
  --header: rgba(0, 0, 0, 0.88);
  --caramel: #bd7224;
}

@font-face {
  font-family: "Hero";
  src: url("assets/HeroLight-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero";
  src: url("assets/HeroLight-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hero";
  src: url("assets/HeroLight-Bold.ttf") format("truetype");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--espresso);
  background: #ffffff;
  font-family: "Hero", "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.42;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

p {
  margin-bottom: 12px;
}

.container {
  width: min(1276px, calc(100vw - 10%));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 100px;
  padding: 20px 5%;
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 214px;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  opacity: 0.96;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: #d29757;
  opacity: 1;
}

.main-nav a.active {
  color: #d29757;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: #ffffff;
}

.nav-button {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--caramel);
  color: #ffffff;
  font-weight: 600;
  opacity: 1 !important;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 750px;
  padding: 5% 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.36) 100%),
    url("assets/leed-holistic-impact-building.png");
  background-position: center 35%;
  background-size: cover;
  background-attachment: fixed;
  border-bottom: 0;
}

.hero-section::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(42px, 8vw, 120px);
  align-items: center;
  min-height: 600px;
}

.hero-copy,
.hero-panel,
.hero-metrics article,
.proof-metrics article,
.benefits-grid article,
.tags span {
  min-width: 0;
  overflow-wrap: break-word;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  color: #ffffff;
  opacity: 0.86;
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(29px, 2.45vw, 35px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--espresso);
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}

h3 {
  margin-bottom: 11px;
  color: var(--espresso);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.28;
}

.hero-lead {
  max-width: 740px;
  margin-bottom: 48px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 15px 25px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: #f1f1f1;
  transform: translateY(-1px);
}

.button.light {
  background: var(--white);
  color: var(--green-dark);
}

.hero-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  justify-self: end;
  transform: translateX(44px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-panel span {
  color: #ffffff;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-edge-mark {
  width: 245px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.35));
}

.hero-leed-logo {
  width: 204px;
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.35));
}

.hero-leed-mark {
  width: 245px;
  min-height: 245px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.28);
}

.hero-leed-mark span {
  color: #ffffff;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-leed-mark strong {
  color: #ffffff;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.12;
}

.hero-leed-mark small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1060px;
  margin: 0 0 30px;
  color: #ffffff;
}

.hero-metrics article {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-metrics article + article {
  padding-left: 20px;
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-metrics span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
}

section {
  padding: 5% 0;
}

.client-strip {
  padding: 56px 0;
  background: #ffffff;
  color: #767676;
}

.client-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px clamp(34px, 5vw, 72px);
}

.client-row span {
  color: #1b1b1b;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.client-row strong {
  color: #777777;
  font-size: 26px;
  font-weight: 600;
  filter: grayscale(1);
  opacity: 0.76;
}

.argument-grid,
.proof-grid,
.segments-grid,
.hygge-grid,
.faq-grid,
.cta-grid,
.footer-grid,
.decision-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 98px);
  align-items: start;
}

.argument-section {
  background: #ececec;
}

.argument-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  align-items: center;
}

.argument-copy > p,
.proof-copy > p,
.segments-grid p,
.hygge-grid p,
.decision-grid p,
.cta-grid p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
}

.square-list {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 1.02rem;
  list-style: none;
}

.square-list li {
  position: relative;
  padding-left: 30px;
}

.square-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--green);
}

.proof-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
  box-shadow: none;
}

.proof-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: left center;
}

.proof-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: rgba(251, 247, 239, 0.92);
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.proof-section {
  background: #121010;
  color: var(--white);
}

.proof-section .section-kicker,
.proof-section h2 {
  color: var(--sage);
}

.proof-edge-logo {
  width: min(280px, 82%);
  margin-top: 28px;
}

.proof-system-mark {
  width: min(280px, 82%);
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.proof-system-mark strong {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.proof-system-mark span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.proof-copy > p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.proof-metrics article {
  min-height: 186px;
  padding: 24px;
  background: rgba(238, 242, 223, 0.08);
}

.proof-metrics strong {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-metrics span {
  color: rgba(255, 255, 255, 0.76);
}

.benefits-section,
.visual-section,
.faq-section {
  background: #ffffff;
  border-block: 0;
}

.section-title {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefits-grid article {
  min-height: 224px;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  background: #f7f7f7;
  box-shadow: none;
}

.benefits-grid span,
.tags span,
.text-link {
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.hygge-section,
.segments-section {
  background: #ececec;
}

.hygge-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
  align-items: center;
}

.hygge-image {
  margin: 0;
  overflow: hidden;
  background: #dcdcdc;
}

.hygge-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hygge-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 25px;
}

.hygge-stats article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.hygge-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.hygge-stats span {
  color: var(--muted);
}

.tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tags span {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(138, 163, 58, 0.28);
  border-radius: 0;
  background: #eef2df;
  line-height: 1.35;
  box-shadow: none;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visual-grid figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

.visual-grid img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  filter: saturate(0.94);
  transition: transform 0.35s ease;
}

.visual-grid figure:hover img {
  transform: scale(1.04);
}

.visual-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(251, 247, 239, 0.92);
  color: var(--espresso);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leed-level-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.leed-level-grid article {
  min-height: 236px;
  padding: clamp(22px, 2.6vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f7f7f7;
}

.leed-level-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leed-level-grid h3 {
  font-size: 28px;
  font-weight: 400;
}

.leed-level-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.decision-section {
  background: #ffffff;
}

.decision-grid {
  align-items: center;
}

.decision-section .button {
  background: var(--caramel);
  color: #ffffff;
}

.decision-section .button:hover {
  background: #a95f1b;
}

.faq-section {
  background: #ececec;
}

.faq-grid {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--espresso);
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 780px;
  margin: -6px 0 24px;
  color: var(--muted);
}

.cta-section {
  background: #121010;
  color: var(--white);
}

.cta-section .section-kicker,
.cta-section h2,
.cta-section p {
  color: var(--white);
}

.cta-section p {
  opacity: 0.86;
}

.cta-section strong {
  display: block;
  margin-top: 18px;
  color: var(--sage);
  font-size: 24px;
  font-weight: 500;
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
  padding: 5%;
  background: #1c1c1c;
  color: #ffffff;
}

.footer-brand img {
  width: 60%;
  max-width: 214px;
}

.footer-column h2,
.footer-copy h2,
.social-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-contact a,
.footer-contact span,
.footer-copy p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: #ffffff;
}

.social-title {
  margin-top: 40px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.footer-copy {
  align-self: end;
  text-align: right;
}

.footer-copy p {
  margin: 0;
}

.legal-note {
  max-width: none;
  margin: -2% 5% 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .site-header {
    min-height: 74px;
  }

  .hero-grid,
  .argument-grid,
  .proof-grid,
  .segments-grid,
  .hygge-grid,
  .faq-grid,
  .cta-grid,
  .footer-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    background-attachment: scroll;
  }

  .hero-panel {
    max-width: 560px;
    justify-self: start;
    transform: none;
  }

  .proof-metrics,
  .benefits-grid,
  .visual-grid,
  .leed-level-grid,
  .hygge-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .hero-metrics article,
  .hero-metrics article + article {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .hero-metrics article:nth-child(2n) {
    border-right: 0;
  }

  .hero-metrics article:last-child {
    border-bottom: 0;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(320px, calc(100vw - 34px));
    max-width: min(320px, calc(100vw - 34px));
    margin-left: 17px;
    margin-right: auto;
  }

  .site-header {
    padding: 16px 20px;
  }

  .brand img {
    width: 148px;
  }

  h1 {
    font-size: 27px;
    line-height: 1.12;
  }

  h2 {
    font-size: 25px;
    line-height: 1.15;
  }

  .hero-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-copy,
  .hero-panel,
  .hero-lead,
  h1 {
    width: min(320px, calc(100vw - 34px));
    max-width: min(320px, calc(100vw - 34px));
  }

  .hero-grid,
  .hero-metrics,
  .hero-metrics article {
    width: min(320px, calc(100vw - 34px));
    max-width: min(320px, calc(100vw - 34px));
    min-width: 0;
  }

  h1,
  .hero-lead {
    overflow-wrap: break-word;
  }

  .hero-metrics span,
  .hero-metrics strong {
    overflow-wrap: anywhere;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics article:nth-child(2n) {
    border-right: 0;
  }

  .hero-section {
    padding: 35% 0 30%;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.56)),
      url("assets/leed-holistic-impact-building.png");
    background-position: center top;
  }

  .hero-panel,
  .proof-visual {
    width: 100%;
    max-width: none;
    box-shadow: none;
  }

  .hero-panel span {
    font-size: 22px;
  }

  .hero-edge-mark {
    width: 190px;
  }

  .hero-leed-logo {
    width: 152px;
  }

  .hero-leed-mark {
    width: 190px;
    min-height: 190px;
    padding: 24px;
  }

  .hero-leed-mark span {
    font-size: 31px;
  }

  .hero-leed-mark strong {
    font-size: 21px;
  }

  .hero-metrics strong {
    font-size: 29px;
  }

  .hero-metrics span {
    font-size: 17px;
  }

  .client-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 14px 20px;
  }

  .client-row span {
    grid-column: 1 / -1;
  }

  .proof-metrics,
  .benefits-grid,
  .visual-grid,
  .leed-level-grid,
  .hygge-stats,
  .tags {
    grid-template-columns: 1fr;
  }

  .proof-visual img,
  .hygge-image img,
  .visual-grid img {
    min-height: 280px;
  }

  .button {
    width: 100%;
  }

  .footer-grid {
    gap: 34px;
    padding: 12% 5%;
  }

  .footer-brand img {
    width: 190px;
  }

  .legal-note {
    margin: 0 5%;
    padding-bottom: 24px;
  }
}

@media print {
  .site-header {
    position: static;
  }

  .main-nav {
    display: none;
  }

  section {
    break-inside: avoid;
  }
}
