:root {
  --ink: #181512;
  --ink-soft: #3b332c;
  --paper: #f7f2ea;
  --paper-deep: #e7ddcf;
  --corten: #de5d35;
  --corten-dark: #b84526;
  --eucalypt: #49695d;
  --line: rgba(24, 21, 18, 0.14);
  --white: #fffaf2;
  --shadow: 0 24px 70px rgba(24, 21, 18, 0.18);
  --radius: 8px;
  font-family: "Archivo", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #f2ad75;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(24, 21, 18, 0.88) 0%, rgba(24, 21, 18, 0.5) 60%, rgba(24, 21, 18, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(140px, 10vw, 170px);
  padding: 0;
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.desktop-nav a {
  color: var(--white);
  opacity: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55), 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: opacity 0.15s ease;
}

.desktop-nav a:hover {
  opacity: 0.7;
}

.nav-cta,
.primary-action,
.secondary-action,
.final-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.nav-cta {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
  min-height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
  text-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  transition: opacity 0.15s ease;
}

.nav-action:hover {
  opacity: 0.7;
}

.nav-action-icon {
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  overflow: hidden;
  background: #0f1516;
}

.hero img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  background: #0f1516;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.48) 34%,
      rgba(0, 0, 0, 0.1) 72%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.05) 42%,
      rgba(0, 0, 0, 0.55) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(48px, 4.6vw, 64px);
  right: clamp(24px, 5vw, 76px);
  bottom: clamp(88px, 10vh, 110px);
  max-width: 680px;
  color: var(--white);
}

.hero-eyebrow {
  margin: 0 0 18px;
  font-size: clamp(12px, 0.8vw, 14px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 10ch;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
}

.hero-lead {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.28;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-detail {
  margin: 0 0 32px;
  max-width: 640px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.45;
  color: rgba(255, 250, 242, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hero-cta-primary {
  color: var(--white);
  background: var(--corten);
  border-color: var(--corten);
}

.hero-cta-primary:hover {
  background: var(--corten-dark);
  border-color: var(--corten-dark);
  transform: translateY(-1px);
}

.hero-cta-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 250, 242, 0.78);
}

.hero-cta-secondary:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.primary-action {
  color: var(--white);
  background: var(--corten);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 250, 242, 0.44);
  background: rgba(255, 250, 242, 0.08);
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(242, 173, 117, 0.48);
  border-bottom: 1px solid rgba(242, 173, 117, 0.24);
  background: linear-gradient(90deg, rgba(24, 21, 18, 0.18), rgba(24, 21, 18, 0.06));
  color: var(--white);
}

.hero-stats span {
  min-height: 72px;
  padding: 15px 18px;
  border-right: 1px solid rgba(242, 173, 117, 0.22);
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 238, 211, 0.86);
}

.hero-stats span:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
  color: #f2ad75;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45), 0 2px 10px rgba(0, 0, 0, 0.28);
  text-transform: none;
}

.intro-band,
.split-feature,
.units-section,
.shell-section,
.usecase-section,
.location-section,
.proof-section,
.downloads-section,
.faq-section,
.highlights-band,
.region-section,
.builder-section,
.leasing-section,
.next-steps {
  padding: clamp(40px, 5.5vw, 78px) clamp(18px, 5vw, 76px);
}

.builder-section {
  background: var(--paper);
}

.leasing-section {
  background: var(--paper-deep);
}

.builder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.builder-card {
  display: grid;
  grid-template-columns: 148px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 18px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(24, 21, 18, 0.08);
}

.builder-logo {
  grid-row: 1 / 2;
  display: grid;
  place-items: center;
  width: 148px;
  height: 88px;
  border-radius: var(--radius);
  background: var(--paper-deep);
  border: 1px solid var(--line);
  overflow: hidden;
}

.builder-logo-dark {
  background: var(--ink);
  border-color: rgba(24, 21, 18, 0.28);
}

.builder-logo img {
  width: auto;
  height: auto;
  max-width: 118px;
  max-height: 56px;
  object-fit: contain;
}

