:root {
  --ink: #18231f;
  --muted: #5c6a63;
  --paper: #f7f4ec;
  --paper-strong: #eee7da;
  --white: #ffffff;
  --forest: #194f3d;
  --moss: #6d8154;
  --terracotta: #b96243;
  --clay: #d6a06c;
  --sky: #dce9ee;
  --line: rgba(24, 35, 31, 0.16);
  --shadow: 0 24px 60px rgba(20, 29, 25, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 86px;
}

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

body::after {
  display: none;
  height: env(safe-area-inset-bottom);
  content: "";
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 22, 17, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.mobile-quick-nav,
.mobile-action-bar {
  display: none;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 32px);
  align-items: center;
  font-size: 0.94rem;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.language-toggle {
  min-width: 44px;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 15, 11, 0.82) 0%, rgba(6, 15, 11, 0.58) 42%, rgba(6, 15, 11, 0.12) 100%),
    linear-gradient(0deg, rgba(6, 15, 11, 0.7) 0%, rgba(6, 15, 11, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 132px clamp(20px, 6vw, 76px) 172px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 750;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--terracotta);
}

.button-primary:hover {
  background: #a94f34;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 6vw, 76px);
  right: clamp(20px, 6vw, 76px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(11, 24, 18, 0.52);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  display: block;
  color: var(--clay);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.mobile-quick-nav {
  width: min(100% - 28px, 1180px);
  margin: -34px auto 0;
  padding: 8px;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mobile-quick-nav a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

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

.intro-grid,
.section-heading,
.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-copy,
.section-heading p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.value-band,
.process-band {
  display: grid;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.value-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.value-item,
.process-band > div {
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.value-item:last-child,
.process-band > div:last-child {
  border-right: 0;
}

.value-item span,
.process-band span {
  display: block;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-item strong,
.process-band strong {
  display: block;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.08;
}

.value-item p,
.process-band p {
  margin: 12px 0 0;
  color: var(--muted);
}

.facts {
  padding-top: 104px;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.facts-card,
.parcel-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.facts-card {
  min-height: 252px;
  padding: 26px;
}

.facts-card-feature {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(25, 79, 61, 0.98), rgba(47, 74, 49, 0.94)),
    var(--forest);
}

.facts-card span {
  display: block;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-card-feature span {
  color: var(--clay);
}

.facts-card strong {
  display: block;
  margin-top: 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1;
}

.facts-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.facts-card-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.parcel-panel {
  margin-top: 14px;
  overflow: hidden;
}

.parcel-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.parcel-panel-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.parcel-panel-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.parcel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

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

.parcel-table th {
  color: var(--forest);
  background: #f0eadf;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parcel-table tbody tr:nth-child(even) {
  background: #fbfaf6;
}

.parcel-table tfoot td {
  border-bottom: 0;
  color: var(--ink);
  background: var(--paper-strong);
  font-weight: 850;
}

.source-note {
  margin: 0;
  padding: 16px 26px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery {
  padding-top: 104px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
  margin-top: 42px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-strong);
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item button,
.map-panel button,
.wide-map button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-item:hover img,
.map-panel:hover img,
.wide-map:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption,
.map-panel figcaption,
.wide-map figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(13, 24, 19, 0.66);
  font-size: 0.88rem;
}

.location {
  padding-top: 88px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  margin-top: 44px;
}

.map-panel,
.wide-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--paper-strong);
}

.map-panel img,
.wide-map img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.access-panel {
  display: grid;
  align-content: end;
  min-height: 500px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 233, 238, 0.58), rgba(247, 244, 236, 0.98)),
    var(--sky);
}

.access-panel p {
  margin: 0;
  padding-top: 18px;
  border-top: 2px solid var(--terracotta);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.45rem);
  line-height: 1.16;
}

.wide-map {
  margin-top: 18px;
}

.wide-map img {
  aspect-ratio: 16 / 7;
}

.proximity-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 4vw, 42px);
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 35, 31, 0.98), rgba(25, 79, 61, 0.9)),
    var(--ink);
}

.proximity-copy h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 1.04;
}

