/* Ridgeview Property Group - shared stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0c4e72;
  --navy-dark: #083a56;
  --blue-gray: #89a9ba;
  --gold: #e4a824;
  --gold-light: #eebd52;
  --cream: #eaf2f5;
  --blue-tint: #dbe9ef;
  --off-white: #ffffff;
  --text: #2a2a2a;
  --text-light: #5b6670;
  --border: #dbe6ea;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy-dark);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

/* ---------- Property microsite: Playfair Display headlines (h2/h3 + lead quote) ---------- */
.property-page h2,
.property-page h3,
.property-page .lead-quote {
  font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
}

/* ---------- Property microsite: hero h1 wordmark treatment ---------- */
.property-page .hero h1 {
  font-family: 'Playfair Display', 'Fraunces', Georgia, serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.property-page .hero h1 .h1-sub {
  display: block;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.4em;
  margin-top: 10px;
}

/* ---------- Property microsite: hero translucent card panel ---------- */
.property-page .hero::before {
  background: linear-gradient(180deg, rgba(8,58,86,0.25) 0%, rgba(8,58,86,0.4) 100%);
}
.property-page .hero .hero-card {
  background: rgba(219,233,239,0.85);
  border-radius: 0;
  padding: 2.5rem 2.75rem;
}
.property-page .hero .hero-card .eyebrow { color: #c07f0f; }
.property-page .hero .hero-card h1,
.property-page .hero .hero-card h1 .h1-sub {
  color: #083a56;
}
.property-page .hero .hero-card p.lead {
  color: #1c3a4a;
}
.property-page .hero .hero-card .btn {
  background: #083a56;
  color: #fff;
  border-color: #083a56;
  border-radius: 0;
}
@media (max-width: 600px) {
  .property-page .hero .hero-card { padding: 1.75rem 1.5rem; }
}

p { margin: 0 0 1em; color: var(--text); }

a { color: var(--navy); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.6em;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12.5px 30px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  border: 1.5px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--navy); color: #fff; }

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  border: 1.5px solid #fff;
  transition: background 0.2s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-gold {
  display: inline-block;
  padding: 14px 34px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 2px;
  border: none;
  transition: background 0.2s ease;
  cursor: pointer;
}
.btn-gold:hover { background: var(--navy); }

/* ---------- Header ---------- */
header.site-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 100px;
  width: auto;
  display: block;
}
footer .logo img { height: 82px; filter: brightness(0) invert(1); opacity: 0.9; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav.main-nav li { position: relative; }
nav.main-nav a {
  text-decoration: none;
  color: var(--navy-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--gold); }

nav.main-nav li.has-dropdown > a::after {
  content: '\25BE';
  font-size: 0.65em;
  margin-left: 5px;
  vertical-align: middle;
  display: inline-block;
}

nav.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(8,58,86,0.12);
  z-index: 200;
}
nav.main-nav li.has-dropdown:hover .dropdown-menu,
nav.main-nav li.has-dropdown:focus-within .dropdown-menu {
  display: block;
}
nav.main-nav .dropdown-menu li { padding: 0; }
nav.main-nav .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
}
nav.main-nav .dropdown-menu a:hover { background: var(--cream); color: var(--navy); }

.nav-toggle { display: none; }

