:root {
  --ink: #172a31;
  --navy: #233841;
  --sea: #6f8e8a;
  --sea-deep: #4f716e;
  --sand: #efe9df;
  --cream: #faf8f3;
  --paper: #ffffff;
  --muted: #647176;
  --line: rgba(35, 56, 65, 0.16);
  --shadow: 0 22px 70px rgba(26, 45, 52, 0.14);
  --radius: 24px;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper);
}

.site-header.on-light {
  position: relative;
  background: var(--navy);
}

.nav-shell {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  color: inherit;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.main-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--sea-deep);
  color: var(--paper);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #3d615e;
  box-shadow: 0 12px 24px rgba(33, 62, 62, 0.2);
}

.button.light {
  background: var(--paper);
  color: var(--navy);
}

.button.outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: 850px;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 34, 41, 0.78) 0%, rgba(17, 34, 41, 0.45) 46%, rgba(17, 34, 41, 0.09) 78%),
    linear-gradient(0deg, rgba(17, 34, 41, 0.62) 0%, transparent 40%),
    url("images/01_front.webp") center / cover no-repeat;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(18, 38, 45, 0.32));
  content: "";
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 200px 0 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--sea-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #d8e7e4;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.feature-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(54px, 8vw, 104px);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.meta-item {
  padding: 22px 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item:first-child {
  padding-left: 0;
}

.meta-item:last-child {
  border-right: 0;
}

.meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.meta-item span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

main section {
  padding: 104px 0;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: 0.92fr 1.08fr;
}

.section-heading h2,
.feature-copy h2,
.cta-panel h2 {
  color: var(--navy);
  font-size: clamp(42px, 5.2vw, 70px);
}

.intro-copy {
  padding-top: 40px;
}

.intro-copy > p:first-child {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.42;
}

.intro-copy p {
  color: var(--muted);
}

.facts-strip {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
}

.fact {
  padding: 18px 20px 18px 0;
  border-top: 1px solid var(--line);
}

.fact strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
}

.gallery-section {
  padding-top: 26px;
  background: var(--paper);
}

.gallery-intro {
  display: flex;
  margin-bottom: 34px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.gallery-intro h2 {
  max-width: 720px;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 310px 310px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #e5e5e2;
  cursor: pointer;
}

.gallery-card:first-child {
  grid-row: 1 / span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.035);
}

.gallery-card span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 39, 47, 0.82);
  color: var(--paper);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.staging-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.feature-band {
  background: var(--sand);
}

.feature-grid {
  display: grid;
  align-items: center;
  gap: 78px;
  grid-template-columns: 1.08fr 0.92fr;
}

.feature-image {
  position: relative;
}

.feature-image img {
  aspect-ratio: 1.08 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-image::after {
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 55%;
  height: 52%;
  border-radius: var(--radius);
  background: var(--sea);
  content: "";
}

.feature-copy p {
  color: var(--muted);
}

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

.check-list li {
  display: grid;
  padding: 13px 0;
  align-items: start;
  gap: 13px;
  grid-template-columns: 22px 1fr;
  border-top: 1px solid rgba(35, 56, 65, 0.14);
  color: var(--navy);
  font-size: 14px;
  font-weight: 620;
}

.check-list li::before {
  color: var(--sea-deep);
  content: "✓";
  font-weight: 800;
}

.placement-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
}

.placement-section::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.placement-section .section-heading h2,
.placement-section .eyebrow {
  color: var(--paper);
}

.placement-section .section-heading {
  max-width: 820px;
}

.placement-cards {
  display: grid;
  margin-top: 48px;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.placement-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.placement-card .number {
  color: #9eb9b5;
  font-family: var(--serif);
  font-size: 20px;
}

.placement-card h3 {
  margin: 46px 0 15px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.12;
}

.placement-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.placement-card a {
  position: absolute;
  bottom: 31px;
  color: #d7e5e2;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.location-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.86fr 1.14fr;
}

.location-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.location-list li {
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.location-list strong {
  color: var(--navy);
  font-size: 14px;
}

.location-list span {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 540px;
  padding: 45px;
  align-content: end;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(27, 51, 58, 0.78), rgba(27, 51, 58, 0.08)),
    url("images/04_backyard_staged.webp") center / cover no-repeat;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.map-card h3 {
  max-width: 460px;
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.08;
}

.map-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.download-grid {
  display: grid;
  margin-top: 34px;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.download-card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--navy);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--sea);
  box-shadow: 0 18px 34px rgba(25, 49, 57, 0.1);
}

