:root {
  --bg: #f5efe6;
  --bg-strong: #e9dcc8;
  --surface: rgba(255, 250, 244, 0.72);
  --surface-strong: #fff8ee;
  --text: #2a2119;
  --muted: #68584c;
  --accent: #8b5e3c;
  --accent-strong: #6d4528;
  --line: rgba(74, 51, 35, 0.24);
  --shadow: 0 24px 80px rgba(73, 46, 25, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 245, 229, 0.95), transparent 28%),
    linear-gradient(180deg, #f7f2ea 0%, #efe4d2 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.page-shell {
  padding: 36px;
}

.site-header,
main section {
  width: min(var(--content-width), calc(100vw - 56px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(255, 248, 238, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(121, 87, 58, 0.14);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #8b5e3c, #a97d57);
  color: #fff7f0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 2px;
  font-size: 0.9rem;
  color: var(--muted);
}

.brand-copy strong {
  color: var(--text);
  font-size: 0.98rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-strong);
}

.hero,
.overview,
.spotlight,
.market-section,
.gallery-section,
.options-section,
.location-section,
.access-section,
.contact-section,
.seo-notes-section {
  margin-bottom: 32px;
  padding: 36px;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  min-height: 60vh;
  padding-top: 22px;
  padding-bottom: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.8rem, 5.8vw, 4.9rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hero-text,
.overview p,
.spotlight p,
.location-card p,
.contact-card p,
.quote-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-strong);
  color: #fff9f4;
}

.button-secondary {
  border-color: rgba(110, 69, 40, 0.22);
  background: rgba(255, 251, 247, 0.7);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 1fr 1fr 1.15fr;
  gap: 12px;
  margin: 0;
}

.hero-stat {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 245, 0.8);
  border: 1px solid rgba(114, 82, 56, 0.18);
}

.hero-stat-primary {
  min-height: 66px;
}

.hero-stat-secondary {
  min-height: 66px;
}

.hero-stat-secondary dd {
  font-size: 0.88rem;
}

.hero-stat-layout dd {
  white-space: normal;
}

.hero-stats dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-stats dd {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-media {
  position: relative;
  min-height: 430px;
}

.hero-image {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(100, 70, 48, 0.15);
  box-shadow: 0 30px 90px rgba(64, 41, 22, 0.18);
}

.hero-image img,
.gallery-card img,
.spotlight-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main {
  position: absolute;
  inset: 0 64px 76px 0;
}

.hero-image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 0.84;
}

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

.section-heading-compact {
  margin-bottom: 14px;
}

.overview-grid,
.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.market-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 246, 0.76);
  border: 1px solid rgba(111, 79, 52, 0.18);
}

.market-card p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.overview-visuals {
  position: relative;
  width: 430px;
  min-height: 320px;
}

.overview-thumb {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(111, 79, 52, 0.18);
  background: rgba(255, 251, 246, 0.85);
  box-shadow: 0 14px 40px rgba(60, 39, 21, 0.08);
}

.overview-thumb img {
  width: 100%;
  object-fit: cover;
}

.overview-thumb-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 360px;
}

.overview-thumb-main img {
  height: 230px;
}

.overview-thumb-overlap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 245px;
  z-index: 1;
}

.overview-thumb-overlap img {
  height: 165px;
}

.market-map-thumb {
  width: 360px;
  flex: 0 0 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(111, 79, 52, 0.18);
  background: rgba(255, 251, 246, 0.85);
  box-shadow: 0 14px 40px rgba(60, 39, 21, 0.08);
}

.market-map-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.feature-card,
.location-points > div,
.quote-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 246, 0.76);
  border: 1px solid rgba(111, 79, 52, 0.18);
}

.spotlight {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(145deg, #c38b5e, #8c5d3d);
  box-shadow: 0 0 0 5px rgba(195, 139, 94, 0.16);
}

.spotlight-stack {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  min-height: 520px;
}

.stack-primary,
.stack-secondary {
  height: 100%;
  border-radius: 26px;
  box-shadow: 0 22px 80px rgba(60, 39, 21, 0.16);
}

.stack-secondary {
  margin-top: 82px;
}

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

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.option-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.76);
  border: 1px solid rgba(111, 79, 52, 0.18);
}