.builder-logo-fallback {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.builder-meta {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.builder-name {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.builder-role {
  display: block;
  margin-top: 4px;
  color: var(--corten);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.builder-profile {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.builder-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.builder-facts li {
  display: grid;
  gap: 4px;
}

.builder-facts strong {
  color: var(--corten);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.builder-facts span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

.builder-contact {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.builder-person {
  flex-basis: 100%;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.builder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--corten-dark);
  transition: color 0.15s ease;
}

.builder-link:hover {
  color: var(--corten);
}

@media (max-width: 760px) {
  .builder-grid {
    grid-template-columns: 1fr;
  }

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

  .builder-logo,
  .builder-meta {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .builder-facts {
    grid-template-columns: 1fr;
  }
}

.leasing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.leasing-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  row-gap: 18px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(24, 21, 18, 0.08);
}

.leasing-avatar {
  grid-row: 1 / 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--corten);
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

img.leasing-avatar {
  object-fit: cover;
  object-position: center 28%;
  background: var(--paper-deep);
}

.leasing-meta {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.leasing-name {
  display: block;
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}

.leasing-role,
.leasing-company {
  display: block;
  margin-top: 4px;
  color: rgba(24, 21, 18, 0.65);
  font-size: 14px;
  font-weight: 700;
}

.leasing-contact {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.leasing-link {
  color: var(--corten-dark);
  font-size: 14px;
  font-weight: 800;
}

.leasing-link:hover {
  color: var(--ink);
}

.leasing-bio-btn {
  appearance: none;
  margin-left: auto;
  padding: 8px 14px;
  border: 1px solid var(--corten);
  border-radius: 999px;
  background: transparent;
  color: var(--corten);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.leasing-bio-btn:hover,
.leasing-bio-btn:focus-visible {
  background: var(--corten);
  color: var(--white);
  outline: none;
}

/* ===== Bio modal ===== */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.bio-modal[hidden] {
  display: none;
}

.bio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 21, 18, 0.66);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.bio-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: min(86vh, 720px);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.bio-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease;
}

.bio-modal-close:hover,
.bio-modal-close:focus-visible {
  background: rgba(24, 21, 18, 0.08);
  color: var(--ink);
  outline: none;
}

.bio-modal-body .bio-name {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
}

.bio-modal-body .bio-role {
  margin: 6px 0 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--corten);
}

.bio-modal-body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.bio-modal-body .bio-contact-heading {
  margin: 22px 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.bio-modal-body .bio-contact-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bio-modal-body .bio-contact-list li {
  font-size: 14px;
}

.bio-modal-body .bio-contact-list span {
  display: inline-block;
  width: 22px;
  font-weight: 800;
  color: var(--ink-soft);
}

.bio-modal-body .bio-contact-list a {
  color: var(--corten-dark);
  font-weight: 700;
}

.bio-modal-body .bio-contact-list a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .leasing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .leasing-card {
    grid-template-columns: 72px 1fr;
    column-gap: 16px;
    padding: 22px;
  }
  .leasing-avatar { width: 72px; height: 72px; font-size: 22px; }
}

.highlights-band {
  background: var(--paper-deep);
}

.highlights-band h2 {
  margin-bottom: 18px;
  max-width: 780px;
}

.highlights-intro {
  margin: 0 0 34px;
  max-width: 880px;
  color: rgba(24, 21, 18, 0.74);
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.55;
}

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

.highlight-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.highlight-card strong {
  display: block;
  color: var(--corten);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.highlight-card span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.highlight-card p {
  margin: 0;
  color: rgba(24, 21, 18, 0.66);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { min-height: 0; padding: 18px; }
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

.intro-band p,
.section-heading p,
.proof-card p {
  max-width: 620px;
  color: rgba(24, 21, 18, 0.72);
}

.intro-band p {
  color: rgba(255, 250, 242, 0.72);
}

.pathway-strip {
  display: grid;
  gap: 10px;
}

.pathway-strip span,
.spec-stack span {
  display: block;
  padding: 16px 18px;
  border-left: 4px solid var(--corten);
  background: rgba(255, 250, 242, 0.08);
  font-weight: 800;
}

.pathway-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #f2ad75;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1;
}

.image-break {
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}

.image-break img {
  display: block;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.feature-media,
.shell-media,
.location-image,
.site-plan-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media {
  aspect-ratio: 1.79;
}

.feature-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(24, 21, 18, 0.72);
}

.section-number {
  margin: 0 0 18px;
  color: var(--corten);
  font-size: 13px;
  font-weight: 900;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

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

@media (max-width: 980px) {
  .mini-grid.mini-grid-3 {
    grid-template-columns: 1fr;
  }
}

.feature-note {
  max-width: 620px;
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(24, 21, 18, 0.6);
  font-style: italic;
  line-height: 1.5;
}

.mini-grid div,
.proof-list div {
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.54);
}

.mini-grid strong,
.mini-grid span,
.proof-list strong,
.proof-list span {
  display: block;
}

.mini-grid strong,
.proof-list strong {
  font-size: 18px;
}

.mini-grid span,
.proof-list span {
  margin-top: 10px;
  color: rgba(24, 21, 18, 0.64);
  line-height: 1.35;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
}

.unit-heading {
  align-items: end;
}

.unit-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(24, 21, 18, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.unit-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.unit-legend i {
  display: block;
  width: 10px;
  height: 10px;
}

.inline-cta {
  color: var(--corten-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--corten);
  padding-bottom: 1px;
  transition: color 0.15s ease;
}

.inline-cta:hover {
  color: var(--ink);
}

.showroom-dot {
  border-radius: 50%;
  background: #e9b078;
}

.warehouse-dot {
  border-radius: 2px;
  background: var(--corten-dark);
}

.units-section {
  background: var(--paper-deep);
}

.unit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 22px;
  align-items: stretch;
}

.site-plan-frame {
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 440px;
  padding: 12px;
  background: #ffffff;
}

.site-plan-interactive {
  position: relative;
}

.site-plan-hotspot {
  position: absolute;
  z-index: 2;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-plan-hotspot::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--corten);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92), 0 2px 6px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, background 0.18s ease;
  animation: hotspot-pulse 2.4s ease-in-out infinite;
}

.site-plan-hotspot:hover::after,
.site-plan-hotspot:focus-visible::after {
  transform: scale(1.35);
  background: var(--corten-dark);
  animation: none;
}

.site-plan-hotspot.is-active::after {
  background: var(--corten-dark);
  transform: scale(1.4);
  animation: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92), 0 0 0 6px rgba(184, 69, 38, 0.35), 0 2px 6px rgba(0, 0, 0, 0.28);
}

.site-plan-hotspot:focus-visible {
  outline: none;
}

@keyframes hotspot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92), 0 0 0 0 rgba(222, 93, 53, 0.5), 0 2px 6px rgba(0, 0, 0, 0.28); }
  50%      { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92), 0 0 0 8px rgba(222, 93, 53, 0), 0 2px 6px rgba(0, 0, 0, 0.28); }
}

