:root {
  --ink: #292725;
  --muted: #6f675f;
  --paper: #f4f0ea;
  --panel: #fffaf3;
  --line: rgba(41, 39, 37, 0.14);
  --taupe: #332e2a;
  --taupe-soft: #484039;
  --copper: #ae5f3f;
  --copper-dark: #8e4930;
  --cream: #f7eddc;
  --green: #253d32;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --gutter: clamp(20px, 7vw, 118px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 86px;
  padding: 0 var(--gutter);
  color: var(--cream);
  background: rgba(37, 32, 29, 0.46);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(42, 35, 31, 0.94);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 32px;
  min-height: inherit;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.brand strong,
.brand em {
  display: block;
  font-family: var(--serif);
  font-style: normal;
  line-height: 0.95;
}

.brand strong {
  font-size: 24px;
}

.brand em {
  font-size: 21px;
}

.main-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  justify-content: center;
}

.header-actions {
  justify-content: flex-end;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--copper);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.filled {
  color: var(--cream);
  background: var(--copper);
}

.button.filled:hover {
  background: var(--copper-dark);
}

.button.ghost {
  color: var(--copper);
  background: transparent;
}

.button.light {
  color: var(--cream);
  border-color: rgba(247, 237, 220, 0.72);
}

.button.small {
  min-height: 38px;
  padding: 0 18px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(247, 237, 220, 0.72);
  border-radius: 6px;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  color: var(--cream);
  background: var(--taupe);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  opacity: 0.9;
}

.hero-shade {
  background:
    linear-gradient(0deg, rgba(35, 30, 26, 0.84) 0%, rgba(35, 30, 26, 0.36) 46%, rgba(35, 30, 26, 0.22) 100%),
    linear-gradient(90deg, rgba(35, 30, 26, 0.58), rgba(35, 30, 26, 0.04) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(960px, calc(100% - var(--gutter) * 2));
  min-height: 60vh;
  margin: 0 auto;
  padding: 104px 0 64px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: block;
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cream);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 132px);
  line-height: 0.92;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 3.4vw, 54px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.quick-finder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 0;
  align-items: stretch;
  margin: -42px var(--gutter) 0;
  position: relative;
  z-index: 2;
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(41, 39, 37, 0.12);
}

.quick-finder div,
.quick-finder .button {
  min-height: 84px;
  border: 0;
  border-radius: 0;
  background: var(--panel);
}

.quick-finder div {
  border-right: 1px solid rgba(41, 39, 37, 0.34);
}

.quick-finder .button.filled {
  padding: 0 34px;
  color: var(--cream);
  background: var(--copper);
}

.quick-finder .button.filled:hover {
  background: var(--copper-dark);
}

.quick-finder div {
  display: grid;
  align-content: center;
  padding: 18px 24px;
}

.quick-finder span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-finder strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
}

.section {
  padding: clamp(72px, 9vw, 132px) var(--gutter);
}

.manifest {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(38px, 7vw, 104px);
  align-items: start;
  padding-top: clamp(112px, 13vw, 178px);
  background: var(--panel);
}

.manifest-copy p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.65;
}

.experience {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  min-height: 760px;
  color: var(--cream);
  background: var(--taupe);
}

.experience-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 128px) var(--gutter);
}

.experience-copy h2 {
  color: var(--cream);
}

.experience-copy ul {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(247, 237, 220, 0.18);
}

.experience-copy li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 237, 220, 0.18);
}

.experience-copy strong {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 28px;
}

.experience-copy span {
  color: rgba(247, 237, 220, 0.76);
  font-size: 18px;
}

.experience-slider {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.slider-track,
.slider-track img {
  position: absolute;
  inset: 0;
}

.slider-track img {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 720ms ease;
}

.slider-track img.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-controls {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.slider-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 237, 220, 0.46);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(35, 30, 26, 0.42);
  font: inherit;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.slider-dots {
  display: flex;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 237, 220, 0.24);
  border-radius: 999px;
  background: rgba(35, 30, 26, 0.36);
  backdrop-filter: blur(10px);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  min-width: 0;
  border: 0;
  background: rgba(247, 237, 220, 0.42);
}

.slider-dots button.is-active {
  background: var(--cream);
}

.amenities-icons {
  background: var(--panel);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 82px) 34px;
}