.option-copy p {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.option-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(111, 79, 52, 0.18);
  background: rgba(255, 255, 255, 0.94);
}

.option-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-card {
  position: relative;
  min-height: 145px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  cursor: pointer;
  background: #d8c4af;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 300px;
}

.section-intro {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(32, 23, 15, 0.72) 100%);
}

.gallery-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff7ef;
  font-weight: 700;
}

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

.gallery-card img {
  transition: transform 200ms ease;
}

.location-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.location-figure {
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(111, 79, 52, 0.18);
  background: rgba(255, 251, 246, 0.8);
}

.location-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.location-figure figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.quote-card {
  display: grid;
  align-content: center;
  background: linear-gradient(180deg, rgba(139, 94, 60, 0.94), rgba(105, 69, 45, 0.96));
  color: #fff9f4;
  min-height: 100%;
}

.quote-mark {
  margin: 0 0 8px;
  font-size: 5rem;
  line-height: 0.8;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.quote-text {
  color: rgba(255, 249, 242, 0.9);
  font-size: 1.15rem;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 700;
  color: var(--accent-strong);
}

.access-card {
  padding: 8px 0 0;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: 22px;
  align-items: start;
}

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

.access-points > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.76);
  border: 1px solid rgba(111, 79, 52, 0.18);
}

.access-points strong,
.location-points strong {
  display: block;
  margin-bottom: 6px;
}

.access-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.access-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid rgba(111, 79, 52, 0.18);
  background: rgba(255, 251, 246, 0.8);
}

.access-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 252px;
  gap: 24px;
  align-items: center;
}

.contact-photo {
  margin: 0;
  width: 252px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(111, 79, 52, 0.18);
  background: rgba(255, 251, 246, 0.9);
}

.contact-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.lightbox {
  width: min(92vw, 1200px);
  padding: 16px;
  border: 0;
  border-radius: 24px;
  background: rgba(21, 16, 12, 0.92);
}

.lightbox::backdrop {
  background: rgba(20, 14, 9, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox-close-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.lightbox-close {
  padding: 10px 16px;
  border: 1px solid rgba(255, 245, 236, 0.28);
  border-radius: 999px;
  background: transparent;
  color: #fff8f2;
  cursor: pointer;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}

@media (max-width: 1080px) {
  .hero,
  .spotlight,
  .location-section,
  .access-grid,
  .contact-layout,
  .option-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 460px;
  }

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

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

  .overview-visuals {
    width: 360px;
    min-height: 280px;
  }

  .market-map-thumb {
    width: 300px;
    flex-basis: 300px;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px;
  }

  .site-header,
  main section {
    width: min(var(--content-width), calc(100vw - 32px));
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero,
  .overview,
  .spotlight,
  .market-section,
  .gallery-section,
  .options-section,
  .location-section,
  .access-section,
  .contact-section {
    padding: 24px;
  }

  .hero-stats,
  .overview-grid,
  .market-grid,
  .location-points,
  .gallery-grid,
  .spotlight-stack,
  .access-points {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-image-main,
  .hero-image-detail {
    position: static;
    width: 100%;
    aspect-ratio: 1.15;
  }

  .gallery-card-large {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 145px;
  }

  h1 {
    max-width: 100%;
  }

  h2 {
    max-width: 100%;
  }

  .section-heading {
    display: block;
  }

  .overview-visuals {
    width: 100%;
    max-width: 320px;
    min-height: 250px;
    margin-top: 16px;
  }

  .overview-thumb {
    margin-top: 0;
  }

  .overview-thumb-main {
    width: 250px;
  }

  .overview-thumb-main img {
    height: 170px;
  }

  .overview-thumb-overlap {
    width: 170px;
  }

  .overview-thumb-overlap img {
    height: 120px;
  }

  .market-map-thumb {
    max-width: 300px;
    margin-top: 16px;
  }

  .stack-secondary {
    margin-top: 0;
  }

  .contact-photo {
    width: 100%;
    max-width: 252px;
  }
}