.site-plan-frame img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.unit-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
}

.unit-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.unit-buttons button,
.filter {
  position: relative;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 250, 242, 0.72);
  font-weight: 800;
  cursor: pointer;
}

.unit-buttons button[data-format="showroom"]::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9b078;
}

.unit-buttons button.is-active,
.filter.is-active {
  color: var(--white);
  border-color: var(--corten-dark);
  background: var(--corten-dark);
}

.selected-unit {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.unit-kicker {
  margin: 0 0 10px;
  color: var(--corten);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selected-unit h3 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 42px);
  line-height: 1;
}

.selected-unit .area {
  margin: 10px 0 28px;
  font-size: 42px;
  font-weight: 900;
  color: #e9b078;
}

.selected-unit .area-gated {
  margin: 16px 0 24px;
  padding: 14px 16px;
  border: 1px dashed rgba(233, 176, 120, 0.46);
  border-radius: var(--radius);
  color: #e9b078;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.selected-unit ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.selected-unit li {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  color: rgba(255, 250, 242, 0.78);
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.shell-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.shell-copy h2 {
  max-width: 560px;
}

.spec-stack {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.shell-note {
  max-width: 580px;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.45;
}

.shell-media {
  aspect-ratio: 1.8;
}

.shell-media img {
  object-position: center center;
}

.usecase-section {
  background: var(--paper);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter {
  padding: 0 16px;
}

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

.usecase-grid article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(24, 21, 18, 0.08);
}

.usecase-grid article.is-hidden {
  display: none;
}

.usecase-grid img {
  aspect-ratio: 1.42;
  cursor: zoom-in;
  transition: transform 220ms ease, filter 220ms ease;
}

.usecase-grid article:hover img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.usecase-grid img:focus-visible {
  outline: 3px solid var(--corten);
  outline-offset: -3px;
}

.usecase-grid div {
  min-height: 116px;
  padding: 16px;
}

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

.usecase-grid strong {
  font-size: 17px;
}

.usecase-grid span {
  margin-top: 8px;
  color: rgba(24, 21, 18, 0.62);
  line-height: 1.32;
}

.image-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 44px);
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(8px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  width: auto;
  height: auto;
  max-width: 96vw;
  max-height: 88svh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 0;
  width: min(96vw, 1100px);
  max-height: 88svh;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-image {
  background: #000;
  overflow: hidden;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.lightbox-caption {
  display: grid;
  align-content: space-between;
  padding: clamp(22px, 3vw, 38px);
  color: var(--white);
  background: var(--ink);
}

.lightbox-kicker {
  margin: 0 0 14px;
  color: var(--corten);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-title {
  margin: 0 0 16px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  color: var(--white);
}

.lightbox-description {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 250, 242, 0.78);
}

.lightbox-cta {
  width: fit-content;
  background: var(--corten);
  color: var(--white);
}

@media (max-width: 760px) {
  .lightbox-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 40svh) minmax(0, 1fr);
    width: min(96vw, 520px);
  }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 250, 242, 0.1);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(24, 21, 18, 0.34), rgba(24, 21, 18, 0) 58%),
    var(--eucalypt);
  color: var(--white);
}

