:root {
  color-scheme: light;
  --ink: #18211d;
  --muted: #5b665f;
  --forest: #173b2d;
  --forest-deep: #0e241b;
  --leaf: #557b43;
  --moss: #d9e1bc;
  --wood: #b78349;
  --sun: #f2d27d;
  --paper: #f5f2e9;
  --white: #fffdf8;
  --line: rgba(24, 33, 29, 0.16);
  --shadow: 0 18px 48px rgba(14, 36, 27, 0.15);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 11vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 9vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.2;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-170%);
  padding: 9px 13px;
  border-radius: 8px;
  background: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 64px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(14, 36, 27, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

.brand-name {
  display: grid;
  min-width: 0;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-name strong {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.brand-name span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--forest-deep);
  background: var(--sun);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  display: grid;
  min-width: 0;
  background: var(--paper);
}

.hero-photo {
  position: relative;
  min-width: 0;
  height: min(76vw, 330px);
  margin: 0;
  overflow: hidden;
  background: #101812;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 10, 7, 0.74));
  pointer-events: none;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 12px;
  left: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-copy {
  min-width: 0;
  padding: 30px 18px 38px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 22px;
  color: #39443e;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--forest);
}

.button-primary:hover {
  background: var(--forest-deep);
}

.button-secondary {
  color: var(--forest);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--forest);
}

.hero-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: #fff;
  background: var(--forest-deep);
}

