:root {
  --primary: #e09d65;
  --beige: #d3bfa1;
  --beige-light: #eee4d4;
  --paper: #ffffff;
  --ink: #000000;
  --muted: rgba(0, 0, 0, 0.68);
  --border: #d4dadd;
  --soft: #f4f6f6;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Cabin", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 80px;
  color: #fff;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding-left: clamp(22px, 5vw, 58px);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.primary-nav {
  display: flex;
  margin-left: auto;
  background: #fff;
  color: var(--ink);
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0 22px;
  border-left: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.primary-nav a:hover {
  color: var(--primary);
}

.menu-toggle,
.menu-close {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.menu-toggle {
  width: 128px;
  background: #fff;
  border-left: 1px solid var(--border);
}

.menu-toggle span {
  display: block;
  width: 40px;
  height: 1px;
  margin: 8px auto;
  background: var(--ink);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: stretch;
  min-height: 100vh;
  padding: clamp(30px, 4.8vw, 58px);
  color: var(--ink);
  background: var(--beige);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 260ms ease, opacity 260ms ease;
}

.menu-panel::before {
  content: "";
  position: absolute;
  inset: clamp(30px, 4.8vw, 58px) clamp(30px, 4.8vw, 58px) clamp(30px, 4.8vw, 58px) 52%;
  z-index: 0;
  background: url("https://livingbyco.com/app/themes/livingbyco/dist/images/offcanvas-image.jpg?aae1e51b39084a34ce233ff00be2c910") center / cover no-repeat;
  opacity: 0.92;
}

.menu-panel::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: clamp(30px, 4.8vw, 58px) clamp(30px, 4.8vw, 58px) clamp(30px, 4.8vw, 58px) 52%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02));
}

.menu-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.menu-panel__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: calc(100vh - clamp(60px, 9.6vw, 116px));
  padding: clamp(40px, 5vw, 64px) 0 clamp(14px, 2vw, 24px);
}

.menu-panel__label {
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-panel nav {
  align-self: center;
  display: grid;
  gap: clamp(10px, 1.4vw, 16px);
  max-width: 560px;
}

.menu-panel nav a {
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.menu-panel nav a:hover {
  color: var(--ink);
}

.menu-panel__feature {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 12px;
  width: min(420px, 100%);
  padding: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
}

.menu-panel__feature span {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.8;
}

.menu-panel__feature strong {
  max-width: 12ch;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

.menu-close {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 34px;
  color: #fff;
  background: transparent;
}

.menu-panel__meta {
  align-self: end;
  display: grid;
  gap: 10px;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
}

.menu-panel__meta a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero img {
  object-fit: cover;
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 118px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.08;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 3.85vw, 3.8rem);
  letter-spacing: 0;
}

.hero__content p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 36px;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  font-weight: 500;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--ghost-light {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--outline {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--ink);
  background: transparent;
}

.value-ticker {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  color: #fff;
  background: var(--beige);
  text-decoration: none;
}

.value-ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.value-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.value-ticker span::after {
  content: "•";
  opacity: 0.72;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .value-ticker__track {
    animation: none;
    transform: translateX(0);
  }
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 6.5vw, 88px) 0;
}

.section + .section {
  padding-top: clamp(28px, 4vw, 52px);
}

.intro-band {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.intro-band__inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  color: var(--ink);
}

.intro-band__label {
  margin: 0;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.intro-band__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.intro-band__stats span {
  min-height: 118px;
  padding: 20px 22px;
  background: #fff;
  display: grid;
  align-content: start;
  gap: 8px;
}

.intro-band__stats strong {
  font-size: 1rem;
  line-height: 1.2;
}

.intro-band__stats small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.section__header {
  position: relative;
  top: auto;
}

.section__header h2,
.proof-strip h2,
.image-text h2,
.contact h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.section__header p:not(.eyebrow),
.image-text p,
.contact p {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
}

.project-grid {
  display: grid;
  gap: 28px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 0;
  min-height: 380px;
  background: var(--soft);
}

.project-card--featured {
  background: var(--beige-light);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.project-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.tag {
  width: fit-content;
  margin-bottom: 20px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.project-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.project-card p {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.68;
}

.project-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
}

.project-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.project-card dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.project-card dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.text-link {
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
}

.text-link::after {
  content: " ↗";
  color: var(--primary);
}

.proof-strip {
  width: 100%;
  margin: 0;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--beige);
}

.proof-strip > div:first-child {
  max-width: 800px;
}

.proof-grid,
.values-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.28);
}

