/* ========================================
   Short Term Retreats — Main Stylesheet
   Design: Dark luxury theme with gold/teal accents
   Fonts: Fraunces (headings) + Inter (body)
   ======================================== */

/* Reset and CSS custom properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0F0F10;
  --bone: #F4F1EC;
  --red: #D72638;
  --gold: #C9A46B;
  --teal: #1F4E5F;
  --muted: #B5B0A7;
  --border-sub: rgba(244,241,236,0.08);
  --border-strong: rgba(244,241,236,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* Custom thin scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 99px; }


/* ── FLOATING NAV ──
   Pill-shaped fixed navigation bar with glassmorphism backdrop */

.nav-pill {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 20px 10px 24px;
  background: rgba(15,15,16,0.85);
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  white-space: nowrap;
}

.nav-pill .nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bone); }

/* Hamburger toggle button */
.nav-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.nav-toggle:hover { background: var(--border-sub); border-color: var(--bone); }

/* Mobile nav drawer — slides down from nav pill */
.nav-drawer {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(15,15,16,0.96);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 998;
  backdrop-filter: blur(24px);
}
.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 18px;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  color: var(--bone);
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.15s;
}
.nav-drawer a:hover { background: var(--border-sub); }
.nav-drawer a span { font-size: 12px; color: var(--muted); }

/* Hide desktop links on mobile, show hamburger */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-pill { padding: 10px 12px 10px 20px; gap: 16px; }
}


/* ── SECTIONS ── */
section { position: relative; }


/* ── EYEBROW ──
   Small red label with left-dash used above section titles */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}


/* ── HERO SECTION ──
   Full-viewport landing with animated aurora gradient, grain, and marquee */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 80px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(to top, rgba(15,15,16,0.92) 0%, rgba(15,15,16,0.3) 50%, rgba(15,15,16,0.1) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(31,78,95,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(201,164,107,0.12) 0%, transparent 45%),
    linear-gradient(135deg, #0a1a20 0%, #0F0F10 40%, #1a0810 100%);
}

/* Animated aurora glow behind hero content */
#hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(31,78,95,0.55), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(201,164,107,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 20%, rgba(215,38,56,0.18), transparent 60%);
  filter: blur(40px);
  animation: heroAurora 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroAurora {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-3%, 2%) scale(1.08); }
  100% { transform: translate(2%, -2%) scale(1.05); }
}

/* Film grain overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
#hero .hero-inner, #hero .hero-bg-text { position: relative; z-index: 2; }

/* Infinite scrolling property name marquee */
.hero-marquee {
  margin-top: 56px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.hero-marquee-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  color: rgba(244,241,236,0.12);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-marquee-track .dot { color: var(--red); opacity: 0.6; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Animated gold underline on hero italic word */
.hero-headline em {
  position: relative;
  display: inline-block;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: heroUnderline 2.4s ease-out 1.2s forwards;
}
@keyframes heroUnderline {
  to { transform: scaleX(1); }
}

.hero-inner { max-width: 1400px; }

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(64px, 8.5vw, 128px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 36px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Hero call-to-action buttons row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .hero-ctas { justify-content: center; } }

/* Giant faded text behind hero — "Retreats" */
.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: clamp(160px, 20vw, 300px);
  font-weight: 300;
  font-style: italic;
  color: rgba(244,241,236,0.025);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.04em;
}


/* ── BUTTONS ──
   Shared button styles: Airbnb (red), Vrbo (blue), walkthrough (gold outline),
   primary (red fill), ghost (white outline), disabled (muted) */

.btn-airbnb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid var(--red);
  border-radius: 99px;
  transition: background 0.2s, transform 0.15s, gap 0.2s;
  cursor: pointer;
}
.btn-airbnb:hover { background: #b81e2d; border-color: #b81e2d; transform: translateY(-1px); gap: 16px; }
.btn-airbnb .arr { transition: transform 0.2s; }
.btn-airbnb:hover .arr { transform: translateX(4px); }

.btn-vrbo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3B9AC4;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid #3B9AC4;
  border-radius: 99px;
  transition: background 0.2s, transform 0.15s, gap 0.2s;
  cursor: pointer;
}
.btn-vrbo:hover { background: #2d7fa8; border-color: #2d7fa8; transform: translateY(-1px); gap: 16px; }
.btn-vrbo .arr { transition: transform 0.2s; }
.btn-vrbo:hover .arr { transform: translateX(4px); }

.btn-walkthrough {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid rgba(201,164,107,0.5);
  border-radius: 99px;
  transition: border-color 0.2s, transform 0.15s, gap 0.2s;
  cursor: pointer;
}
.btn-walkthrough:hover { border-color: var(--gold); transform: translateY(-1px); gap: 16px; }
.btn-walkthrough .arr { transition: transform 0.2s; }
.btn-walkthrough:hover .arr { transform: translateX(4px); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid var(--red);
  border-radius: 99px;
  transition: background 0.2s, transform 0.15s, gap 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: #b81e2d; border-color: #b81e2d; transform: translateY(-1px); gap: 16px; }
.btn-primary .arr { transition: transform 0.2s; }
.btn-primary:hover .arr { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--bone);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  transition: border-color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--bone); transform: translateY(-1px); }