.proof-strip span {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-strip span:nth-child(2n) {
  border-right: 0;
}

.proof-strip span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-strip span:last-child {
  border-right: 0;
}

.place-section,
.parking-section,
.footprint-section,
.power-section,
.vendor-section,
.story-section,
.plan-section,
.callback-section {
  min-width: 0;
  padding: 52px 18px;
  scroll-margin-top: 64px;
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.place-section {
  background: var(--white);
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.gallery-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.gallery-card-wide {
  grid-column: 1 / -1;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-card-wide img {
  aspect-ratio: 4 / 3;
  object-position: center 42%;
}

.gallery-card figcaption {
  display: grid;
  gap: 2px;
  padding: 12px;
  line-height: 1.25;
}

.gallery-card figcaption strong {
  font-size: 13px;
}

.gallery-card figcaption span {
  color: var(--muted);
  font-size: 11px;
}

.parking-section {
  display: grid;
  gap: 28px;
  color: var(--forest-deep);
  background: var(--sun);
}

.parking-copy {
  max-width: 760px;
}

.parking-copy .eyebrow {
  color: var(--forest);
}

.parking-copy h2 {
  max-width: 13ch;
}

.parking-copy > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(14, 36, 27, 0.76);
  font-size: 17px;
}

.parking-stat {
  display: grid;
  gap: 2px;
  width: fit-content;
  padding: 20px 0;
  border-top: 2px solid rgba(14, 36, 27, 0.24);
  border-bottom: 2px solid rgba(14, 36, 27, 0.24);
}

.parking-stat strong {
  font-size: clamp(4.4rem, 23vw, 7rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.parking-stat span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.parking-note {
  max-width: 760px;
  margin: 0;
  color: rgba(14, 36, 27, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.footprint-section {
  background: var(--paper);
}

.footprint-heading {
  max-width: 870px;
}

.footprint-heading > p:last-child {
  max-width: 830px;
}

.footprint-zones {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.footprint-zone {
  min-width: 0;
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(14, 36, 27, 0.07);
}

.footprint-zone > span {
  display: block;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footprint-zone h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.footprint-zone p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.footprint-zone-street {
  color: #fff;
  background: var(--forest);
  border-color: transparent;
}

.footprint-zone-street > span {
  color: var(--sun);
}

.footprint-zone-street p {
  color: rgba(255, 255, 255, 0.76);
}

.footprint-zone-parking {
  background: rgba(242, 210, 125, 0.42);
}

.footprint-permit {
  max-width: 920px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footprint-permit h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.footprint-permit p {
  max-width: 880px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.permit-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.power-section {
  display: grid;
  gap: 28px;
  color: #fff;
  background: var(--forest);
}

.power-copy {
  max-width: 760px;
}

.power-copy .eyebrow {
  color: var(--sun);
}

.power-copy h2 {
  max-width: 14ch;
}

.power-copy > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.power-stat {
  display: grid;
  gap: 2px;
  width: fit-content;
  padding: 20px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.power-stat strong {
  color: var(--sun);
  font-size: clamp(6rem, 34vw, 10rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.power-stat span {
  max-width: 24ch;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.power-note {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.vendor-section {
  color: var(--ink);
  background: var(--paper);
}

.vendor-intro {
  display: grid;
  gap: 24px;
  align-items: end;
}

.vendor-heading {
  max-width: 820px;
}

.vendor-heading .eyebrow {
  color: #3f6034;
}

.vendor-heading h2 {
  max-width: 15ch;
}

.vendor-heading > p:last-child {
  max-width: 780px;
}

.vendor-location {
  display: grid;
  gap: 2px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(23, 59, 45, 0.18);
  border-radius: 14px;
  color: #fff;
  background: var(--forest-deep);
  box-shadow: 0 12px 30px rgba(14, 36, 27, 0.14);
}

.vendor-location span,
.vendor-agreement-kicker {
  color: var(--sun);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vendor-location strong {
  font-size: 22px;
}

.vendor-location small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.vendor-rates {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.vendor-rate-card {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(14, 36, 27, 0.08);
}

.vendor-rate-card-featured {
  border-color: rgba(85, 123, 67, 0.55);
  box-shadow: 0 18px 42px rgba(14, 36, 27, 0.13);
}

.vendor-rate-term {
  margin: 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vendor-rate-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.vendor-rate-price strong {
  color: var(--forest-deep);
  font-size: clamp(3.2rem, 15vw, 4.7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.vendor-rate-price span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.vendor-rate-card ul {
  display: grid;
  gap: 7px;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.vendor-rate-card li {
  position: relative;
  padding-left: 19px;
  font-size: 14px;
}

.vendor-rate-card li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  color: var(--leaf);
  content: "✓";
  font-weight: 950;
}

.vendor-rate-card .button {
  width: 100%;
  margin-top: auto;
}

.vendor-pay-button[aria-disabled="true"] {
  cursor: not-allowed;
  filter: grayscale(0.35);
  opacity: 0.5;
}

.vendor-workflow {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.vendor-steps,
.vendor-agreement-card {
  min-width: 0;
  padding: 22px;
  border-radius: 18px;
}

.vendor-steps {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.vendor-steps .eyebrow {
  color: var(--forest);
}

.vendor-steps ol {
  display: grid;
  gap: 15px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.vendor-steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.vendor-steps li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 12px;
  font-weight: 900;
}

.vendor-steps p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.vendor-steps a {
  color: var(--forest);
  font-weight: 800;
  text-underline-offset: 3px;
}

.vendor-agreement-card {
  color: #fff;
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}

.vendor-agreement-card h3 {
  margin: 6px 0 10px;
  font-size: clamp(1.5rem, 7vw, 2rem);
}

.vendor-agreement-card > p:not(.vendor-agreement-kicker):not(.vendor-payment-status) {
  color: rgba(255, 255, 255, 0.74);
}

.vendor-agreement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.button-secondary-dark {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.vendor-download {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--sun);
  font-weight: 850;
  text-underline-offset: 4px;
}

.vendor-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
}

.vendor-consent input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--sun);
}

.vendor-payment-status {
  min-height: 1.45em;
  margin: 10px 0 0;
  color: var(--sun);
  font-size: 14px;
  font-weight: 800;
}

.vendor-disclaimer {
  max-width: 940px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.story-section {
  overflow: hidden;
  background: var(--paper);
}

.story-heading {
  max-width: 810px;
}

.story-hint {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-hint + .story-compare {
  margin-top: 10px;
}

.story-compare {
  display: grid;
  grid-auto-columns: min(84vw, 370px);
  grid-auto-flow: column;
  gap: 12px;
  margin: 28px -18px 0;
  padding: 0 18px 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}

.story-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(14, 36, 27, 0.09);
}

.story-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d8d0bb;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card-historic .story-image img {
  filter: grayscale(1) contrast(1.06);
}

.story-label {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(14, 36, 27, 0.93);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.parcel-outline {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.parcel-outline polygon {
  fill: rgba(242, 210, 125, 0.13);
  stroke: var(--sun);
  stroke-width: 4;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.92));
  vector-effect: non-scaling-stroke;
}

.story-card figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 15px 16px;
}

.story-card figcaption strong {
  font-size: 15px;
}

.story-card figcaption span {
  color: var(--muted);
  font-size: 12px;
}

.story-source {
  max-width: 920px;
  margin: 14px 0 0;
  color: #59625c;
  font-size: 12px;
  line-height: 1.55;
}

.plan-section {
  background: #fff;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 28px 0 16px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.reservation-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.callback-section {
  display: grid;
  gap: 32px;
  color: #fff;
  background: var(--forest-deep);
}

.callback-copy .eyebrow {
  color: var(--sun);
}

.callback-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-style: normal;
}

.contact-card a {
  width: fit-content;
  color: var(--sun);
  font-weight: 800;
  text-underline-offset: 4px;
}

.callback-form {
  display: grid;
  min-width: 0;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
}

.form-row {
  display: grid;
  min-width: 0;
  gap: 16px;
}

label {
  display: block;
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 7px;
  border: 1px solid rgba(24, 33, 29, 0.24);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--leaf);
  outline: 3px solid rgba(85, 123, 67, 0.2);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.consent input {
  width: 19px;
  height: 19px;
  margin: 2px 0 0;
  flex: 0 0 auto;
}

.form-submit {
  margin-top: 2px;
}

.form-help,
.form-status {
  margin: -5px 0 0;
  font-size: 12px;
}

.form-help {
  color: var(--muted);
  text-align: center;
}

.form-status {
  min-height: 1.4em;
  color: var(--leaf);
  font-weight: 800;
}

footer {
  display: grid;
  gap: 18px;
  padding: 28px 18px 34px;
  color: rgba(255, 255, 255, 0.7);
  background: #081711;
}

footer > div:first-child {
  display: grid;
  gap: 2px;
}

footer strong {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--sun);
  font-weight: 800;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .site-header {
    padding-inline: 22px;
  }

  .hero-copy,
  .place-section,
  .parking-section,
  .footprint-section,
  .power-section,
  .vendor-section,
  .story-section,
  .plan-section,
  .callback-section,
  footer {
    padding-right: clamp(28px, 6vw, 72px);
    padding-left: clamp(28px, 6vw, 72px);
  }

  .proof-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-strip span,
  .proof-strip span:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .proof-strip span:last-child {
    border-right: 0;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
    min-width: 190px;
  }

  .property-gallery {
    gap: 16px;
  }

  .gallery-card figcaption {
    padding: 16px;
  }

  .gallery-card figcaption strong {
    font-size: 15px;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-submit {
    width: 100%;
  }
}

@media (min-width: 900px) {
  .site-header {
    min-height: 76px;
    gap: 26px;
    padding: 10px clamp(28px, 5vw, 76px);
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-name span {
    font-size: 12px;
  }

  .desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.5vw, 34px);
    margin-left: auto;
  }

  .desktop-nav a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
  }

  .desktop-nav a:hover {
    color: var(--sun);
  }

  .header-cta {
    padding-inline: 18px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    align-items: stretch;
  }

  .hero-copy {
    display: grid;
    align-content: center;
    order: 1;
    padding: 72px clamp(34px, 6vw, 92px);
  }

  .hero-photo {
    height: clamp(680px, calc(100vh - 76px), 820px);
    min-height: 0;
    order: 2;
  }

  .hero-photo img {
    object-position: center 46%;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(3.3rem, 4.6vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.7rem, 4.2vw, 4.2rem);
  }

  .hero-lede {
    font-size: 19px;
  }

  .proof-strip {
    padding-inline: clamp(28px, 7vw, 110px);
  }

  .proof-strip span {
    min-height: 70px;
    font-size: 12px;
  }

  .place-section,
  .parking-section,
  .footprint-section,
  .power-section,
  .vendor-section,
  .story-section,
  .plan-section,
  .callback-section {
    padding-top: 88px;
    padding-bottom: 88px;
    scroll-margin-top: 76px;
  }

  .parking-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    column-gap: clamp(54px, 8vw, 130px);
    align-items: center;
  }

  .parking-stat {
    justify-self: end;
  }

  .parking-note {
    grid-column: 1 / -1;
  }

  .footprint-zones {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
  }

  .footprint-zone {
    min-height: 220px;
    padding: 28px;
  }

  .power-section {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    column-gap: clamp(54px, 8vw, 130px);
    align-items: center;
  }

  .power-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .power-stat {
    grid-column: 1;
    grid-row: 1;
  }

  .power-note {
    grid-column: 1 / -1;
  }

  .vendor-intro {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
    gap: clamp(30px, 6vw, 90px);
  }

  .vendor-location {
    justify-self: end;
    max-width: 330px;
    padding: 24px;
  }

  .vendor-rates {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
  }

  .vendor-rate-card {
    min-height: 390px;
    padding: 28px;
  }

  .vendor-workflow {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 18px;
    margin-top: 18px;
  }

  .vendor-steps,
  .vendor-agreement-card {
    padding: 28px;
  }

  .property-gallery {
    grid-template-columns: 2fr 1fr 1fr;
    margin-top: 42px;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .gallery-card img,
  .gallery-card-wide img {
    height: 440px;
    aspect-ratio: auto;
  }

  .story-compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: auto;
    grid-auto-flow: row;
    gap: 18px;
    margin: 40px 0 0;
    padding: 0;
    overflow: visible;
  }

  .story-hint {
    display: none;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
  }

  .steps li {
    min-height: 190px;
    align-content: start;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .callback-section {
    grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: start;
  }

  .callback-copy {
    position: sticky;
    top: 110px;
  }

  .callback-form {
    padding: clamp(28px, 4vw, 44px);
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px clamp(28px, 5vw, 76px);
  }
}

@media (max-width: 370px) {
  .brand-name strong {
    font-size: 13px;
  }

  .brand-name span {
    font-size: 10px;
  }

  .header-cta {
    padding-inline: 11px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