#building .proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article,
.values-grid article,
.faq-grid details {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  color: var(--ink);
}

.proof-grid article {
  background: rgba(211, 191, 161, 1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.proof-grid span,
.service-list span {
  display: block;
  margin-bottom: 36px;
  font-size: 1.4rem;
}

.proof-grid h3,
.values-grid h3,
.service-list h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.proof-grid p,
.values-grid p,
.service-list p,
.faq p {
  color: inherit;
  font-weight: 500;
  line-height: 1.7;
  opacity: 0.74;
}

.image-text {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.image-text img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.65;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.values-grid {
  margin-top: 0;
  background: var(--border);
}

.sustainability-section {
  align-items: start;
}

.sustainability-panel {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.sustainability-statement,
.sustainability-details article,
.sustainability-pillars span {
  background: #fff;
}

.sustainability-statement {
  padding: clamp(26px, 4vw, 44px);
}

.sustainability-statement p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.32;
}

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

.sustainability-details article {
  padding: clamp(26px, 4vw, 44px);
}

.sustainability-details span {
  display: block;
  margin-bottom: 34px;
  color: var(--primary);
  font-weight: 700;
}

.sustainability-details h3 {
  max-width: 12ch;
  font-size: clamp(1.6rem, 2.3vw, 2.25rem);
}

.sustainability-details p {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.7;
}

.sustainability-details ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.sustainability-details li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.55;
}

.sustainability-details li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.sustainability-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.sustainability-pillars span {
  min-height: 104px;
  padding: 24px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.services {
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.services .section__header {
  max-width: 760px;
  margin-bottom: 46px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  background: var(--border);
}

.service-list article {
  min-height: 270px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--soft);
}

.faq summary {
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--beige);
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 12px 0;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 0;
  border-color: var(--primary);
}

.lead-form__wide {
  grid-column: 1 / -1;
}

.lead-form button {
  width: fit-content;
}

.footer {
  color: #fff;
  background: var(--beige);
  border-top: 1px solid var(--border);
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(160px, 0.42fr) minmax(220px, 0.5fr) minmax(220px, 0.5fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
  width: min(100%, 1420px);
  margin: 0 auto;
}

.footer__brand {
  display: grid;
  align-content: start;
  gap: clamp(34px, 5vw, 70px);
  min-height: clamp(440px, 52vw, 620px);
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 58px);
  background: #d9a06b;
}

.footer--single .footer__main {
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
}

.footer--single .footer__brand {
  min-height: clamp(220px, 26vw, 310px);
}

.footer .brand {
  padding-left: 0;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.footer__quick {
  display: grid;
  gap: 8px;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 700;
}

.footer__brand p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  font-weight: 600;
  line-height: 1.6;
}

.footer__nav,
.footer__contact,
.footer__location {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: clamp(120px, 14vw, 190px);
}

.footer__nav span,
.footer__contact span,
.footer__location span {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700;
}

.footer__nav a,
.footer__contact a,
.footer__location p {
  width: fit-content;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 600;
  line-height: 1.55;
}

.footer__nav a:hover,
.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 24px clamp(28px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.footer p {
  margin: 0;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 54vw) minmax(360px, 46vw);
  min-height: 100svh;
  background: var(--beige);
}

.project-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(24px, 6vw, 76px) 80px;
  color: #fff;
}

.project-hero__copy h1 {
  max-width: 610px;
  font-size: clamp(3rem, 5.8vw, 5.45rem);
}

.project-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 500;
  line-height: 1.7;
}

.project-hero__image {
  min-height: 100svh;
}

.project-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero--image-left .project-hero__image {
  order: -1;
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.fact-bar div {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.fact-bar div:last-child {
  border-right: 0;
}

.fact-bar span,
.spec-grid span,
.distance-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.fact-bar strong,
.spec-grid strong,
.distance-grid strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.editorial-intro {
  max-width: 990px;
}

.editorial-intro h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

.editorial-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.75;
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: var(--border);
}

.ownership-grid article {
  padding: 26px;
  background: var(--soft);
}

.ownership-grid h3 {
  font-size: 1.35rem;
}

.ownership-grid ul,
.rich-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.spec-grid article {
  min-height: 140px;
  padding: 28px;
  background: var(--soft);
}

.location-panel {
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 78px);
  background: var(--beige);
  color: #fff;
}