.proximity-copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.proximity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.proximity-item {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.proximity-item strong {
  display: block;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.proximity-item span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

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

.possibility-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.possibility-card span {
  display: block;
  color: var(--terracotta);
  font-weight: 850;
}

.possibility-card h3 {
  margin: 34px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.possibility-card p {
  margin: 0;
  color: var(--muted);
}

.buyer-fit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.fit-panel {
  min-height: 430px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.fit-panel-developer {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(25, 79, 61, 0.96), rgba(109, 129, 84, 0.9)),
    var(--forest);
}

.fit-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.04;
}

.fit-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.fit-panel-developer p {
  color: rgba(255, 255, 255, 0.76);
}

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

.fit-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.fit-panel-developer li {
  color: rgba(255, 255, 255, 0.8);
}

.fit-panel li::before {
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.fit-panel-developer li::before {
  background: var(--clay);
}

.process-band {
  background: var(--ink);
}

.process-band > div {
  border-color: rgba(255, 255, 255, 0.16);
}

.process-band strong {
  color: var(--white);
}

.process-band p {
  color: rgba(255, 255, 255, 0.72);
}

.inquiry {
  align-items: stretch;
  padding-bottom: 112px;
}

.inquiry-copy {
  padding-top: 12px;
}

.inquiry-notes {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.inquiry-notes li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.inquiry-notes li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(24, 35, 31, 0.2);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf6;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(25, 79, 61, 0.14);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.captcha-frame {
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(24, 35, 31, 0.12);
  border-radius: 6px;
  background: #fbfaf6;
}

.turnstile-widget {
  min-height: 65px;
}

.captcha-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.form-status.is-error {
  color: #a33d2d;
}

.form-status.is-success {
  color: var(--forest);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.74);
  background: #101814;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.mobile-action-bar {
  position: fixed;
  z-index: 80;
  left: 14px;
  right: 14px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(12, 22, 17, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(8, 14, 11, 0.3);
}

.mobile-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.mobile-action-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

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

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(10, 16, 13, 0.92);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  color: var(--white);
  text-align: center;
}

.lightbox-close {
  justify-self: end;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

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

  .hero-facts,
  .intro-grid,
  .section-heading,
  .inquiry,
  .location-layout,
  .proximity-panel,
  .buyer-fit {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    left: 20px;
    right: 20px;
  }

  .facts-grid,
  .proximity-grid,
  .gallery-grid,
  .possibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
  }

  .value-band,
  .process-band {
    grid-template-columns: 1fr;
  }

  .value-item,
  .process-band > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom));
  }

  body::after {
    display: block;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand {
    max-width: 200px;
    white-space: normal;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 15, 11, 0.84) 0%, rgba(6, 15, 11, 0.62) 56%, rgba(6, 15, 11, 0.22) 100%),
      linear-gradient(0deg, rgba(6, 15, 11, 0.78) 0%, rgba(6, 15, 11, 0.12) 48%);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  .hero-content {
    max-width: none;
    padding: 108px 18px 324px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    bottom: 94px;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
    padding: 68px 0;
  }

  .mobile-quick-nav,
  .mobile-action-bar {
    display: grid;
  }

  .mobile-quick-nav {
    grid-template-columns: repeat(4, max-content);
    align-items: center;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .facts-grid,
  .proximity-grid,
  .gallery-grid,
  .possibility-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .parcel-panel {
    overflow-x: auto;
  }

  .parcel-panel-heading {
    display: block;
  }

  .parcel-panel-heading p {
    margin-top: 10px;
  }

  .parcel-table {
    min-width: 620px;
  }

  .facts-card,
  .possibility-card,
  .fit-panel,
  .proximity-item {
    min-height: auto;
  }

  .gallery-item figcaption,
  .map-panel figcaption,
  .wide-map figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 0.82rem;
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 230px;
  }

  .access-panel {
    min-height: auto;
  }

  .access-panel p {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .inquiry {
    padding-bottom: 148px;
  }

  .wide-map img {
    aspect-ratio: 4 / 3;
  }

  .captcha-frame {
    overflow-x: auto;
  }
}
