:root {
  --bap-cream: #f5f0e8;
  --bap-warm-white: #faf8f4;
  --bap-charcoal: #1c1c1a;
  --bap-deep: #111110;
  --bap-gold: #b8965a;
  --bap-gold-light: #d4aa72;
  --bap-muted: #7a7570;
  --bap-border: rgba(184, 150, 90, 0.25);
}

.bap-nav,
.bap-hero,
.bap-stats-bar,
.bap-about,
.bap-features,
.bap-gallery,
.bap-amenities,
.bap-location,
.bap-contact,
.bap-footer {
  font-family: Jost, sans-serif;
}

.bap-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(245, 240, 232, 0.94);
  border-bottom: 1px solid var(--bap-border);
}

.bap-nav-logo img {
  height: 52px;
  display: block;
}

.bap-nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bap-nav-links a {
  text-decoration: none;
  color: var(--bap-charcoal);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bap-nav-cta,
.bap-btn-primary {
  background: var(--bap-gold);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  font-weight: 600;
  padding: 12px 22px;
  display: inline-block;
}

.bap-hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}

.bap-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.bap-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 16, 0.72), rgba(17, 17, 16, 0.2));
}

.bap-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 48px 80px;
}

.bap-hero-tag {
  color: var(--bap-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-bottom: 16px;
}

.bap-hero-title,
.bap-section-title,
.bap-location-cards h3,
.bap-contact-form-title {
  font-family: "Cormorant Garamond", serif;
}

.bap-hero-title {
  font-size: clamp(44px, 8vw, 94px);
  line-height: 1.04;
  color: #fff;
  margin: 0 0 16px;
}

.bap-hero-subtitle,
.bap-hero-price {
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
}

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

.bap-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  padding: 12px 22px;
}

.bap-stats-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--bap-charcoal);
  border-top: 2px solid var(--bap-gold);
}

.bap-stat-item {
  padding: 22px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.bap-stat-icon {
  color: var(--bap-gold-light);
  margin-bottom: 8px;
}

.bap-stat-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.bap-about,
.bap-amenities-layout,
.bap-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.bap-about,
.bap-features,
.bap-gallery,
.bap-amenities,
.bap-location,
.bap-contact,
.bap-footer {
  padding: 80px 48px;
}

.bap-about {
  background: var(--bap-warm-white);
  align-items: center;
}

.bap-about-visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.bap-about-accent {
  width: 120px;
  height: 120px;
  border: 1px solid var(--bap-border);
  margin-top: 16px;
}

.bap-section-tag {
  color: var(--bap-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  margin-bottom: 12px;
}

.bap-section-title {
  font-size: clamp(36px, 5vw, 62px);
  color: var(--bap-charcoal);
  line-height: 1.1;
  margin: 0 0 16px;
}

.bap-section-body {
  color: var(--bap-muted);
  max-width: 720px;
  line-height: 1.8;
}

.bap-mt {
  margin-top: 18px;
}

.bap-about-quote {
  margin-top: 24px;
  border-left: 2px solid var(--bap-gold);
  padding-left: 16px;
}

.bap-about-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.bap-features {
  background: var(--bap-charcoal);
}

.bap-white {
  color: #fff;
}

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

.bap-body-light {
  color: rgba(255, 255, 255, 0.75);
}

.bap-features-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.bap-feature-card {
  background: var(--bap-charcoal);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.bap-feature-num {
  color: var(--bap-gold);
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
}

.bap-feature-title {
  color: #fff;
}

.bap-gallery {
  background: var(--bap-cream);
}

.bap-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 280px;
  gap: 4px;
}

.bap-gallery-item {
  overflow: hidden;
}

.bap-gallery-item.is-tall {
  grid-row: span 2;
}

.bap-gallery-item img,
.bap-amenities-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bap-amenities {
  background: var(--bap-warm-white);
}

.bap-amenities-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.bap-amenity-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-bottom: 1px solid var(--bap-border);
  padding: 10px 0;
}

.bap-amenity-dot {
  width: 6px;
  height: 6px;
  background: var(--bap-gold);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}

.bap-amenities-right {
  min-height: 500px;
}

.bap-location {
  background: var(--bap-cream);
}

.bap-location-header {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 32px;
}

.bap-center,
.bap-full {
  max-width: 100%;
  text-align: center;
}

.bap-location-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bap-loc-card {
  background: var(--bap-warm-white);
  border: 1px solid var(--bap-border);
  padding: 24px;
}

.bap-loc-icon {
  color: var(--bap-gold);
  margin-bottom: 8px;
}

.bap-location-map-wrap {
  margin-top: 28px;
}

.bap-contact {
  background: var(--bap-charcoal);
  gap: 0;
}

.bap-contact-left,
.bap-contact-right {
  padding: 48px;
}

.bap-contact-left {
  background: var(--bap-deep);
}

.bap-contact-form-title {
  color: #fff;
  font-size: 32px;
  margin: 0 0 18px;
}

.bap-form-wrap,
.bap-form-note {
  color: rgba(255, 255, 255, 0.75);
}

.bap-footer {
  background: var(--bap-deep);
}

.bap-footer-logo img {
  height: 52px;
  filter: brightness(10);
  opacity: 0.8;
}

.bap-footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.bap-footer-bottom p,
.bap-footer-links a,
.bap-disclaimer {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.bap-footer-links {
  display: flex;
  gap: 20px;
}

.bap-footer-links a {
  text-decoration: none;
}

.bap-disclaimer {
  margin-top: 12px;
}

@media (max-width: 1024px) {
  .bap-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bap-location-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .bap-stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .bap-nav,
  .bap-about,
  .bap-features,
  .bap-gallery,
  .bap-amenities,
  .bap-location,
  .bap-contact,
  .bap-footer,
  .bap-hero-content {
    padding: 24px;
  }

  .bap-nav-links {
    display: none;
  }

  .bap-about,
  .bap-amenities-layout,
  .bap-contact,
  .bap-gallery-grid {
    grid-template-columns: 1fr;
  }

  .bap-gallery-grid {
    grid-template-rows: none;
  }

  .bap-gallery-item,
  .bap-gallery-item.is-tall {
    grid-row: auto;
    height: 260px;
  }

  .bap-stats-bar,
  .bap-features-grid,
  .bap-location-cards,
  .bap-amenities-list {
    grid-template-columns: 1fr;
  }

  .bap-contact-left,
  .bap-contact-right {
    padding: 24px;
  }
}
