/* ==========================================================================
   BBN Stays - Property Page Styles
   Shared across all 5 property pages. Inherits design tokens from site.css.
   ========================================================================== */

/* Fallback tokens in case this file loads without site.css.
   These match site.css. Do not diverge. */
:root {
  --navy: #002B30;
  --green: #389078;
  --ink: #1F2A2C;
  --mist: #EEF5F3;
  --warm-white: #FAF7F2;
  --sand: #D9B48F;
  --border: rgba(31, 42, 44, 0.12);
  --max-w: 1200px;
}

/* ==========================================================================
   SECONDARY IN-PAGE NAV (Photos, Amenities, Location, Reviews, Inquire)
   Sits under the main sticky nav. Also sticky.
   ========================================================================== */
.subnav {
  position: sticky;
  top: 64px; /* height of main nav */
  z-index: 40;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.subnav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 2px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.subnav a:hover { color: var(--green); border-bottom-color: var(--green); }

/* ==========================================================================
   PROPERTY HERO
   Full-bleed background image. Dark overlay. Content vertically centered.
   ========================================================================== */
.p-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,43,48,0.45) 0%, rgba(0,43,48,0.65) 100%);
}
.p-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
  max-width: 900px;
}
.p-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 20px;
  font-weight: 500;
}
.p-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: var(--warm-white);
}
.p-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sand);
}
.p-hero-tag {
  font-size: 18px;
  color: rgba(250, 247, 242, 0.9);
  margin: 0 auto 32px;
  max-width: 620px;
  line-height: 1.5;
}
.p-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 43, 48, 0.55);
  border: 1px solid rgba(217, 180, 143, 0.4);
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.9);
}
.p-hero-price strong {
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-white);
}
.p-hero-hook {
  font-size: 14px;
  color: var(--sand);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.p-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.p-hero-cta .btn {
  padding: 14px 28px;
  font-size: 15px;
}

/* ==========================================================================
   PHOTO GRID (magazine layout: 1 large + 4 small)
   ========================================================================== */
.photo-grid-section {
  background: var(--warm-white);
  padding: 24px 0 40px;
}
.photo-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.photo-grid .tile {
  overflow: hidden;
  background: var(--mist);
  cursor: pointer;
  position: relative;
}
.photo-grid .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-grid .tile:hover img { transform: scale(1.03); }
.photo-grid .tile-lg {
  grid-row: 1 / span 2;
  grid-column: 1;
}
.show-all-photos {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--warm-white);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.15s, box-shadow 0.15s;
}
.show-all-photos:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
@media (max-width: 720px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 2fr 1fr;
    aspect-ratio: 4 / 3;
  }
  .photo-grid .tile-lg { grid-column: 1 / span 2; grid-row: 1; }
}

/* ==========================================================================
   GALLERY LIGHTBOX MODAL
   ========================================================================== */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 22, 0.96);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-modal.open { display: flex; }
.gallery-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--warm-white);
  font-size: 14px;
  z-index: 210;
}
.gallery-close {
  background: none;
  border: 0;
  color: var(--warm-white);
  font-size: 28px;
  cursor: pointer;
  padding: 8px 14px;
  line-height: 1;
}
.gallery-close:hover { color: var(--sand); }
.gallery-stage {
  max-width: 92vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-stage img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,43,48,0.6);
  border: 1px solid rgba(250,247,242,0.2);
  color: var(--warm-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.gallery-nav:hover { background: var(--green); }
.gallery-nav.prev { left: 24px; }
.gallery-nav.next { right: 24px; }

/* ==========================================================================
   #1 REASON SECTION
   ========================================================================== */
.reason-section {
  background: var(--warm-white);
  padding: 100px 24px 80px;
}
.reason-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}
.reason-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 24px;
}
.reason-inner h2 em {
  font-style: italic;
  color: var(--green);
}
.reason-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 48px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}
@media (max-width: 640px) {
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   FALL CALLOUT (big image + caption)
   ========================================================================== */
.season-callout {
  padding: 40px 24px 60px;
  background: var(--warm-white);
}
.season-callout-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.season-callout-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.season-callout-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: var(--warm-white);
  max-width: 460px;
}
.season-callout-caption h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.15;
}
.season-callout-caption p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: rgba(250, 247, 242, 0.9);
}
.season-callout-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,43,48,0) 40%, rgba(0,43,48,0.75) 100%);
  pointer-events: none;
}