@media (max-width: 820px) {
  nav.main-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 20px;
  }
  nav.main-nav ul.open { display: flex; }
  nav.main-nav li { padding: 10px 0; border-top: 1px solid var(--border); }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--navy-dark);
  }
  nav.main-nav .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 4px 0 0 14px;
    min-width: 0;
  }
  nav.main-nav .dropdown-menu li { border-top: none; padding: 6px 0; }
  nav.main-nav li.has-dropdown > a::after { content: ''; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,47,56,0.55) 0%, rgba(32,47,56,0.75) 100%);
}
.hero .container { position: relative; z-index: 1; max-width: 640px; }
.hero h1 { color: #fff; font-size: 3rem; }
.hero p.lead { font-size: 1.15rem; color: #f0ede6; }

.hero.small { padding: 90px 0 70px; }
.hero.small h1 { font-size: 2.3rem; }

.hero.hero-lg { padding: 170px 0 190px; }
.hero.hero-lg {
  background-position: center center;
}
.hero.hero-lg::before {
  display: none;
}
.hero.hero-lg .hero-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  width: 1780px;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero.hero-lg .hero-shape path {
  fill: rgba(8,58,86,0.82);
}
.hero.hero-lg .container {
  margin: 0;
  max-width: 460px;
  padding-left: 64px;
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.alt { background: var(--cream); }

.section-head { max-width: 640px; margin-bottom: 2.2em; }
.section-head .eyebrow::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr !important; }
  .contact-cols { grid-template-columns: 1fr !important; }
  .hero { padding: 110px 0 70px; }
  .hero.hero-lg { padding: 165px 0 105px; }
  .hero.hero-lg .hero-shape {
    display: none;
  }
  .hero.hero-lg::before {
    display: block;
    background: rgba(8,58,86,0.79);
  }
  .hero.hero-lg .container {
    margin: 0;
    max-width: 100%;
    padding-left: 24px;
  }
  .hero h1 { font-size: 2.1rem; }
  h1 { font-size: 2rem; }
  .hero.small h1 { font-size: 1.9rem; }
  .property-page .hero h1 { letter-spacing: 0.08em; }
  .property-page .hero h1 .h1-sub { letter-spacing: 0.24em; }
  .header-inner { padding: 6px 20px; }
  .logo img { height: 56px; }
  footer .logo img { height: 50px; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: 4px;
  padding: 28px;
  transition: border-top-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-top-color: var(--gold); transform: translateY(-3px); }

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.3s ease; filter: grayscale(15%); }
.tile:hover img { transform: scale(1.05); filter: grayscale(0%); }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,78,114,0.45) 0%, rgba(12,78,114,0.55) 55%, rgba(8,58,86,0.88) 100%);
  transition: background 0.3s ease;
}
.tile:hover::after {
  background: linear-gradient(180deg, rgba(12,78,114,0.25) 0%, rgba(12,78,114,0.4) 55%, rgba(8,58,86,0.85) 100%);
}
.tile-label { position: relative; z-index: 1; padding: 18px; font-family: 'Fraunces', serif; font-size: 1.15rem; }
.tile-label small { color: #dbe9ef; }

.photo-block {
  height: 100%;
  min-height: 220px;
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.2s ease;
}
.photo-block img:hover { opacity: 0.88; }
.photo-block img.no-lightbox { cursor: default; }
.photo-block img.no-lightbox:hover { opacity: 1; }

/* ---------- Property microsite: full gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid .photo-block { aspect-ratio: 4 / 5; height: auto; min-height: 0; }
.gallery-grid .photo-block img { aspect-ratio: 4 / 5; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Gallery lightbox ---------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,58,86,0.94);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
}
.lightbox-close:hover { color: var(--gold-light); }
.lightbox-nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.18); color: var(--gold-light); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-overlay.multi .lightbox-nav { display: flex; }
@media (max-width: 700px) {
  .lightbox-nav { width: 42px; height: 42px; font-size: 1.3rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

.stat { text-align: center; }
.stat .num { font-family: 'Fraunces', serif; font-size: 2.1rem; color: var(--gold); display: block; }
.stat .label { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

ul.check-list { list-style: none; padding: 0; margin: 0; }
ul.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
ul.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.placeholder-box {
  border: 1.5px dashed var(--gold);
  background: #fbf3e6;
  border-radius: 4px;
  padding: 28px;
  text-align: center;
  color: #7a5a26;
  font-size: 0.95rem;
}

/* ---------- FAQ accordion ---------- */
details.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
details.faq-item summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  color: var(--navy-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  margin-left: 16px;
  transition: transform 0.2s ease;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { margin-top: 14px; color: var(--text-light); }

.faq-group-title {
  margin-top: 2.4em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* ---------- Contact info list (icon rows) ---------- */
.contact-info-list { list-style: none; margin: 0; padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-list li:last-child { margin-bottom: 0; }
.contact-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--navy);
}
.contact-icon svg { width: 100%; height: 100%; display: block; }
.contact-info-list .hours {
  display: block;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 3px;
}

/* ---------- Forms ---------- */
form.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  margin-top: 18px;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
}
form.contact-form textarea { min-height: 120px; resize: vertical; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-dark);
  color: #cfd6da;
  padding: 56px 0 28px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-mountain-footer-single.svg');
  background-repeat: no-repeat;
  background-position: center -338px;
  background-size: 1400px auto;
  opacity: 0.1;
  pointer-events: none;
}
footer.site-footer .container {
  position: relative;
  z-index: 1;
}
footer.site-footer h4 { color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
footer.site-footer a { color: #cfd6da; text-decoration: none; }
footer.site-footer a:hover { color: var(--gold-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-bottom {
  padding-top: 22px;
  font-size: 0.82rem;
  color: #8d979d;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Photo panel (full-bleed photo + translucent card) ---------- */
.photo-panel-section {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  color: var(--navy-dark);
}
.photo-panel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(1.35) contrast(0.75);
}
.photo-panel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(137,169,186,0.9);
}
.photo-panel-section .container { position: relative; z-index: 1; }
.photo-panel {
  background: rgba(230,240,244,0.93);
  border-radius: 6px;
  padding: 44px 48px;
  max-width: 800px;
}
.photo-panel h1 { margin-bottom: 0.4em; }
.photo-panel .eyebrow { color: var(--navy); }
@media (max-width: 600px) {
  .photo-panel-section { padding: 80px 0 60px; }
  .photo-panel { padding: 30px 26px; }
}

/* ---------- Property microsite: sub-nav ---------- */
.subnav {
  background: var(--navy-dark);
  position: sticky;
  top: 121px;
  z-index: 90;
}
@media (max-width: 600px) {
  .subnav { top: 73px; }
}

/* Offset anchor-link jumps so section headings clear the sticky header + subnav */
#floorplans, #amenities, #gallery, #location, #availability, #faq, #contact {
  scroll-margin-top: 185px;
}
@media (max-width: 600px) {
  #floorplans, #amenities, #gallery, #location, #availability, #faq, #contact {
    scroll-margin-top: 135px;
  }
}
.subnav ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.subnav li { flex: 0 0 auto; }
.subnav a {
  display: block;
  padding: 14px 18px;
  color: #cfd6da;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.subnav a:hover { color: var(--gold-light); }

/* ---------- Property microsite: intro band ---------- */
.intro-band {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #dbe6ea;
  padding: 56px 0;
  overflow: hidden;
}
.intro-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8,58,86,0.93) 0%, rgba(12,78,114,0.85) 100%);
}
.intro-band .container { position: relative; z-index: 1; max-width: 780px; }
.intro-band p { color: #dbe6ea; font-size: 1.1rem; margin: 0; }
.intro-band strong { color: #fff; }
.intro-band p.lead-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.45;
  color: #fff;
  max-width: 660px;
}
@media (max-width: 600px) {
  .intro-band p.lead-quote { font-size: 1.25rem; }
}

/* ---------- Property microsite: intro-band photo strip layout ---------- */
/* Fluid/shrinkable so left inset (photo padding) and right inset (text padding)
   stay equal at every viewport width down to the 900px stack breakpoint. */
.intro-band.with-photos { padding: 0; }
.intro-band.with-photos .container { max-width: 1400px; margin: 0 auto; padding: 0; }
.intro-band.with-photos .intro-grid {
  display: flex;
  align-items: stretch;
  gap: clamp(24px, 8vw, 120px);
}
.intro-band.with-photos .intro-photos {
  display: flex;
  gap: clamp(8px, 1.5vw, 16px);
  flex: 0 1 932px;
  min-width: 0;
  padding: 56px 0 56px 24px;
}
.intro-band.with-photos .intro-photos a {
  display: block;
  flex: 1 1 0;
  min-width: 0;
}
.intro-band.with-photos .intro-photos img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.6;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  transition: opacity 0.2s ease;
}
.intro-band.with-photos .intro-photos a:hover img { opacity: 0.85; }
.intro-band.with-photos .intro-text {
  flex: 1 1 300px;
  min-width: 200px;
  display: flex;
  align-items: center;
  padding: 28px 24px 28px 0;
}
.intro-band.with-photos .intro-text p.lead-quote {
  max-width: none;
  font-size: 1.3rem;
}
@media (max-width: 900px) {
  .intro-band.with-photos .intro-grid { flex-direction: column; gap: 0; }
  .intro-band.with-photos .intro-photos { padding: 24px 24px 0; flex: 0 1 auto; }
  .intro-band.with-photos .intro-text { flex: 1 1 auto; padding: 24px; min-width: 0; }
}