.btn-disabled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--border-sub);
  border-radius: 99px;
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}


/* ── SECTION SPACING ── */
.section-pad { padding: 140px 80px; }
@media (max-width: 768px) { .section-pad { padding: 80px 24px; } }
@media (max-width: 768px) { #hero { padding: 0 24px 64px; text-align: center; } }
@media (max-width: 768px) { .hero-sub { margin-left: auto; margin-right: auto; } }

/* Thin horizontal divider between sections */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-sub);
  margin: 0 80px;
  width: calc(100% - 160px);
}
@media (max-width: 768px) {
  .divider { margin: 0 24px; width: calc(100% - 48px); }
}


/* ── PROPERTIES GRID ──
   2-column card grid with hover reveal overlays */

#properties { padding: 140px 80px; }
@media (max-width: 768px) { #properties { padding: 80px 24px; } }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--bone);
}
.section-title em { font-style: italic; color: var(--gold); }

.section-meta {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  text-align: right;
}
@media (max-width: 768px) { .section-meta { text-align: left; } }

.props-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .props-grid { grid-template-columns: 1fr; } }

/* Property card with image zoom on hover */
.prop-card {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.prop-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
}
.prop-card:hover .card-img { transform: scale(1.04); filter: brightness(0.65); }

/* Gradient overlay on card with property info at bottom */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,16,0.9) 0%, rgba(15,15,16,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: background 0.5s;
}
.prop-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(15,15,16,0.97) 0%, rgba(15,15,16,0.5) 60%, rgba(15,15,16,0.1) 100%);
}

/* Reveal-on-hover label and meta info */
.card-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.prop-card:hover .card-label { opacity: 1; transform: translateY(0); }

.card-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--bone);
  margin-bottom: 10px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}
.prop-card:hover .card-meta { opacity: 1; transform: translateY(0); }

.card-rating {
  color: var(--gold);
  font-weight: 500;
}

/* Top-left badge (Guest Favorite, Top 5%, etc.) */
.card-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(15,15,16,0.7);
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  color: var(--gold);
  backdrop-filter: blur(10px);
}

/* Gradient placeholder backgrounds for properties without photos */
.ph-mill-point {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(31,78,95,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(201,164,107,0.25) 0%, transparent 45%),
    linear-gradient(160deg, #061218 0%, #0F1F28 40%, #0F0F10 70%, #0a0608 100%);
}
.ph-galena {
  background:
    radial-gradient(ellipse at 40% 50%, rgba(31,78,95,0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(201,164,107,0.3) 0%, transparent 40%),
    linear-gradient(155deg, #071520 0%, #0d2030 35%, #0F0F10 65%, #0c0908 100%);
}

/* Subtle noise texture on placeholder images */
.ph-mill-point::after,
.ph-galena::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}


/* ── PROPERTY DETAILS ──
   Expanded view for each property: gallery + info in 2-col grid */

.prop-detail {
  padding: 120px 80px;
  border-top: 1px solid var(--border-sub);
}
@media (max-width: 768px) { .prop-detail { padding: 80px 24px; } }

.prop-detail-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1200px) { .prop-detail-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 768px) { .prop-detail-inner { text-align: center; } }

/* 2×2 photo gallery grid */
.prop-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}

.gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  position: relative;
}

.gallery-sub {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.gallery-sub:last-child { border-radius: 0 0 4px 0; }
.gallery-sub:nth-child(2) { border-radius: 0 0 0 4px; }

.gallery-main, .gallery-sub { background: #111; }

.prop-content { padding-top: 12px; }

.prop-number {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.prop-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 10px;
}

.prop-tagline {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--red);
  margin-bottom: 24px;
  line-height: 1.5;
}

.prop-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* 4-column stats bar (rating, reviews, sleeps, bed/bath) */
.prop-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}

.stat-cell {
  background: var(--bg);
  padding: 18px 16px;
  text-align: center;
}

.stat-val {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.02em;
  display: block;
}
.stat-val.gold { color: var(--gold); }
.stat-val.red { color: var(--red); }

.stat-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* Amenity pill chips */
.amenity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
@media (max-width: 768px) { .amenity-chips { justify-content: center; } }

.chip {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  color: var(--muted);
}

/* Guest review quote with decorative opening quote */
.pull-quote {
  border-left: none;
  border: 1px solid rgba(215,38,56,0.3);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-style: italic;
  color: var(--red);
  opacity: 0.5;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 20px;
}
.pull-quote p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 28px;
}

/* Booking links row (Airbnb, Vrbo, Calendar, More Photos) */
.booking-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .booking-row { justify-content: center; } }


/* ── MORE PHOTOS SECTION ──
   2-column card grid linking to full photo galleries per property */

#more-photos {
  padding: 140px 80px;
  border-top: 1px solid var(--border-sub);
}
@media (max-width: 768px) { #more-photos { padding: 80px 24px; } }

.wt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 768px) { .wt-grid { grid-template-columns: 1fr; } }

.wt-card {
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 40px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.wt-card:hover {
  border-color: rgba(244,241,236,0.35);
  transform: translateY(-4px);
  background: rgba(244,241,236,0.02);
}

/* Large faded number in top-right corner of card */
.wt-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 400;
  color: rgba(244,241,236,0.06);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 32px;
  letter-spacing: -0.04em;
}

.wt-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 14px;
  border: 1px solid var(--border-sub);
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 24px;
}

.wt-name {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin-bottom: 8px;
}

.wt-tease {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}


/* ── ABOUT / HOSTS SECTION ──
   2-column layout: headline left, pullquote + stats right */

#about {
  padding: 140px 80px;
  background: rgba(244,241,236,0.025);
  border-top: 1px solid var(--border-sub);
}
@media (max-width: 768px) { #about { padding: 80px 24px; } }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

.about-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--bone);
}
.about-headline em { font-style: italic; color: var(--gold); }

.about-right { padding-top: 8px; }

.about-pullquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--gold);
  line-height: 1.55;
  margin-bottom: 48px;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  opacity: 0.85;
}

/* 3-column aggregate stats (Properties, Reviews, Portfolio Avg) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-sub);
  border: 1px solid var(--border-sub);
  border-radius: 10px;
  overflow: hidden;
}

.stats-cell {
  background: rgba(15,15,16,0.95);
  padding: 28px 24px;
  text-align: center;
}

.stats-big {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--bone);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stats-big.gold { color: var(--gold); }

.stats-lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hosts-byline {
  font-size: 14px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.7;
}
.hosts-byline strong { color: var(--bone); font-weight: 500; }


/* ── CONTACT SECTION ──
   Centered inquiry form + direct booking buttons */

.contact-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#contact {
  padding: 140px 80px;
  border-top: 1px solid var(--border-sub);
  text-align: center;
}
@media (max-width: 768px) { #contact { padding: 80px 24px; } }

.contact-card {
  display: inline-block;
  max-width: 900px;
  width: 100%;
}

.contact-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: 24px;
}
.contact-headline em { font-style: italic; color: var(--gold); }