.icon-grid article {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.icon-grid svg {
  width: clamp(72px, 7vw, 104px);
  height: clamp(72px, 7vw, 104px);
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-grid h3 {
  max-width: 320px;
  margin: 0;
  color: var(--green);
  font-family: var(--sans);
  font-size: clamp(14px, 1.3vw, 21px);
  font-weight: 500;
  line-height: 1.18;
}

.green-park {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  background: var(--panel);
}

.park-collage {
  position: relative;
  min-height: 620px;
}

.park-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(41, 39, 37, 0.12);
}

.park-main {
  top: 0;
  left: 0;
  width: 64%;
  height: 76%;
}

.park-small.top {
  top: 16%;
  right: 0;
  width: 48%;
  height: 28%;
}

.park-small.bottom {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 36%;
}

.park-copy {
  padding: clamp(30px, 5vw, 72px);
  background: #f0eeee;
}

.park-copy svg {
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.park-copy h2 {
  color: var(--green);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.16;
  text-transform: uppercase;
}

.park-copy p {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 23px);
}

.park-copy ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 20px;
  list-style: none;
}

.park-copy li::before {
  margin-right: 18px;
  color: var(--green);
  font-weight: 800;
  content: "✓";
}

.section-heading {
  max-width: 900px;
  margin-bottom: 46px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--cream);
  background: var(--taupe);
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(35, 30, 26, 0.76), rgba(35, 30, 26, 0.04) 58%);
  content: "";
}

.gallery-card div {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 1;
  max-width: 640px;
}

.gallery-card span {
  display: block;
  margin-bottom: 10px;
  color: rgba(247, 237, 220, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer {
  background: var(--panel);
}

.offer-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 36px;
  align-items: end;
  margin-bottom: 32px;
}

.offer-head p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
}

.filters {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(240px, 0.8fr);
  gap: 24px;
  align-items: end;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(244, 240, 234, 0.72);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--copper);
}

.range-values {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.range-values strong {
  color: var(--ink);
}

.choice-group {
  display: flex;
  gap: 10px;
}

.choice-group button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(174, 95, 63, 0.45);
  border-radius: 6px;
  color: var(--copper);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.choice-group button.is-active {
  color: var(--cream);
  background: var(--copper);
}

.filter-summary {
  margin: 22px 0;
  color: var(--muted);
  font-weight: 800;
}

.home-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 64px;
  border-top: 0;
}

.home-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  min-height: 360px;
  padding: 0 24px 24px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.home-row:hover {
  color: var(--copper);
}

.home-row.is-hidden,
.empty-results {
  display: none;
}

