:root {
  --gold: #5ba3d9;
  --gold-light: #8cc4e8;
  --dark: #0a0e1a;
  --dark-card: #141b30;
  --cream: #ffffff;
  --text-dark: #011e48;
  --text-muted: #666666;
  --border-dark: #232c47;
  --border-light: #dbe3ec;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-nav: 'Montserrat', Arial, sans-serif;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.gold { color: var(--gold); }

.eyebrow {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow-line { width: 32px; height: 1px; background: var(--gold); display: inline-block; }

.serif-heading {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 20px;
}

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.rule { display: block; width: 48px; height: 1px; background: var(--gold); margin: 20px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--text-dark); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: #fff; border-color: var(--gold); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-gold-outline { background: transparent; color: var(--text-dark); border-color: var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--text-dark); }
.btn-block { width: 100%; padding: 18px; }

/* ---------- Media Placeholder ---------- */
.media-placeholder {
  position: relative;
  background: repeating-linear-gradient(135deg, #e9edf2, #e9edf2 10px, #dde3ea 10px, #dde3ea 20px);
  border: 2px dashed #aab6c4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  color: #5c6673;
}
.media-placeholder::before {
  content: attr(data-label);
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 16px;
  background: rgba(255,255,255,0.75);
  border-radius: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.25) 100%);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-group { display: flex; align-items: center; gap: 14px; }
.brand {
  font-family: var(--font-nav);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.brand-tagline { font-weight: 500; color: var(--text-muted); }
.brand-logo-link { display: flex; align-items: center; }
.brand-logo { height: 40px; width: auto; display: block; }

.main-nav {
  display: flex;
  gap: 24px;
  font-family: var(--font-nav);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.main-nav a { position: relative; }
.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions .btn { font-size: 0.85rem; padding: 18px 32px; }
.social-icons { display: flex; gap: 14px; }
.social-icons svg { width: 18px; height: 18px; fill: currentColor; }
.social-icons a { color: var(--text-dark); }
.social-icons a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .main-nav { order: 3; width: 100%; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.hero-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 10%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px 90px 100px;
  margin: 0 auto 0 0;
}

@media (max-width: 700px) {
  .hero-content { padding-left: 32px; }
}
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow-line { background: var(--gold-light); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
}
.hero-sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 32px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--dark);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track { display: flex; width: max-content; animation: scroll-left 40s linear infinite; }
.marquee-group { display: flex; align-items: center; white-space: nowrap; }
.marquee-group span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  padding: 0 20px;
}
.marquee-group .dot { color: var(--gold); font-size: 0.7rem; padding: 0 4px; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
  background: var(--cream);
}
.about-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  color: var(--text-dark);
  margin: 0 0 64px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-col { display: flex; flex-direction: column; gap: 20px; }
.about-photo {
  aspect-ratio: 3637/4124;
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 4px;
}
.about-businesscard {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 28px rgba(1,30,72,0.14);
}

.about-content .serif-heading { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--text-dark); }

.accordion { margin-top: 32px; }
.accordion-item { border-top: 1px solid var(--border-light); }
.accordion-item:last-child { border-bottom: 1px solid var(--border-light); }
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
}
.accordion-trigger .plus {
  font-family: var(--font-nav);
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.accordion-trigger[aria-expanded="true"] .plus { transform: rotate(45deg); }

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 400ms ease;
}
.accordion-panel-inner { overflow: hidden; min-height: 0; }
.accordion-panel-inner .body-text { margin: 0 0 22px; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-col { order: -1; }
}

/* ---------- Who I Am (homepage teaser) ---------- */
.who-i-am {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--cream);
}
.who-i-am-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: start;
}
.who-i-am-media .reel { aspect-ratio: 9/16; min-height: 280px; }
video.reel { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; background: var(--dark); display: block; }
video.reel:fullscreen,
video.reel:-webkit-full-screen {
  object-fit: contain;
  border-radius: 0;
}
.video-embed {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dark);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
  display: block;
}
.who-i-am-media .brandmark {
  grid-column: span 2;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
}

.who-i-am-content .serif-heading { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--text-dark); }

@media (max-width: 860px) {
  .who-i-am { grid-template-columns: 1fr; }
  .who-i-am-media { order: -1; }
}