.location-map-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: rgba(24, 21, 18, 0.18);
  box-shadow: 0 24px 60px rgba(24, 21, 18, 0.2);
}

.location-map-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.location-map-panel .location-image {
  flex: 1 1 auto;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(255, 250, 242, 0.04);
}

.location-map-panel .location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.location-media-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(222, 93, 53, 0.48);
  background: rgba(24, 21, 18, 0.28);
}

.location-media-note p:last-child {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.location-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 4px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 250, 242, 0.78);
}

.location-legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-15 { background: #c44a26; }
.legend-30 { background: #e89e6f; }
.legend-45 { background: #efd6a3; }

.location-source {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255, 250, 242, 0.45);
}

.location-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.location-copy .section-number {
  margin: 0;
  color: var(--corten);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.location-copy h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.location-lead {
  margin: 0;
  max-width: 600px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
  color: rgba(255, 250, 242, 0.78);
}

.location-hero-stat {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(222, 93, 53, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(222, 93, 53, 0.18), rgba(255, 250, 242, 0.04));
}

.location-hero-stat strong {
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 900;
  color: var(--corten);
  line-height: 1;
  letter-spacing: -0.01em;
}

.location-hero-stat span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.85);
}

.location-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.04);
}

.location-stats strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--corten);
  line-height: 1;
}

.location-stats span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 250, 242, 0.68);
}

.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.location-chips li {
  padding: 6px 12px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 250, 242, 0.82);
}

.location-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 8px;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.location-cta:hover {
  background: var(--paper);
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .location-section {
    grid-template-columns: 1fr;
  }
  .location-copy {
    order: -1;
  }
  .location-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .location-video {
    display: none;
  }
}

.investment-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.investment-strip strong {
  font-size: 34px;
  white-space: nowrap;
}

.region-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.region-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.region-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: var(--paper);
}

.region-copy h2 {
  max-width: 500px;
}

.region-lead {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(24, 21, 18, 0.72);
  line-height: 1.5;
}

.region-points {
  display: grid;
  gap: 10px;
  max-width: 540px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.region-points li {
  padding: 14px 16px;
  border-left: 3px solid var(--corten);
  border-radius: 4px;
  background: rgba(24, 21, 18, 0.04);
  color: rgba(24, 21, 18, 0.78);
  line-height: 1.45;
  font-size: 16px;
}

.region-points li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.region-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #0c1418;
  aspect-ratio: 1.78 / 1;
}

.region-media img {
  object-fit: contain;
}

@media (max-width: 980px) {
  .region-section { grid-template-columns: 1fr; }
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
}

.proof-card.large {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-card.large div {
  padding: 28px;
}

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

.proof-list strong {
  font-size: 30px;
  line-height: 1;
}

.downloads-section {
  background: var(--paper);
}

.downloads-section.dark {
  background: var(--eucalypt);
  color: var(--white);
}

.downloads-section.dark .section-number {
  color: var(--corten);
}

.downloads-section.dark h2,
.downloads-section.dark .section-heading > p {
  color: var(--white);
}

.downloads-section.dark .section-heading > p {
  color: rgba(255, 250, 242, 0.7);
}

.downloads-grid.dark {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.downloads-grid.dark article.dark-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.04);
  box-shadow: none;
}