.download-card small {
  color: var(--sea-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.download-card h3 {
  margin: 45px 0 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.download-card span {
  color: var(--muted);
  font-size: 12px;
}

.cta-section {
  padding: 54px 0 0;
}

.cta-panel {
  display: grid;
  padding: 68px;
  align-items: center;
  gap: 50px;
  grid-template-columns: 1fr auto;
  border-radius: var(--radius);
  background: var(--sea);
  color: var(--paper);
}

.cta-panel h2 {
  max-width: 720px;
  color: var(--paper);
}

.cta-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  margin-top: 104px;
  padding: 58px 0 30px;
  background: #132930;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 0.6fr 0.6fr;
}

.footer-brand p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: var(--paper);
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  margin-top: 48px;
  padding-top: 24px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.page-hero {
  padding: 104px 0 84px;
  background: var(--navy);
  color: var(--paper);
}

.page-hero.with-photo {
  position: relative;
  display: grid;
  min-height: 610px;
  padding-top: 150px;
  align-items: end;
  background-position: center;
  background-size: cover;
}

.stage-label {
  position: absolute;
  right: max(20px, calc((100% - 1180px) / 2));
  bottom: 18px;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 36, 43, 0.76);
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero.ale-photo {
  background-image:
    linear-gradient(90deg, rgba(17, 36, 43, 0.9), rgba(17, 36, 43, 0.38)),
    url("images/04_backyard_staged.webp");
}

.page-hero.relocation-photo {
  background-image:
    linear-gradient(90deg, rgba(17, 36, 43, 0.9), rgba(17, 36, 43, 0.3)),
    url("images/03_living_staged.webp");
}

.page-hero.availability-photo {
  background-image:
    linear-gradient(90deg, rgba(17, 36, 43, 0.9), rgba(17, 36, 43, 0.36)),
    url("images/01_front.webp");
}

.page-hero .shell {
  display: grid;
  align-items: end;
  gap: 55px;
  grid-template-columns: 1.1fr 0.9fr;
}

.page-hero h1 {
  color: var(--paper);
  font-size: clamp(52px, 7vw, 88px);
}

.page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.page-hero .eyebrow {
  color: #bed1cd;
}

.content-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 1.25fr 0.75fr;
}

.prose h2,
.prose h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

.prose h2 {
  margin: 0 0 20px;
  font-size: 44px;
}

.prose h3 {
  margin: 42px 0 12px;
  font-size: 28px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 20px;
}

.prose li {
  margin: 9px 0;
}

.side-card {
  position: sticky;
  top: 24px;
  padding: 31px;
  border-radius: var(--radius);
  background: var(--sand);
}

.side-card h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
}

.side-card dl {
  margin: 0;
}

.side-card dl div {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.side-card dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-card dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

.side-card .button {
  width: 100%;
  margin-top: 22px;
}

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

.process-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.process-card span {
  color: var(--sea-deep);
  font-family: var(--serif);
  font-size: 20px;
}

.process-card h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-card {
  display: grid;
  padding: 60px;
  gap: 50px;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
}

.contact-details {
  display: grid;
  align-content: center;
  gap: 12px;
}

.contact-details a {
  display: block;
  color: var(--navy);
  font-size: 21px;
  font-weight: 650;
  text-decoration: none;
}

.contact-details small {
  color: var(--muted);
}

.secure-form {
  display: grid;
  gap: 20px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.form-field label span {
  color: var(--muted);
  font-weight: 550;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(35, 56, 65, 0.24);
  border-radius: 10px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--sea-deep);
  box-shadow: 0 0 0 3px rgba(79, 113, 110, 0.14);
}

.security-field {
  display: grid;
  padding: 19px;
  align-items: end;
  gap: 18px;
  grid-template-columns: 1fr 130px;
  border-radius: 14px;
  background: var(--sand);
}

.security-field p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.security-field strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
}

.form-status {
  margin: 0;
  padding: 17px 19px;
  border-radius: 12px;
  font-size: 14px;
}

.form-status.success {
  border: 1px solid rgba(58, 120, 88, 0.28);
  background: rgba(58, 120, 88, 0.1);
  color: #285d43;
}

.form-status.error {
  border: 1px solid rgba(153, 68, 68, 0.25);
  background: rgba(153, 68, 68, 0.09);
  color: #783939;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.notice {
  padding: 20px 22px;
  border-left: 3px solid var(--sea);
  background: rgba(111, 142, 138, 0.1);
  color: var(--muted);
  font-size: 13px;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #0f2026;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(8, 20, 25, 0.84);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(14, 32, 38, 0.75);
  color: var(--paper);
  cursor: pointer;
  font-size: 23px;
}

@media (max-width: 920px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: none;
    width: min(360px, 86vw);
    padding: 110px 32px 40px;
    align-items: stretch;
    flex-direction: column;
    background: var(--navy);
    box-shadow: -20px 0 50px rgba(11, 29, 35, 0.22);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 10px 0;
    font-size: 16px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .hero {
    min-height: 790px;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .meta-item:nth-child(3) {
    border-right: 0;
  }

  .meta-item:nth-child(n + 4) {
    display: none;
  }

  .intro-grid,
  .feature-grid,
  .location-grid,
  .page-hero .shell,
  .content-grid,
  .contact-card {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 250px 250px;
  }

  .gallery-card:first-child {
    grid-column: 1 / span 2;
    grid-row: auto;
  }

  .placement-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .placement-card {
    min-height: 270px;
  }

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

  .cta-panel {
    padding: 48px;
    grid-template-columns: 1fr;
  }

  .side-card {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .hero-content,
  .hero-meta,
  .shell,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .meta-item {
    padding: 17px 9px;
  }

  .meta-item strong {
    font-size: 21px;
  }

  main section {
    padding: 76px 0;
  }

  .section-heading h2,
  .feature-copy h2,
  .cta-panel h2,
  .page-hero h1 {
    font-size: 43px;
  }

  .gallery-intro {
    align-items: start;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 265px);
  }

  .gallery-card:first-child {
    grid-column: auto;
  }

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

  .feature-image::after {
    right: -8px;
    bottom: -12px;
  }

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

  .cta-panel,
  .contact-card {
    padding: 34px 26px;
  }

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

  .form-grid,
  .security-field {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding: 76px 0 62px;
  }

  .page-hero.with-photo {
    min-height: 560px;
    padding-top: 120px;
  }

  .stage-label {
    right: 14px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