/* ---------- Stats ---------- */
.stats {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 56px 24px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.stat:first-child { border-left: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.suffix { font-family: var(--font-nav); font-size: 1rem; color: var(--gold); font-weight: 600; }
.stat-label {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
}

/* ---------- Services ---------- */
.services { background: var(--dark); padding: 100px 32px; }
.services-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}
.service-cards {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  min-height: 260px;
}
.service-eyebrow {
  font-family: var(--font-nav);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin: 0 0 16px;
}
.service-title { color: rgba(255,255,255,0.85); font-size: 1.7rem; }
.service-card .body-text { color: rgba(255,255,255,0.6); }
.arrow-link {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.25s ease;
}
.arrow-link:hover { background: var(--gold); color: var(--text-dark); }
@media (max-width: 900px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* ---------- Listings ---------- */
.listings { max-width: 1300px; margin: 0 auto; padding: 100px 32px; }
.listings-heading { text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 56px; }
.listing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.listing-media { aspect-ratio: 4/3; width: 100%; height: auto; object-fit: cover; display: block; margin-bottom: 24px; border-radius: 4px; }
.listing-address { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 0 0 12px; }
.listing-card .btn-gold-outline {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.listing-card .btn-gold-outline:hover {
  background: var(--gold-light);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(91,163,217,0.45);
}
@media (max-width: 860px) {
  .listing-cards { grid-template-columns: 1fr; }
}

.section-divider { border-top: 1px solid var(--text-dark); }

/* ---------- Neighborhood / Region Map ---------- */
.neighborhood {
  background: var(--cream);
  padding: 100px 32px;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.neighborhood-content { padding-left: 56px; }
.neighborhood-content .serif-heading { font-size: clamp(2rem, 3.5vw, 2.8rem); }

@media (max-width: 860px) {
  .neighborhood-content { padding-left: 0; }
}
.neighborhood-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 24px; margin-top: 28px; }
.neighborhood-list li { padding: 6px 0; font-weight: 500; }
.neighborhood-list a {
  color: inherit;
  display: inline-block;
  padding: 3px 10px;
  margin-left: -10px;
  border-radius: 4px;
  transition: color 0.25s ease, background-color 0.25s ease;
}
.neighborhood-list a:hover,
.neighborhood-list a:focus-visible,
.neighborhood-list a.is-active {
  color: #fff;
  background: var(--text-dark);
}

@media (max-width: 860px) {
  .neighborhood { grid-template-columns: 1fr; }
}

.region-map-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 48px;
  overflow: hidden;
  touch-action: manipulation;
}

.map-muted { fill: #dfe2e6; stroke: #fff; stroke-width: 3; opacity: 0.85; }

.region {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 400ms ease-in-out, filter 400ms ease-in-out;
  outline: none;
}
.region-shape {
  fill: #f0f1ee;
  stroke: #fff;
  stroke-width: 3;
  transition: fill 400ms ease-in-out, stroke 400ms ease-in-out;
}
.region-label {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  fill: var(--text-dark);
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  transition: fill 400ms ease-in-out;
}
.region-label-lg { font-size: 22px; }

.region:hover,
.region:focus-visible,
.region.is-active {
  transform: translateY(-7px) scale(1.045);
  filter: drop-shadow(0 14px 20px rgba(1,30,72,0.35));
}
.region:hover .region-shape,
.region:focus-visible .region-shape,
.region.is-active .region-shape {
  fill: var(--text-dark);
}
.region:hover .region-label,
.region:focus-visible .region-label,
.region.is-active .region-label {
  fill: #fff;
}
.region:focus-visible .region-shape,
.region.is-active .region-shape {
  stroke: var(--gold);
  stroke-width: 4;
}

@media (max-width: 700px) {
  .region-label { font-size: 30px; }
  .region-label-lg { font-size: 44px; }
}
@media (max-width: 420px) {
  .region-label { font-size: 36px; }
  .region-label-lg { font-size: 53px; }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--dark);
  padding: 100px 0;
}
.contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-content .serif-heading { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 6px; }
.contact-sub { color: rgba(255,255,255,0.6); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-top: 0; }
.contact-content .body-text { color: rgba(255,255,255,0.55); max-width: 420px; }

.contact-form fieldset { border: none; padding: 0; margin: 0 0 20px; }
.contact-form legend { font-family: var(--font-nav); font-size: 0.85rem; font-weight: 600; color: #fff; margin-bottom: 10px; padding: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.required { font-weight: 400; color: rgba(255,255,255,0.4); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  color: #fff;
  font-family: var(--font-body);
  padding: 12px 14px;
  border-radius: 2px;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: 1px solid var(--gold); }
.form-note { color: var(--gold-light); font-size: 0.85rem; margin-top: 14px; }

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  padding: 80px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  color: rgba(255,255,255,0.5);
}
.footer-brand .serif-heading { color: rgba(255,255,255,0.75); font-size: 1.8rem; margin-bottom: 16px; }
.footer-logo { max-width: 220px; height: auto; display: block; filter: brightness(0) invert(1); }
.site-footer h4 {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin: 0 0 12px;
}
.site-footer p { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.site-footer a { color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-legal {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
  margin: 0 0 8px;
}
.footer-legal p:last-child { margin-bottom: 0; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.footer-legal a:hover { color: var(--gold); }
@media (max-width: 700px) {
  .site-footer { grid-template-columns: 1fr; }
}

/* ---------- Area Pages (service area landing pages) ---------- */
.section-heading { text-align: center; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 56px; }

.area-overview { max-width: 760px; margin: 0 auto; padding: 100px 32px 80px; }
.area-overview .body-text { margin: 0 0 20px; }
.area-overview .body-text:last-child { margin-bottom: 0; }

.market-stats-section { max-width: 1300px; margin: 0 auto; padding: 0 32px 100px; }
.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
}
.stat-card-icon { width: 34px; height: 34px; margin: 0 auto 16px; color: var(--gold); }
.stat-card-icon svg { width: 100%; height: 100%; }
.stat-card-value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--text-dark); margin: 0 0 6px; }
.stat-card-label { font-family: var(--font-nav); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .market-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .market-stats { grid-template-columns: 1fr; } }

.area-gallery { max-width: 1300px; margin: 0 auto; padding: 0 32px 100px; }
.area-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-tile { aspect-ratio: 4/3; width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.gallery-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 30px rgba(1,30,72,0.18); }
@media (max-width: 700px) { .area-gallery-grid { grid-template-columns: 1fr 1fr; } }

.why-live-here { background: var(--dark); padding: 100px 32px; }
.why-live-here .section-heading { color: rgba(255,255,255,0.85); }
.feature-cards { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--dark-card); border: 1px solid var(--border-dark); border-radius: 6px; padding: 32px 28px; }
.feature-card-icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 18px; }
.feature-card-icon svg { width: 100%; height: 100%; }
.feature-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #fff; margin: 0 0 10px; }
.feature-card .body-text { color: rgba(255,255,255,0.6); margin: 0; }
@media (max-width: 1000px) { .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-cards { grid-template-columns: 1fr; } }