.home-row span {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.home-row img {
  width: calc(100% + 48px);
  height: 148px;
  margin: 0 -24px 12px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.home-row:hover img {
  transform: scale(1.04);
}

.home-row strong,
.home-row b {
  font-size: 18px;
}

.home-row em,
.home-row i {
  color: var(--muted);
  font-style: normal;
}

.home-row b {
  margin-top: auto;
  color: var(--copper);
}

.availability-table {
  margin-top: 24px;
}

.availability-table h3 {
  margin-bottom: 28px;
  color: var(--green);
  font-family: var(--sans);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.table-scroll {
  overflow-x: auto;
}

.availability-table table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: var(--panel);
}

.availability-table th,
.availability-table td {
  padding: 22px 18px;
  border: 1px solid rgba(41, 39, 37, 0.18);
  text-align: center;
  vertical-align: middle;
}

.availability-table th {
  color: var(--cream);
  background: var(--green);
  font-weight: 800;
}

.availability-table td {
  color: var(--ink);
  font-size: 17px;
}

.availability-table tr.is-muted td {
  color: rgba(41, 39, 37, 0.45);
  background: rgba(41, 39, 37, 0.03);
}

.availability-table a {
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 999px;
}

.status-dot.available {
  background: #2f8a2f;
}

.status-dot.reserved {
  background: #858585;
}

.status-dot.sold {
  background: #ef3328;
}

.location-access {
  padding-top: clamp(36px, 4vw, 64px);
  background: var(--panel);
  text-align: center;
}

.prospect-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(440px, 100%);
  min-height: 64px;
  margin: 0 auto 28px;
  color: var(--cream);
  background: #9f5a55;
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prospect-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-heading {
  margin-bottom: 36px;
  text-align: center;
}

.access-heading h2 {
  margin-bottom: 0;
  color: var(--green);
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
  position: relative;
}

.access-grid::before {
  position: absolute;
  top: -16px;
  bottom: -28px;
  left: 50%;
  width: 1px;
  background: rgba(37, 61, 50, 0.65);
  content: "";
}

.access-card {
  position: relative;
  z-index: 1;
}

.access-card figure {
  position: relative;
  height: clamp(160px, 14vw, 230px);
  margin: 0 0 28px;
  overflow: hidden;
  background: var(--taupe);
}

.access-card figure::after {
  position: absolute;
  inset: 0;
  background: rgba(35, 30, 26, 0.42);
  content: "";
}

.access-card figcaption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
}

.access-card ul {
  display: grid;
  gap: 0;
  width: min(82%, 680px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.access-card li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 13px 18px;
  color: var(--ink);
  background: rgba(41, 39, 37, 0.04);
  border-bottom: 1px solid rgba(41, 39, 37, 0.12);
  font-size: clamp(16px, 1.3vw, 22px);
}

.access-card li:nth-child(even) {
  background: transparent;
}

.access-card span::before {
  margin-right: 9px;
  color: var(--green);
  font-weight: 800;
  content: "✓";
}

.access-card strong {
  font-weight: 500;
}

.empty-results.is-visible {
  display: block;
  padding: 28px 0;
  color: var(--muted);
  font-weight: 800;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(72px, 9vw, 132px) var(--gutter);
  background: var(--paper);
}

.location-copy p {
  color: var(--muted);
  font-size: 18px;
}

.location-copy ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.location-copy li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.location-copy li:last-child {
  border-bottom: 0;
}

.location-copy li > * {
  display: flex;
  align-items: center;
  min-height: 82px;
}

.location-copy strong {
  padding-right: 24px;
  border-right: 1px solid var(--line);
  color: var(--copper);
  font-family: var(--serif);
  font-size: 26px;
}

.location-copy li span {
  padding-left: 28px;
}

.map-frame {
  min-height: 520px;
  overflow: hidden;
  background: #ded7ce;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) contrast(0.9) sepia(0.12);
}

.contact-hero {
  position: relative;
  min-height: 620px;
  padding: clamp(74px, 10vw, 150px) var(--gutter);
  overflow: hidden;
  background: var(--taupe);
}

.contact-hero > img {
  position: absolute;
  inset: 0;
  opacity: 0.48;
}

.contact-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 30, 26, 0.84), rgba(35, 30, 26, 0.24));
  content: "";
}

.contact-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(28px, 5vw, 48px);
  color: var(--cream);
  background: rgba(51, 46, 42, 0.86);
  backdrop-filter: blur(12px);
}

.contact-panel p {
  color: rgba(247, 237, 220, 0.78);
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 44px var(--gutter);
  color: var(--cream);
  background: #242322;
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  color: rgba(247, 237, 220, 0.66);
  text-align: right;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height, 86px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(247, 237, 220, 0.16);
    background: rgba(42, 35, 31, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(247, 237, 220, 0.12);
    font-size: 15px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .manifest,
  .experience,
  .green-park,
  .offer-head,
  .access-grid,
  .location-section {
    grid-template-columns: 1fr;
  }

  .experience {
    min-height: auto;
  }

  .experience-slider {
    min-height: 520px;
  }

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

  .quick-finder,
  .home-list,
  .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-grid::before {
    display: none;
  }

  .access-card ul {
    width: 100%;
  }

  .park-collage {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand strong,
  .brand em,
  .header-actions .button {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .hero-content {
    width: auto;
    min-height: 66vh;
    margin: 0;
    padding: 104px 20px 70px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 48px);
  }

  .quick-finder,
  .gallery-grid,
  .filters,
  .access-grid,
  .home-row {
    grid-template-columns: 1fr;
  }

  .quick-finder {
    margin: -34px 20px 0;
  }

  .quick-finder div {
    border-right: 0;
    border-bottom: 1px solid rgba(41, 39, 37, 0.24);
  }

  .section,
  .experience-copy,
  .location-access,
  .location-section,
  .contact-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .experience-slider,
  .gallery-card,
  .gallery-card {
    min-height: 410px;
  }

  .icon-grid {
    gap: 34px 18px;
  }

  .icon-grid h3 {
    font-size: 15px;
  }

  .park-collage {
    min-height: 440px;
  }

  .park-copy {
    padding: 28px;
  }

  .filters {
    padding: 22px;
  }

  .home-row {
    gap: 4px;
    align-items: start;
    padding: 18px 0;
  }

  .map-frame {
    min-height: 360px;
  }

  .contact-panel {
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
    padding: 38px 20px;
  }

  .site-footer p {
    text-align: left;
  }
}