/* ==========================================================================
   OWNER-OCCUPIED DISCLOSURE (quiet section)
   ========================================================================== */
.quiet-note {
  background: var(--mist);
  padding: 60px 24px;
  text-align: center;
}
.quiet-note-inner {
  max-width: 720px;
  margin: 0 auto;
}
.quiet-note p {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  font-style: italic;
}
.quiet-note .label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ==========================================================================
   AMENITIES GRID
   ========================================================================== */
.amenities-section {
  background: var(--warm-white);
  padding: 100px 24px;
}
.amenities-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.amenities-header {
  text-align: center;
  margin-bottom: 56px;
}
.amenities-header h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}
.amenities-header h2 em {
  font-style: italic;
  color: var(--green);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.amenity-card {
  padding: 32px 24px;
  background: var(--mist);
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 43, 48, 0.08);
}
.amenity-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  margin-bottom: 16px;
}
.amenity-card h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.2;
}
.amenity-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin: 0;
}
.amenity-note {
  margin-top: 32px;
  padding: 16px 20px;
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  opacity: 0.75;
  text-align: center;
}

/* ==========================================================================
   LOCATION & NEARBY (Restaurants + Activities two-column)
   ========================================================================== */
.location-section {
  background: var(--mist);
  padding: 100px 24px;
}
.location-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.location-header {
  text-align: center;
  margin-bottom: 56px;
}
.location-header h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
}
.location-header h2 em {
  font-style: italic;
  color: var(--green);
}
.location-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 720px) {
  .location-lists { grid-template-columns: 1fr; gap: 32px; }
}
.location-lists h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand);
}
.local-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.local-item:last-child { border-bottom: 0; }
.local-item .name {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 4px;
}
.local-item .desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
}
.local-item .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(56, 144, 120, 0.1);
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ==========================================================================
   "A DIFFERENT KIND OF STAY" CLOSING NARRATIVE
   ========================================================================== */
.narrative-section {
  background: var(--warm-white);
  padding: 100px 24px;
  text-align: center;
}
.narrative-inner {
  max-width: 760px;
  margin: 0 auto;
}
.narrative-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 32px;
}
.narrative-inner h2 em {
  font-style: italic;
  color: var(--green);
}
.narrative-inner p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 20px;
}
.narrative-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   REVIEWS CAROUSEL
   ========================================================================== */
.reviews-section {
  background: var(--mist);
  padding: 100px 24px;
}
.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.reviews-header {
  margin-bottom: 40px;
}
.reviews-header h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--navy);
  margin: 0 0 12px;
}
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.85;
  margin-top: 4px;
}
.reviews-badge .stars { color: var(--sand); font-size: 16px; letter-spacing: 2px; }
.review-slide {
  display: none;
  padding: 32px 40px;
  min-height: 240px;
}
.review-slide.active { display: block; }
.review-stars {
  color: var(--sand);
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.review-body {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 24px;
  font-style: italic;
}
.review-attr {
  font-size: 14px;
  color: var(--ink);
  opacity: 0.85;
}
.review-attr .name {
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.review-arrow {
  background: transparent;
  border: 1px solid var(--navy);
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.review-arrow:hover { background: var(--navy); color: var(--warm-white); }
.review-dots {
  display: flex;
  gap: 8px;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: background 0.15s;
}
.review-dot.active { background: var(--green); }

/* ==========================================================================
   INQUIRE BLOCK (navy, property-specific)
   ========================================================================== */
.inquire-block {
  background: var(--navy);
  color: var(--warm-white);
  padding: 100px 24px;
  text-align: center;
}
.inquire-inner {
  max-width: 720px;
  margin: 0 auto;
}
.inquire-inner h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--warm-white);
  margin: 0 0 20px;
  line-height: 1.1;
}
.inquire-inner h2 em {
  font-style: italic;
  color: var(--sand);
}
.inquire-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.85);
  margin: 0 0 32px;
}
.inquire-inner .btn {
  background: var(--sand);
  color: var(--navy);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 0;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}
.inquire-inner .btn:hover { background: var(--warm-white); }

/* ==========================================================================
   POLICIES STRIP (small, honest, sits above footer)
   ========================================================================== */
.policies-strip {
  background: var(--warm-white);
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.policies-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  font-size: 13px;
  color: var(--ink);
  opacity: 0.8;
}
.policy-item strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 1;
}