.area-education { max-width: 760px; margin: 0 auto; padding: 100px 32px; text-align: center; }
.area-education .eyebrow { justify-content: center; }
.area-education .body-text { margin: 0 auto; }

.attractions { max-width: 1300px; margin: 0 auto; padding: 0 32px 100px; }
.attraction-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.attraction-media { aspect-ratio: 4/3; width: 100%; height: auto; object-fit: cover; display: block; margin-bottom: 18px; border-radius: 6px; }
.attraction-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin: 0 0 8px; color: var(--text-dark); }
.attraction-card .body-text { font-size: 0.92rem; margin: 0; }
@media (max-width: 1000px) { .attraction-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .attraction-cards { grid-template-columns: 1fr; } }

.nearby-areas { max-width: 1300px; margin: 0 auto; padding: 0 32px 100px; }
.nearby-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nearby-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nearby-card:hover,
.nearby-card:focus-visible { transform: translateY(-6px); box-shadow: 0 20px 34px rgba(1,30,72,0.2); }
.nearby-media { aspect-ratio: 4/3; width: 100%; height: auto; object-fit: cover; display: block; margin-bottom: 0; border-radius: 0; border-width: 0 0 1px; }
.nearby-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 16px 20px 4px; color: var(--text-dark); }
.nearby-desc { font-family: var(--font-body); font-size: 0.9rem; color: var(--text-muted); margin: 0 20px 20px; }
@media (max-width: 860px) { .nearby-cards { grid-template-columns: 1fr; } }

.area-cta { background: var(--dark); padding: 100px 32px; text-align: center; }
.area-cta .serif-heading { color: #fff; }
.area-cta .body-text { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0 auto 32px; }
.area-cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