.location-panel h2 {
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

.location-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.75;
}

.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.distance-grid article {
  padding: 26px;
  background: var(--beige);
  color: #fff;
}

.distance-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.table-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.42fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.table-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

.table-header p {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.65;
}

.plot-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

.plot-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.plot-table th,
.plot-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.plot-table th {
  color: var(--muted);
  font-size: 0.86rem;
}

.plot-table td {
  font-weight: 500;
}

.plot-table tbody tr:hover {
  background: var(--soft);
}

.rich-copy {
  display: grid;
  gap: 20px;
}

.rich-copy p {
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.75;
}

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

  .menu-toggle {
    width: 86px;
  }

  .menu-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
    gap: 30px;
  }

  .menu-panel nav a {
    font-size: clamp(1.8rem, 4.2vw, 2.65rem);
  }

  .menu-panel__feature {
    padding: 22px;
  }

  .hero__content {
    max-width: 680px;
    margin-left: 36px;
    margin-right: auto;
    padding-bottom: 108px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(2.35rem, 4.7vw, 3rem);
  }

  .hero__content p:not(.eyebrow) {
    max-width: 600px;
  }

  .section--split,
  .image-text,
  .contact,
  .intro-band__inner,
  .sustainability-details,
  .project-hero,
  .location-panel,
  .table-header {
    grid-template-columns: 1fr;
  }

  .project-hero__image {
    min-height: 58svh;
    order: -1;
  }

  .project-hero__copy {
    padding-top: 46px;
  }

  .fact-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section__header {
    position: static;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .footer__brand {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .footer__nav,
  .footer__contact,
  .footer__location {
    padding: 48px clamp(28px, 5vw, 58px);
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
  }

  .site-header {
    height: 72px;
  }

  .brand {
    padding-left: 22px;
  }

  .menu-panel {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 100dvh;
    padding: 28px 22px;
    background: var(--beige);
  }

  .menu-panel::before,
  .menu-panel::after {
    display: none;
  }

  .menu-close {
    top: 24px;
    right: 22px;
    color: var(--ink);
  }

  .menu-panel__content {
    min-height: calc(100dvh - 56px);
    padding: 58px 0 0;
  }

  .menu-panel nav {
    gap: 12px;
  }

  .menu-panel nav a {
    color: rgba(0, 0, 0, 0.72);
    font-size: clamp(1.85rem, 8.2vw, 2.85rem);
    line-height: 1.04;
  }

  .menu-panel__meta {
    margin-top: 28px;
    font-size: 1rem;
  }

  .menu-panel__feature {
    display: none;
  }

  .hero__content {
    width: calc(100% - 36px);
    max-width: 620px;
    margin-left: 18px;
    padding-bottom: 108px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 5.8vw, 2.55rem);
  }

  .value-ticker {
    padding: 18px 0;
  }

  .value-ticker span {
    font-size: 1rem;
  }

  .section {
    width: calc(100% - 36px);
    padding: 44px 0;
  }

  .section.proof-strip {
    width: 100%;
    padding: 44px 22px;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
  }

  .proof-strip h2 {
    font-size: clamp(2.05rem, 8vw, 2.8rem);
  }

  .proof-strip > div:first-child {
    max-width: 100%;
  }

  .proof-grid {
    width: 100%;
    margin-top: 36px;
  }

  .proof-grid article {
    padding: 32px 22px;
  }

  .section + .section {
    padding-top: 22px;
  }

  .proof-grid,
  .values-grid,
  .sustainability-pillars,
  .faq-grid,
  .service-list,
  .lead-form,
  .intro-band__stats,
  .ownership-grid,
  .spec-grid,
  .distance-grid,
  .fact-bar {
    grid-template-columns: 1fr;
  }

  #building .proof-grid {
    grid-template-columns: 1fr;
  }

  .section.contact {
    width: 100%;
    padding: 42px 22px;
    gap: 28px;
  }

  .contact h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }

  .contact p {
    max-width: none;
  }

  .lead-form {
    width: 100%;
    padding: 28px 22px;
  }

  .footer .brand {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

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

  .footer__brand {
    gap: 28px;
    padding: 44px 22px;
  }

  .footer__nav,
  .footer__contact,
  .footer__location {
    padding: 28px 22px 0;
  }

  .footer__contact {
    padding-bottom: 34px;
  }

  .footer__bottom {
    padding: 22px;
  }
}