.contact-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Inquiry form styling */
.inquiry-form {
  max-width: 500px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(244,241,236,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
}
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}
.inquiry-form select { appearance: none; cursor: pointer; }
.inquiry-form select option { background: var(--bg); color: var(--bone); }
.inquiry-form textarea { resize: vertical; min-height: 100px; }
.inquiry-form .form-row { display: flex; gap: 14px; }
@media (max-width: 768px) { .inquiry-form .form-row { flex-direction: column; } }

.inquiry-submit {
  align-self: center;
  padding: 14px 40px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.inquiry-submit:hover { background: #b81e2d; transform: translateY(-1px); }
.inquiry-success { display: none; color: var(--gold); font-size: 15px; text-align: center; margin-top: 12px; }
.inquiry-success.show { display: block; }
.inquiry-error { display: none; color: #ff8f9b; font-size: 15px; text-align: center; margin-top: 12px; }
.inquiry-error.show { display: block; }
.form-divider { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; text-align: center; margin: 24px 0; }


/* ── EMAIL SIGNUP SECTION ──
   Newsletter signup bar above footer */

.email-signup-section {
  padding: 64px 80px;
  text-align: center;
  border-top: 1px solid var(--border-sub);
  background: rgba(31,78,95,0.06);
}
@media (max-width: 768px) { .email-signup-section { padding: 48px 24px; } }

.email-signup-inner { max-width: 520px; margin: 0 auto; }

.email-signup-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 8px;
}

.email-signup-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.email-signup-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 768px) { .email-signup-form { flex-direction: column; } }

.email-signup-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: rgba(244,241,236,0.06);
  border: 1px solid var(--border-sub);
  border-radius: 99px;
  color: var(--bone);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.email-signup-form input[type="email"]:focus { border-color: var(--gold); }
.email-signup-form input[type="email"]::placeholder { color: var(--muted); }

.email-signup-form button {
  padding: 14px 32px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.email-signup-form button:hover { background: #174350; transform: translateY(-1px); }


/* ── FOOTER ──
   3-column grid: brand, locations, nav links */

footer {
  padding: 56px 80px;
  border-top: 1px solid var(--border-sub);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  footer { grid-template-columns: 1fr; text-align: center; padding: 48px 24px; gap: 32px; }
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.footer-brand span { color: var(--muted); font-size: 13px; display: block; margin-top: 4px; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0; }

.footer-locs {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.footer-locs span { display: block; margin-bottom: 4px; }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .footer-links { justify-content: center; } }

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bone); }


/* ── SCROLL REVEAL ANIMATIONS ──
   Elements start hidden and animate in when scrolled into view */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered delays for grouped reveal elements */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }

/* Stat counter transition */
.stat-val, .stats-big { transition: color 0.3s; }

/* Floating orb — ambient teal glow that follows cursor */
.orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(31,78,95,0.12) 0%, transparent 70%);
  transition: left 1.2s cubic-bezier(0.25,0.46,0.45,0.94), top 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
  transform: translate(-50%, -50%);
}

/* Animated red line that grows on scroll-reveal */
.section-line {
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  transition: width 1.2s cubic-bezier(0.16,1,0.3,1);
  margin-bottom: 56px;
}
.section-line.visible { width: 120px; }

/* Subtle shine overlay on photo cards */
.wt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.wt-card:hover::after { opacity: 1; }

/* Gold inner glow on property card hover */
.prop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(201,164,107,0);
  transition: box-shadow 0.4s;
}
.prop-card:hover::before { box-shadow: inset 0 0 0 1px rgba(201,164,107,0.3); }

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .prop-card .card-img { transition: none; }
  .orb { display: none; }
}


/* ── CUSTOM CURSOR ──
   Red dot + ring that follows mouse on desktop */

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s, opacity 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(215,38,56,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), width 0.3s, height 0.3s, opacity 0.2s, border-color 0.3s;
  transform: translate(-50%, -50%);
}
.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: rgba(215,38,56,0.7);
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }


/* ── SCROLL PROGRESS BAR ──
   Thin red bar at top of viewport showing page scroll position */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  z-index: 1000;
  transition: width 0.1s linear;
  width: 0%;
}