.downloads-grid.dark .dark-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.downloads-grid.dark .dark-card span {
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 250, 242, 0.7);
}

.downloads-grid.dark .dark-card .card-meta {
  margin: 4px 0 0;
  font-size: 12px;
  font-style: italic;
  color: rgba(255, 250, 242, 0.5);
}

.downloads-grid.dark .dark-card a.btn-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--corten);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.btn-primary:hover {
  background: var(--corten-dark);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .downloads-grid.dark {
    grid-template-columns: 1fr;
  }
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.downloads-grid article {
  display: grid;
  align-content: space-between;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(24, 21, 18, 0.08);
}

.downloads-grid article.with-thumb {
  padding: 0;
  overflow: hidden;
}

.downloads-grid article.with-thumb > div {
  padding: 22px 22px 0;
  text-align: center;
}

.downloads-grid article.with-thumb > a:not(.thumb-link) {
  padding: 0 22px 22px;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
}

.thumb-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.thumb-link:hover .downloads-thumb {
  transform: scale(1.03);
}

.thumb-link:hover .thumb-download {
  background: var(--corten-dark);
  transform: scale(1.08);
}

.downloads-thumb {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.thumb-download {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--corten);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, background 0.18s ease;
}

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

.downloads-grid strong {
  font-size: 20px;
}

.downloads-grid span {
  margin: 12px 0 22px;
  color: rgba(24, 21, 18, 0.66);
  line-height: 1.4;
}

.downloads-grid a {
  width: fit-content;
  color: var(--corten-dark);
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  background: var(--paper-deep);
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 840px;
  margin-top: 28px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.faq-list p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(24, 21, 18, 0.68);
}

.next-steps {
  text-align: center;
}

.next-steps .section-heading {
  margin-inline: auto;
}

.next-steps h2 {
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 28px;
}

.steps div {
  display: grid;
  min-height: 136px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  color: var(--corten);
  font-size: 30px;
}

.steps span {
  font-weight: 800;
}

.final-cta {
  color: var(--white);
  background: var(--ink);
}

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

  .intro-band,
  .split-feature,
  .unit-layout,
  .shell-section,
  .location-section,
  .proof-section,
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .hero-stats,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats span:nth-child(2) {
    border-right: 0;
  }
}

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

  .header-actions {
    gap: 12px;
  }

  .nav-action {
    gap: 6px;
    font-size: 12px;
  }

  .nav-action-call span {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand {
    width: 168px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
  }

  .hero::before {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.58) 48%,
        rgba(0, 0, 0, 0.26) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.08) 34%,
        rgba(0, 0, 0, 0.68) 100%
      );
  }

  .hero-copy {
    left: 24px;
    right: 24px;
    bottom: 48px;
    max-width: none;
    padding: 0;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(46px, 14vw, 58px);
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-detail {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-stats {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-stats span {
    min-height: 70px;
    padding: 12px;
    font-size: 11px;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  h2 {
    font-size: 32px;
  }

  .intro-band,
  .split-feature,
  .units-section,
  .shell-section,
  .usecase-section,
  .location-section,
  .proof-section,
  .downloads-section,
  .faq-section,
  .next-steps {
    padding: 54px 16px;
  }

  .mini-grid,
  .usecase-grid,
  .distance-grid,
  .proof-list,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .selected-unit .area {
    font-size: 38px;
  }

  .investment-strip {
    display: block;
  }

  .investment-strip strong {
    display: block;
    margin-bottom: 8px;
  }
}

/* ===== Site footer (dark) ===== */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-logo {
  width: clamp(180px, 18vw, 240px);
  height: auto;
  object-fit: contain;
}

.footer-address {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 250, 242, 0.7);
}

.footer-label {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.5);
}

.footer-explore {
  display: grid;
  gap: 10px;
}

.footer-explore a {
  font-size: 15px;
  color: var(--white);
  transition: opacity 0.15s ease;
}

.footer-explore a:hover {
  opacity: 0.65;
}

.footer-contact {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-email {
  font-size: 15px;
  color: var(--white);
  transition: opacity 0.15s ease;
}

.footer-email:hover {
  opacity: 0.65;
}

.footer-cta {
  justify-self: start;
  margin-top: 4px;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
