/* ═══════════════════════════════════════════════════
   PIPER CREEK RANCH ESTATES — Master Stylesheet
   Brand: Cormorant Garamond + Montserrat
   ═══════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --ink: #1a1612;
  --earth: #2c2318;
  --bark: #4a3c2c;
  --gold: #b8912a;
  --gold-lt: #d4ae52;
  --gold-pale: #e8d48a;
  --parchment: #f5eed8;
  --cream: #faf6ec;
  --sage: #7a8c6e;
  --sage-dk: #4a5c40;
  --sky: #8fa8b8;
  --white: #ffffff;
  --ink-50: rgba(26, 22, 18, 0.5);
  --ink-80: rgba(26, 22, 18, 0.8);
  --gold-10: rgba(184, 145, 42, 0.1);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 72px;
  --section-py: 80px;
  --container-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  margin-bottom: 12px;
}
/* Diamond divider under section titles */
.section-title::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 14px auto 0;
}
.section-title--light { color: var(--parchment); }
.section-sub {
  font-size: 1.05rem;
  text-align: center;
  color: var(--ink-50);
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub--light { color: rgba(245, 238, 216, 0.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-lt);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(245, 238, 216, 0.4);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--lg { padding: 16px 40px; font-size: 0.9rem; width: 100%; }

/* ── ICON ── */
.icon { width: 18px; height: 18px; flex-shrink: 0; margin-right: 8px; }

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: background 0.3s;
}
.nav__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--parchment);
}
.nav__logo:hover { color: var(--gold-lt); }
.nav__emblem { width: 40px; height: 40px; }
.nav__wordmark {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav__wordmark-land {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: -2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: var(--parchment);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold-lt); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  transition: all 0.3s;
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  width: 100%;
  height: 80vh;
  min-height: 500px;
  background: var(--ink);
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.85) 0%, rgba(26,22,18,0.4) 60%, transparent 100%);
  padding: 80px 24px 64px;
  text-align: center;
  z-index: 2;
}
.hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--parchment);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
  opacity: 0.6;
}
.hero__dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}
.hero__crest {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  opacity: 0.9;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--gold-lt);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── PIN LABELS (used on hero, lot plan, region map) ── */
.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.pin__label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--parchment);
  background: rgba(26, 22, 18, 0.75);
  padding: 5px 14px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pin__label--lot {
  font-size: 0.7rem;
  padding: 6px 14px;
  background: rgba(26, 22, 18, 0.92);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Pulsing map pin */
.pin--pulse {
  pointer-events: none;
}
.pin__dot {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--parchment);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(184, 145, 42, 0.5);
  animation: pulse-ring 2s ease-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(184, 145, 42, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(184, 145, 42, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 145, 42, 0); }
}
.pin__label--callout {
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  padding: 8px 18px;
  background: rgba(26, 22, 18, 0.95);
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.pin__label--callout::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--gold);
}
/* Interactive lot pins */
.pin--interactive {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.pin--interactive .pin__label {
  transition: all 0.25s ease;
}
.pin--interactive:hover .pin__label,
.pin--interactive.is-active .pin__label {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.1);
}

/* Lot detail slide-out panel */
.lot-detail {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 280px;
  background: rgba(26,22,18,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(184,145,42,0.3);
  padding: 0;
  z-index: 20;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.lot-detail.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.lot-detail__close {
  position: absolute;
  top: 8px; right: 12px;
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lot-detail__close:hover { opacity: 1; }
.lot-detail__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.lot-detail__name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--parchment);
  padding: 14px 16px 4px;
}
.lot-detail__meta {
  font-size: 0.8rem;
  color: var(--gold-lt);
  padding: 0 16px 16px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats {
  background: var(--ink);
  padding: 32px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stats__inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stats__number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1.2;
}
.stats__label {
  font-size: 0.72rem;
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.stats__divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 238, 216, 0.2);
}

/* ═══════════════════════════════════════════════════
   LOTS SECTION
   ═══════════════════════════════════════════════════ */
.lots {
  padding: var(--section-py) 0;
  background: var(--white);
}
.lots__aerial-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.lots__aerial-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* Parallax wrapper */
.parallax-wrap {
  overflow: hidden;
}
.parallax-wrap img {
  transition: transform 0.1s linear;
  will-change: transform;
}
.lots__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lots__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.lots__table thead {
  background: var(--ink);
  color: var(--parchment);
}
.lots__table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 20px;
  text-align: left;
}
.lots__table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(26,22,18,0.08);
}
.lots__table tbody tr:hover { background: var(--gold-10); }
.lots__price {
  font-weight: 600;
  color: var(--gold);
  font-style: italic;
}
.lots__note {
  font-size: 0.85rem;
  color: var(--ink-50);
  margin-top: 16px;
  font-style: italic;
}