/* ---------- Property microsite: full-bleed photo break ---------- */
.photo-break {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 40px 24px;
}
.photo-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,58,86,0.4) 0%, rgba(8,58,86,0.6) 100%);
}
.photo-break .container { position: relative; z-index: 1; }
.photo-break .eyebrow { color: var(--gold-light); }
.photo-break h2 {
  color: #fff;
  font-size: 2.1rem;
  letter-spacing: 0.02em;
  max-width: 620px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .photo-break { min-height: 220px; }
  .photo-break h2 { font-size: 1.55rem; }
}

/* ---------- Property microsite: framed photo (for pairing with dark sections) ---------- */
.photo-frame {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Property microsite: floor plan cards ---------- */
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.plan-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.plan-card-body { padding: 20px 22px; }
.plan-card-body h3 { margin-bottom: 4px; }
.plan-card-body .sqft { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Property microsite: amenity list ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.amenity-grid dt {
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.amenity-grid dd {
  margin: 0 0 22px;
  color: #cfd6da;
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .amenity-grid { grid-template-columns: 1fr; }
}
.amenity-grid.single { grid-template-columns: 1fr; }
section.amenities-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}
section.amenities-section .container { position: relative; z-index: 1; }

.pattern-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/ridgeview-topo-pattern.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 38%, black 62%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 38%, black 62%, black 100%);
}

.pattern-band-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/ridgeview-topo-pattern.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 0%, black 15%, transparent 50%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 15%, transparent 50%);
}
section.amenities-section .eyebrow { color: var(--gold-light); }
section.amenities-section h2 { color: #fff; }

/* ---------- Property microsite: attractions list ---------- */
.attractions-list { list-style: none; margin: 0 0 20px; padding: 0; }
.attractions-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: #dbe6ea;
  font-size: 0.95rem;
}
.attractions-list h4 {
  color: var(--gold-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
}
.map-embed {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.map-embed iframe { display: block; width: 100%; height: 320px; border: 0; }
