/* ==========================================================================
   Urban Hideaway — Static Site Stylesheet
   Fonts: Roboto, Roboto Slab, La Belle Aurore (Google Fonts)
   Icons: inline SVG (Font Awesome & flaticon removed)
   ========================================================================== */

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #393939;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  color: #232323;
}

.script {
  font-family: "La Belle Aurore", cursive;
  font-weight: 400;
  color: #53624E;
  font-size: 1.6em;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   SVG ICON SIZING (replaces icon fonts)
   -------------------------------------------------------------------------- */

/* Inline icons inside info-box, property stat spans */
.info-box__icon svg {
  width: 1.8rem;
  height: 1.8rem;
  display: block;
}

.info-box--card .info-box__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

/* Inline stats-bar icons */
.stat-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  display: inline-block;
  flex-shrink: 0;
}

/* Footer social icon */
.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  vertical-align: -0.2rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------------------------- */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 90px 0;
}

.section--sm {
  padding: 60px 0;
}

.section--lg {
  padding: 120px 0;
}

.section--cream {
  background-color: #F3F3F0;
}

.section--dark {
  background-color: #232323;
  color: #fff;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* --------------------------------------------------------------------------
   HEADER / NAV
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  border-bottom-color: rgba(0,0,0,0.07);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.site-header.scrolled .nav-link {
  color: #393939;
}

.site-header.scrolled .logo {
  color: #53624E;
}

.site-header.scrolled .nav-cta {
  border-color: #FF5A5F;
  color: #FF5A5F !important;
  background: transparent;
}

.site-header.scrolled .nav-cta:hover {
  background: #FF5A5F;
  color: #fff !important;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100px;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Logo — center column ── */
.logo {
  display: flex;
  align-items: center;
  justify-self: center;
  text-decoration: none;
}

.logo-img {
  height: 90px;
  width: auto;
  display: block;
  transition: filter 0.3s;
}

.site-header.scrolled .logo-img {
  filter: brightness(0);
}

/* ── Nav — left column ── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: start;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #fff;
}

.main-nav .nav-link.active {
  border-bottom: 2px solid rgba(255,255,255,0.75);
  padding-bottom: 1px;
}

.site-header.scrolled .main-nav .nav-link.active {
  border-bottom-color: #53624E;
}

/* ── Header CTA — right column ── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: transparent;
  color: rgba(255,255,255,0.95) !important;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: #FF5A5F;
  border-color: #FF5A5F;
  color: #fff !important;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.site-header.scrolled .menu-toggle span {
  background: #393939;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(35, 35, 35, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: #fff;
}

.mobile-nav .nav-cta {
  font-size: 1rem;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-color: #232323;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.22) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2rem;
}

.hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA: hidden on desktop, shown on mobile */
.hero .btn--primary {
  display: none;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn--primary {
  background: #FF5A5F;
  color: #fff;
  border: 2px solid #FF5A5F;
}

.btn--primary:hover {
  background: #e5474c;
  border-color: #e5474c;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn--outline-dark {
  background: transparent;
  color: #53624E;
  border: 2px solid #53624E;
}

.btn--outline-dark:hover {
  background: #53624E;
  color: #fff;
}

/* --------------------------------------------------------------------------
   SECTION HEADERS
   -------------------------------------------------------------------------- */

.section-label {
  font-family: "La Belle Aurore", cursive;
  color: #53624E;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.section-intro {
  font-size: 1rem;
  color: #5a5a5a;
  max-width: 640px;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   TWO-COLUMN FEATURE SECTION (homepage section 3)
   -------------------------------------------------------------------------- */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.feature-split__img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.feature-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-split__img--placeholder {
  background: #53624E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-split__content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   INFO BOXES (amenity icons)
   -------------------------------------------------------------------------- */

.info-box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-box-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.info-box__icon {
  font-size: 1.8rem;
  color: #B99D75;
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.info-box__icon--green {
  color: #53624E;
}

.info-box__body {}

.info-box__title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #232323;
  line-height: 1.3;
}

.info-box__text {
  font-size: 0.8rem;
  color: #767676;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   STATS ROW (homepage: "Discover Penticton's Urban Hideaway")
   -------------------------------------------------------------------------- */

.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-value {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 2.5rem;
  color: #53624E;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* --------------------------------------------------------------------------
   PHOTO GRID (property gallery)
   -------------------------------------------------------------------------- */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 6px;
}

.photo-grid__item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.photo-grid__item:hover img {
  transform: scale(1.04);
}

.photo-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.photo-grid--portrait .photo-grid__item {
  aspect-ratio: 2/3;
}

/* --------------------------------------------------------------------------
   CTA CARDS (3-column features)
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.cta-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.cta-card:hover .cta-card__bg {
  transform: scale(1.04);
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.cta-card__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.cta-card__title {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Placeholder card backgrounds */
.cta-card--lakes    .cta-card__bg { background-color: #2a5f8f; }
.cta-card--wine     .cta-card__bg { background-color: #6b2d3e; }
.cta-card--outdoor  .cta-card__bg { background-color: #3a5f3a; }

/* --------------------------------------------------------------------------
   PULLQUOTE / TAGLINE SECTION
   -------------------------------------------------------------------------- */

.pullquote {
  text-align: center;
  padding: 80px 2rem;
}

.pullquote__text {
  font-family: "La Belle Aurore", cursive;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #53624E;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   BG IMAGE SECTION (sunshine / penticton panorama)
   -------------------------------------------------------------------------- */

.bg-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #53624E;
  color: #fff;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.bg-section__inner {
  position: relative;
  z-index: 1;
  padding: 100px 2rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.bg-section__inner h2,
.bg-section__inner h3 {
  color: #fff;
}

/* --------------------------------------------------------------------------
   SUNSHINE SECTION (300+ days — bg image + portrait gallery)
   -------------------------------------------------------------------------- */

.sunshine-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 2rem;
  text-align: center;
}

.sunshine-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
}

.sunshine-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.sunshine-section__text {
  margin-bottom: 3rem;
}

.sunshine-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.sunshine-gallery__item {
  overflow: hidden;
  aspect-ratio: 2/3;
}

.sunshine-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.sunshine-gallery__item:hover img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   PAGE TITLE BLOCK (white bar below stay page hero image)
   -------------------------------------------------------------------------- */

.page-title-block {
  background: #fff;
  padding: 2.5rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.page-title-block__h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #393939;
  margin-bottom: 0.4rem;
}

/* contrast-safe subtitle (#888 → #666 = 5.77:1 on white) */
.page-title-block__sub {
  font-family: "La Belle Aurore", cursive;
  font-size: 1.15rem;
  color: #666;
}

/* --------------------------------------------------------------------------
   OUTSIDE SPACE PHOTO STRIP (3 images in a row)
   -------------------------------------------------------------------------- */

.outside-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 1.5rem 0 2.5rem;
}

.outside-gallery__item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.outside-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.outside-gallery__item:hover img {
  transform: scale(1.04);
}

/* Two-column info-box variant */
.info-box-grid--two-col {
  grid-template-columns: 1fr 1fr;
}

/* Three-column card variant (Family Friendly) */
.info-box-grid--three-col {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-box--card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.info-box--card .info-box__icon {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0d8cc;
  border-radius: 8px;
  background: #F3F3F0;
}

/* --------------------------------------------------------------------------
   NEWSLETTER SECTION
   -------------------------------------------------------------------------- */

.newsletter {
  position: relative;
  background-image: image-set(url("../images/footer-bg.webp") type("image/webp"), url("../images/footer-bg.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.newsletter__inner {
  position: relative;
  z-index: 1;
  padding: 110px 2rem;
}

.newsletter h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.newsletter p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 1rem;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: none;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: #393939;
}

.newsletter-form button {
  padding: 0.85rem 1.6rem;
  background: #FF5A5F;
  color: #fff;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #e5474c;
}

.newsletter-checkbox {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.newsletter-checkbox a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: #232323;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 60px;
}

/* contrast-raised: 0.4 → 0.6 opacity = 6.22:1 on #232323 */
.footer-col h4 {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  display: block;
}

.footer-col a:hover {
  color: #fff;
}

.footer-col .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col .social-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* contrast-raised: 0.4 → 0.6 opacity = 6.22:1 on #232323 */
.footer-bottom p,
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   PENTICTON INFO SECTION
   -------------------------------------------------------------------------- */

.penticton-section {
  background: #F3F3F0;
  padding: 100px 0 300px; /* extra bottom to allow overlap with next section */
}

/* --------------------------------------------------------------------------
   PROPERTY HIGHLIGHTS (stay page header stats)
   -------------------------------------------------------------------------- */

.property-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: 2rem 0;
}

.property-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.property-stat i {
  color: #B99D75;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   PAGE HERO (stay/snowbird pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  max-height: 550px;
  display: flex;
  align-items: flex-end;
  background-color: #53624E;
  color: #fff;
  padding-top: 100px; /* account for header */
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%);
  z-index: 1;
}

/* Bare variant: full-width image only, no overlay, no text */
.page-hero--bare {
  display: block;
  height: 400px;
  min-height: unset;
  max-height: unset;
  padding-top: 100px; /* header offset */
}

.page-hero--bare::before {
  display: none;
}

.page-hero--bare .page-hero__content {
  display: none;
}

/* Hero image element — replaces CSS background-image for LCP improvement */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-hero__title {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.page-hero__sub {
  font-family: "La Belle Aurore", cursive;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
}

/* --------------------------------------------------------------------------
   AMENITY SECTIONS (stay/snowbird)
   -------------------------------------------------------------------------- */

.amenity-section {
  padding: 80px 0;
}

/* h4 → h2 in amenity sections; heading hierarchy fix */
.amenity-section h2 {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #53624E;
  border-bottom: 1px solid #e0dcd7;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
}

.amenity-section h2:first-child {
  margin-top: 0;
}

/* --------------------------------------------------------------------------
   MAP PLACEHOLDER
   -------------------------------------------------------------------------- */

.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(10%);
  object-fit: cover;
  object-position: center;
}

/* --------------------------------------------------------------------------
   CONTENT PAGE (privacy / terms)
   -------------------------------------------------------------------------- */

.content-page {
  padding: 120px 0 80px;
}

.content-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.content-page .script {
  display: block;
  margin-bottom: 3rem;
}

.content-page h2 {
  font-size: 1.2rem;
  margin: 2.5rem 0 0.75rem;
  color: #53624E;
}

/* Sub-section headings (e.g. "a." and "b." items in privacy policy) */
.content-page h3 {
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
  color: #5a5a5a;
}

.content-page p,
.content-page li {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.content-page ol {
  padding-left: 1.5rem;
  list-style: decimal;
}

.content-page a {
  color: #53624E;
  text-decoration: underline;
}

.content-page .meta {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

/* --------------------------------------------------------------------------
   AVAILABILITY EMBED PLACEHOLDER
   -------------------------------------------------------------------------- */

.availability-note {
  background: #F3F3F0;
  border-left: 4px solid #53624E;
  padding: 1.5rem 2rem;
  border-radius: 0 3px 3px 0;
  margin: 2rem 0;
}

.availability-note p {
  font-size: 0.95rem;
  color: #5a5a5a;
}

/* --------------------------------------------------------------------------
   TWO-COLUMN CONTENT GRID (stay/snowbird pages)
   -------------------------------------------------------------------------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col--wide-left {
  grid-template-columns: 3fr 2fr;
}

@media (max-width: 900px) {
  .two-col,
  .two-col--wide-left {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   BACK TO TOP
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split__img {
    min-height: 340px;
  }

  .feature-split__content {
    padding: 60px 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .photo-grid__item--tall {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .header-cta .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero .btn--primary {
    display: inline-block;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .section {
    padding: 60px 0;
  }

  .info-box-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .map-embed {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .info-box-grid {
    grid-template-columns: 1fr;
  }

  .property-stats {
    flex-direction: column;
    gap: 0.75rem;
  }
}