/* ── Lot Gallery Cards ── */
.lots__gallery-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  margin: 48px 0 24px;
}
.lots__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lot-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.lot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}
.lot-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.lot-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.85), transparent);
  padding: 32px 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.lot-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--parchment);
}
.lot-card__acres {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-lt);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Lot lightbox */
.lot-lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,22,18,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lot-lightbox.is-active { display: flex; }
.lot-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.4);
}
.lot-lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--parchment);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lot-lightbox__close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════
   HIGHLIGHTS + DISTANCE GRID
   ═══════════════════════════════════════════════════ */
.highlights {
  padding: var(--section-py) 0;
  background: var(--parchment);
}
.highlights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.highlights__bullets ul {
  list-style: none;
  padding: 0;
}
.highlights__bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.highlights__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.highlights__dist-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--ink);
}
.dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dist-grid__item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 16px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.dist-grid__value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}
.dist-grid__label {
  font-size: 0.8rem;
  color: var(--ink-50);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════
   PROPERTY GALLERY
   ═══════════════════════════════════════════════════ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--white);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery__item--wide {
  grid-column: span 4;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,22,18,0);
  transition: background 0.3s;
}
.gallery__item:hover::after {
  background: rgba(26,22,18,0.15);
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__item--wide .gallery__img {
  height: 360px;
}
.gallery__item:not(.gallery__item--wide) .gallery__img {
  height: 220px;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════
   REGIONAL MAP (Leaflet)
   ═══════════════════════════════════════════════════ */
.region-map {
  padding: var(--section-py) 0;
  background: var(--white);
}
.region-map__leaflet {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  z-index: 1;
}
/* Custom popup styling */
.leaflet-popup-content-wrapper {
  background: rgba(26, 22, 18, 0.95) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}
.leaflet-popup-content {
  margin: 12px 16px !important;
  color: var(--parchment) !important;
  font-family: var(--font-body) !important;
  text-align: center;
}
.leaflet-popup-content strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 4px;
}
.leaflet-popup-content span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.leaflet-popup-tip {
  background: var(--gold) !important;
}
/* Custom marker icons */
.custom-marker {
  background: none !important;
  border: none !important;
}

/* City markers on the map */
.city-marker {
  cursor: pointer !important;
}
.city-hit-area {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.city-dot {
  width: 14px;
  height: 14px;
  background: var(--ink);
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.city-marker:hover .city-dot,
.city-active .city-dot {
  background: var(--gold);
  transform: scale(1.4);
}
.city-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.city-active .city-label {
  background: var(--gold);
  color: var(--white);
}

/* Pulsing animation for property marker */
@keyframes map-pulse {
  0% { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 0 rgba(184,145,42,0.4); }
  70% { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 16px rgba(184,145,42,0); }
  100% { box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 0 0 rgba(184,145,42,0); }
}

/* Instruction hint */
.map-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-50);
  margin-top: 12px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   INTERACTIVE MAP EMBED
   ═══════════════════════════════════════════════════ */
.embed-map {
  padding: var(--section-py) 0;
  background: var(--parchment);
}
.embed-map__frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.embed-map__frame iframe {
  display: block;
  width: 100%;
  min-height: 500px;
}

/* ═══════════════════════════════════════════════════
   DESTINATION CLUBS
   ═══════════════════════════════════════════════════ */
.clubs {
  padding: var(--section-py) 0;
  background: var(--white);
}
.clubs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.clubs__card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}
.clubs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.clubs__img-wrap {
  height: 240px;
  overflow: hidden;
  background: var(--sage);
}
.clubs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clubs__body { padding: 28px; }
.clubs__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.clubs__distance {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.clubs__details {
  list-style: none;
  padding: 0;
}
.clubs__details li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--ink-80);
}
.clubs__details li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 3px;
}

/* ═══════════════════════════════════════════════════
   DISCOVER COLUMBUS
   ═══════════════════════════════════════════════════ */
.columbus {
  padding: var(--section-py) 0;
  background: var(--parchment);
}
.columbus__hero {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.columbus__hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.columbus__drive-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(26,22,18,0.88);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 12px 20px;
  text-align: center;
}
.columbus__drive-time {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1.2;
}
.columbus__drive-label {
  font-size: 0.7rem;
  color: var(--parchment);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}
.columbus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.columbus__card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 20px;
  border-top: 3px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.columbus__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.columbus__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.columbus__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.columbus__card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-80);
}
.columbus__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.columbus__gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.columbus__gallery-img:hover {
  transform: scale(1.03);
}
.columbus__cta {
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════ */
.contact {
  padding: var(--section-py) 0;
  background: var(--ink);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__card {
  background: rgba(245, 238, 216, 0.06);
  border: 1px solid rgba(245, 238, 216, 0.12);
  border-radius: 8px;
  padding: 36px;
}
.contact__company {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.contact__person { margin-bottom: 24px; }
.contact__person:last-child { margin-bottom: 0; }
.contact__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 6px;
}
.contact__phone {
  display: inline-flex;
  align-items: center;
  color: var(--gold-lt);
  font-size: 1.05rem;
  font-weight: 500;
}
.contact__phone:hover { color: var(--gold); }

/* Contact action buttons */
.contact__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Table row highlight */
.lots__table tbody tr.is-highlighted {
  background: rgba(184, 145, 42, 0.2);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 238, 216, 0.6);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  background: rgba(245, 238, 216, 0.08);
  border: 1px solid rgba(245, 238, 216, 0.15);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--parchment);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 238, 216, 0.3);
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: #12100d;
  padding: 40px 0 24px;
  border-top: 2px solid var(--gold);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__emblem { width: 36px; height: 36px; opacity: 0.7; }
