:root {
  --cream: #faf7f2;
  --cream-deep: #f1ebe1;
  --charcoal: #201d1a;
  --charcoal-soft: #4a453f;
  --gold: #b8874f;
  --gold-deep: #96683a;
  --line: #e2d9c9;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0 0 0.4em; color: var(--charcoal); }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.75em;
}
.eyebrow-center { text-align: center; }
.section-title-center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover { background: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-full { width: 100%; text-align: center; background: var(--charcoal); color: var(--cream); border: none; font-family: var(--sans); }
.btn-full:hover { background: var(--gold-deep); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--charcoal);
}
.wordmark.small { font-size: 18px; margin-bottom: 6px; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold-deep); }
.nav-cta {
  border: 1px solid var(--charcoal);
  padding: 9px 20px;
  border-radius: 2px;
  color: var(--charcoal) !important;
}
.nav-cta:hover { background: var(--charcoal); color: var(--cream) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); display: block; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.35) 45%, rgba(20,18,15,0.72) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 720px;
  padding: 0 24px;
}
.hero-content .eyebrow { color: #e9d3b0; text-align: center; }
.hero h1 {
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.15em;
}
.hero-address {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f2ead9;
  margin-bottom: 0.6em;
}
.hero-tagline {
  font-size: 18px;
  color: #f2ead9;
  max-width: 560px;
  margin: 0 auto 2em;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 22px;
  opacity: 0.8;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Overview */
.overview { padding: 120px 0; }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.overview-text h2 { font-size: 40px; }
.overview-text p { color: var(--charcoal-soft); font-size: 16px; }
.overview-media img { border-radius: 3px; box-shadow: 0 24px 48px -24px rgba(32,29,26,0.35); }

/* Amenities */
.amenities { padding: 100px 0; background: var(--cream-deep); }
.amenities h2.section-title-center { font-size: 40px; margin-bottom: 64px; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.amenity { text-align: center; padding: 0 8px; }
.amenity-icon { display: inline-block; font-size: 20px; color: var(--gold); margin-bottom: 14px; }
.amenity h3 { font-size: 19px; margin-bottom: 6px; }
.amenity p { font-size: 14px; color: var(--charcoal-soft); margin: 0; }

/* Gallery */
.gallery { padding: 100px 0; }
.gallery h2.section-title-center { font-size: 40px; margin-bottom: 56px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.3s;
}
.gallery-grid img:hover { opacity: 0.88; }
.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item:nth-child(3n+1) img { height: 100%; min-height: 576px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15, 13, 11, 0.94);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 2px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  opacity: 0.8;
}
.lightbox-close { top: 24px; right: 32px; font-size: 32px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: #d8cdbb;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* Neighborhood */
.neighborhood { padding: 100px 0; background: var(--cream-deep); }
.neighborhood h2.section-title-center { font-size: 40px; margin-bottom: 56px; }
.neighborhood-grid {
  column-count: 3;
  column-gap: 4px;
}
.neighborhood-tile {
  position: relative;
  display: block;
  margin: 0 0 4px;
  overflow: hidden;
  cursor: default;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.neighborhood-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: saturate(0.92) brightness(0.94);
}
.neighborhood-tile:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.neighborhood-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.02) 55%, rgba(20,18,15,0.82) 100%);
  transition: background 0.4s ease;
  pointer-events: none;
}
.neighborhood-tile:hover::after { background: linear-gradient(180deg, rgba(20,18,15,0) 62%, rgba(20,18,15,0.88) 100%); }
.tile-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 20px;
  margin: 0;
  color: var(--white);
  transform: translateY(6px);
  transition: transform 0.4s ease;
}
.neighborhood-tile:hover .tile-text { transform: translateY(0); }
.tile-text h3 {
  color: var(--white);
  font-size: 21px;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}
.tile-text h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
  transition: width 0.4s ease;
}
.neighborhood-tile:hover .tile-text h3::after { width: 56px; }
.tile-text p { color: #f0e6d4; font-size: 13px; margin: 0; line-height: 1.5; }
.neighborhood-blurb {
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
  color: var(--charcoal-soft);
  font-size: 16px;
  line-height: 1.75;
}

/* Location */
.location { padding: 100px 0; background: var(--cream-deep); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.location-text h2 { font-size: 38px; }
.location-text p { color: var(--charcoal-soft); font-size: 16px; }
.location-map { border-radius: 3px; overflow: hidden; box-shadow: 0 24px 48px -24px rgba(32,29,26,0.3); }
.location-map iframe { width: 100%; height: 380px; border: 0; display: block; }

/* Contact */
.contact { padding: 110px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}
.contact-text h2 { font-size: 38px; }
.contact-text p { color: var(--charcoal-soft); font-size: 16px; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.contact-detail .contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-detail a:hover { color: var(--gold-deep); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--white);
  padding: 40px;
  border-radius: 3px;
  border: 1px solid var(--line);
}
.contact-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
}
.contact-form label:nth-child(6),
.contact-form label:nth-child(7) { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  color: var(--charcoal);
  text-transform: none;
  letter-spacing: normal;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button { grid-column: 1 / -1; margin-top: 6px; }

/* Footer */
.site-footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand p, .footer-meta p { margin: 0 0 4px; font-size: 13px; color: var(--charcoal-soft); }
.footer-meta { text-align: right; }

/* Responsive */
@media (max-width: 900px) {
  .overview-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhood-grid { column-count: 2; }
  .gallery-item:nth-child(3n+1) { grid-row: auto; }
  .gallery-item:nth-child(3n+1) img { height: 280px; min-height: 0; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form label:nth-child(6), .contact-form label:nth-child(7) { grid-column: auto; }
  .overview { padding: 80px 0; }
  .amenities, .gallery, .neighborhood, .location { padding: 72px 0; }
  .contact { padding: 80px 0; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 64px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 24px 32px; gap: 20px; border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: transform 0.3s ease; }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .amenities-grid { grid-template-columns: 1fr; }
  .overview-text h2, .location-text h2, .contact-text h2 { font-size: 32px; }
  .amenities h2.section-title-center,
  .gallery h2.section-title-center,
  .neighborhood h2.section-title-center { font-size: 32px; margin-bottom: 40px; }
  .contact-form { padding: 28px 22px; }
  .location-map iframe { height: 300px; }
}

@media (max-width: 480px) {
  .section-inner { padding: 0 20px; }
  .header-inner { padding: 14px 20px; }
  .wordmark { font-size: 19px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 0 16px; }
  .hero-address { font-size: 18px; }
  .hero-tagline { font-size: 15px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px !important; min-height: 0 !important; }
  .neighborhood-grid { column-count: 1; }
  .overview-text h2 { font-size: 28px; }
  .amenities h2.section-title-center,
  .gallery h2.section-title-center,
  .neighborhood h2.section-title-center { font-size: 28px; }
  .amenities-grid { gap: 28px 20px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .location-map iframe { height: 260px; }
  .btn { padding: 14px 24px; }
}