.footer__company {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--parchment);
}
.footer__address {
  font-size: 0.8rem;
  color: rgba(245, 238, 216, 0.4);
}
.footer__contacts p {
  color: rgba(245, 238, 216, 0.6);
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.footer__contacts a { color: var(--gold-lt); }
.footer__contacts a:hover { color: var(--gold); }
.footer__legal {
  font-size: 0.75rem;
  color: rgba(245, 238, 216, 0.3);
  text-align: center;
  border-top: 1px solid rgba(245, 238, 216, 0.08);
  padding-top: 20px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
/* ── Tablet (max 900px) ── */
@media (max-width: 900px) {
  :root { --section-py: 56px; }

  html, body { overflow-x: hidden; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(26, 22, 18, 0.97);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav__links.is-open {
    transform: translateY(0);
  }
  .nav__links .btn--outline,
  .nav__links .btn--gold {
    width: 100%;
    text-align: center;
  }

  .stats__inner { gap: 8px; flex-wrap: wrap; justify-content: center; }
  .stats__item { padding: 8px 16px; }
  .stats__divider { display: none; }
  .stats__number { font-size: 1.3rem; }

  .lots__aerial-wrap { margin: 0 auto 32px; }
  .highlights__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide .gallery__img { height: 260px; }
  .gallery__item:not(.gallery__item--wide) .gallery__img { height: 180px; }
  .lots__gallery { grid-template-columns: repeat(2, 1fr); }
  .clubs__grid { grid-template-columns: 1fr; }
  .columbus__grid { grid-template-columns: repeat(2, 1fr); }
  .columbus__hero-img { height: 240px; }
  .contact__grid { grid-template-columns: 1fr; }
  .embed-map__frame iframe { min-height: 400px; }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer__brand {
    flex-direction: column;
    gap: 8px;
  }
}

/* ── Phone (max 600px) ── */
@media (max-width: 600px) {
  .hero { height: 65vh; min-height: 400px; }
  .hero__title { font-size: 1.8rem; }
  .hero__sub { font-size: 0.9rem; letter-spacing: 0.08em; }
  .hero__crest { width: 48px; height: 48px; margin-bottom: 12px; }
  .hero__overlay { padding: 60px 16px 48px; }

  .pin__label { font-size: 0.55rem; padding: 3px 7px; }
  .pin__label--lot { font-size: 0.5rem; padding: 3px 6px; }
  .pin--interactive { transform: translate(-50%, -50%) scale(0.85); }

  .lot-detail { width: 200px; top: 8px; right: 8px; }
  .lot-detail__img { height: 100px; }
  .lot-detail__name { font-size: 1.1rem; padding: 10px 12px 2px; }
  .lot-detail__meta { font-size: 0.75rem; padding: 0 12px 12px; }

  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.9rem; margin-bottom: 32px; }

  .stats { padding: 20px 0; }
  .stats__item { padding: 6px 12px; min-width: 80px; }
  .stats__number { font-size: 1.1rem; }
  .stats__label { font-size: 0.6rem; }

  .lots__table { font-size: 0.8rem; }
  .lots__table th { padding: 10px 12px; font-size: 0.65rem; }
  .lots__table td { padding: 10px 12px; }
  .lots__gallery-title { font-size: 1.2rem; margin: 32px 0 16px; }

  .contact__actions { flex-direction: column; align-items: stretch; }
  .contact__actions .btn { text-align: center; }
  .contact__card { padding: 24px; }

  .form-row { grid-template-columns: 1fr; }
  .btn--lg { padding: 14px 24px; font-size: 0.85rem; }

  .lots__gallery { grid-template-columns: 1fr; }
  .lot-card__img { height: 180px; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--wide .gallery__img { height: 200px; }
  .gallery__item:not(.gallery__item--wide) .gallery__img { height: 180px; }

  .dist-grid { grid-template-columns: 1fr; }
  .highlights__bullets li { font-size: 0.88rem; }

  .columbus__grid { grid-template-columns: 1fr; }
  .columbus__hero-img { height: 180px; }
  .columbus__drive-badge { padding: 8px 14px; bottom: 12px; right: 12px; }
  .columbus__drive-time { font-size: 1.2rem; }
  .columbus__card { padding: 18px 16px; }
  .columbus__card-title { font-size: 1rem; }

  .clubs__img-wrap { height: 180px; }
  .clubs__body { padding: 20px; }
  .clubs__name { font-size: 1.3rem; }

  .embed-map__frame iframe { min-height: 300px; }

  .region-map__leaflet { height: 350px; }

  .footer { padding: 28px 0 16px; }
  .footer__legal { font-size: 0.65rem; }
}
