/* ============================================
   TRAVELLIR — Premier Rentals
   Premium Design System v2.0
   Luxury Real Estate Aesthetic
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette — Matched to travellirmtn.png logo */
  --navy-950: #0E1B3D;
  --navy-900: #142352;
  --navy-800: #1A2A5C;
  --navy-700: #1E3268;
  --navy-600: #243D7A;
  --navy-500: #2E4F94;
  --navy-400: #3A64AA;
  --navy-300: #5A84C4;

  /* (Gold palette removed — brand uses --logo-red) */

  /* Slate — light text for dark backgrounds */
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;

  /* Logo red accent ("ir" in logo) */
  --logo-red: #CC1A1A;
  --logo-red-dark: #A81515;


  --cream:        #FAF8F3;
  --cream-warm:   #F5F0E5;
  --ivory:        #FEFCF7;
  --white:        #FFFFFF;
  --white-95:     rgba(255,255,255,0.95);
  --white-90:     rgba(255,255,255,0.90);
  --white-80:     rgba(255,255,255,0.80);
  --white-70:     rgba(255,255,255,0.70);
  --white-50:     rgba(255,255,255,0.50);
  --white-30:     rgba(255,255,255,0.30);
  --white-20:     rgba(255,255,255,0.20);
  --white-10:     rgba(255,255,255,0.10);
  --white-06:     rgba(255,255,255,0.06);
  --white-03:     rgba(255,255,255,0.03);

  --dark:         #0E0E0E;
  --dark-90:      rgba(14,14,14,0.90);
  --dark-80:      rgba(14,14,14,0.80);
  --dark-60:      rgba(14,14,14,0.60);
  --dark-40:      rgba(14,14,14,0.40);
  --dark-20:      rgba(14,14,14,0.20);
  --dark-10:      rgba(14,14,14,0.10);
  --dark-06:      rgba(14,14,14,0.06);

  --success: #2A8A56;
  --error:   #C94040;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'DM Serif Display', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-2xs: 0.125rem;
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-6xl: 10rem;

  /* Border Radius */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   18px;
  --radius-2xl:  28px;
  --radius-3xl:  40px;
  --radius-full: 9999px;

  /* Elevation */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl:    0 24px 60px rgba(0,0,0,0.18);
  --shadow-2xl:   0 40px 80px rgba(0,0,0,0.24);
  --shadow-red:   0 6px 30px rgba(204,26,26,0.20);
  --shadow-red-lg: 0 16px 60px rgba(204,26,26,0.20);
  --shadow-navy:  0 6px 30px rgba(11,21,38,0.40);
  --shadow-navy-lg: 0 20px 60px rgba(11,21,38,0.50);
  --shadow-inner: inset 0 1px 3px rgba(0,0,0,0.12);

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   500ms;
  --duration-slower: 800ms;

  /* Layout */
  --max-width: 1320px;
  --max-width-narrow: 960px;
  --header-height: 88px;
  --header-height-sm: 72px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.85);
  background: linear-gradient(180deg, #060d1f 0%, #0a1428 30%, #0d1a35 60%, #0E2048 100%);
  background-attachment: fixed;
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.005em;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--duration-normal) var(--ease-out);
}

ul, ol { list-style: none; }

::selection {
  background: var(--logo-red);
  color: var(--white);
}

/* ---------- Typography ---------- */
.heading-display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.heading-section {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.015em;
}

.heading-card {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
}

.text-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.text-small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.text-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--logo-red);
  display: block;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}



.section { padding: var(--space-5xl) 0; }

/* ---------- Decorative Dividers ---------- */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.ornament-divider__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,26,26,0.45), transparent);
}
.ornament-divider__icon {
  font-size: 1rem;
  color: var(--logo-red);
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 15px 36px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(204, 26, 26, 0.30);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 60px rgba(204, 26, 26, 0.40);
}

.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn--outline:hover {
  background: var(--white-10);
  border-color: var(--white-70);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--dark-20);
}

.btn--outline-dark:hover {
  border-color: var(--navy-600);
  color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-navy);
}

.btn--navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy-lg);
}



/* ----------------------------------------
   HEADER / NAV
   ---------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-slow) var(--ease-out);
  background: transparent;
  box-shadow: none;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: opacity var(--duration-slow) var(--ease-out);
  opacity: 1;
}

.header--scrolled {
  height: var(--header-height-sm);
  background: rgba(10, 20, 40, 0.88);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 1px 0 rgba(193,39,45,0.08), 0 4px 24px rgba(0,0,0,0.3);
}

.header--scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(204,26,26,0.15), transparent);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  height: 72px;
  width: auto;
  opacity: 0.9;
  filter: brightness(1.8) contrast(1.1);
  mix-blend-mode: lighten;
  transition: height var(--duration-normal) var(--ease-out), opacity var(--duration-normal) var(--ease-out), filter var(--duration-normal) var(--ease-out), mix-blend-mode var(--duration-normal);
}

.header__logo:hover {
  opacity: 1;
}

.header--scrolled .header__logo {
  height: 58px;
  opacity: 1;
  filter: brightness(1.8) contrast(1.1);
  mix-blend-mode: lighten;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.header__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-normal) var(--ease-out);
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.header--scrolled .header__link {
  color: rgba(255,255,255,0.85);
  text-shadow: none;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--logo-red), var(--logo-red-dark));
  transition: width var(--duration-normal) var(--ease-out);
}

.header__link:hover,
.header__link.active { color: var(--white); }
.header--scrolled .header__link:hover,
.header--scrolled .header__link.active { color: var(--white); }
.header__link:hover::after,
.header__link.active::after { width: 100%; }

.header__cta {
  padding: 10px 24px;
  font-size: 0.78rem;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

.header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #5BA8F5;
  box-shadow: 0 0 6px rgba(91,168,245,0.5), 0 0 12px rgba(91,168,245,0.2);
  position: absolute;
  left: 11px;
  transition: all var(--duration-fast) var(--ease-out);
}

/* Darker bars when header is scrolled (white background) */
.header--scrolled .header__mobile-toggle span {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 6px rgba(255,255,255,0.2);
}

.header__mobile-toggle span:nth-child(1) { top: 10px; }
.header__mobile-toggle span:nth-child(2) { top: 17px; }
.header__mobile-toggle span:nth-child(3) { top: 24px; }

.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}
.header__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
}



/* ----------------------------------------
   HERO
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950) url('assets/images/snowshoe-hero-fall.jpg') center 35% / cover no-repeat;
  overflow: hidden;
}

/* Refined multi-layer scrim: semi-transparent navy blue overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,32,72,0.65) 0%, rgba(14,32,72,0.30) 30%, rgba(14,32,72,0.22) 55%, rgba(14,32,72,0.60) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Hide all decorative overlay divs — they were burying the image */
.hero__gradient,
.hero__particles,
.hero__particle,
.hero__grid {
  display: none !important;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: var(--space-3xl);
}

.hero__content { padding: var(--space-3xl) 0; }

.hero__content--centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.9s var(--ease-out) 0.15s both;
}

.hero__eyebrow-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.hero__eyebrow-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(90deg,
    var(--logo-red) 0%,
    #ff4444 30%,
    #fff 50%,
    #ff4444 70%,
    var(--logo-red) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerRed 3.5s linear infinite;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 8px 16px 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.9s var(--ease-out) 0.2s both;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,0.4);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.9s var(--ease-out) 0.35s both;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 10px rgba(0,0,0,0.8);
}

.hero__title-line {
  display: block;
}

.hero__title-accent {
  display: block;
  font-style: italic;
  position: relative;
}

/* Shimmer Red Text */
@keyframes shimmerRed {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.text-shimmer-red {
  background: linear-gradient(
    90deg,
    var(--logo-red-dark) 0%,
    var(--logo-red) 25%,
    #ff6b6b 50%,
    var(--logo-red) 75%,
    var(--logo-red-dark) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmerRed 3.5s ease-in-out 1 forwards;
  display: inline-block;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.9s var(--ease-out) 0.5s both;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 3px 20px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.8);
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.9s var(--ease-out) 0.65s both;
}

/* Hero stats bar — glassmorphism pill */
.hero__stats {
  display: flex;
  gap: 0;
  margin-top: var(--space-3xl);
  padding: var(--space-lg) var(--space-2xl);
  background:
    radial-gradient(ellipse at 15% 50%, rgba(193,39,45,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(212,165,83,0.12) 0%, transparent 55%),
    linear-gradient(135deg, rgba(10,20,45,0.85) 0%, rgba(26,42,74,0.80) 50%, rgba(15,25,50,0.85) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(193,39,45,0.15);
  border-radius: var(--radius-xl);
  animation: fadeInUp 0.9s var(--ease-out) 0.8s both;
  box-shadow:
    0 4px 24px rgba(7,14,26,0.4),
    0 0 60px rgba(193,39,45,0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 0 var(--space-xl);
  position: relative;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}

/* Hero image mosaic — REMOVED (replaced by full-bleed background) */

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: fadeInUp 1s var(--ease-out) 1.4s both;
  color: var(--white-40);
}

.hero__scroll-cue span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-40);
}

.hero__scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--logo-red);
  border-radius: var(--radius-full);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

/* ----------------------------------------
   TRUST BAR / LOGOS
   ---------------------------------------- */
.trust-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-lg) 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--logo-red);
  white-space: nowrap;
}

.trust-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.12);
}

.trust-bar__items {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__wordmark {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.trust-bar__wordmark-dot {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
}

.trust-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(193,39,45,0.1);
  border: 1px solid rgba(193,39,45,0.25);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.trust-bar__badge:hover {
  background: rgba(193,39,45,0.2);
}

/* ----------------------------------------
   PROPERTIES SECTION
   ---------------------------------------- */
.properties {
  padding: var(--space-5xl) 0;
  background: transparent;
  position: relative;
}

.properties__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.properties__header .text-label { margin-bottom: var(--space-md); }
.properties__header .heading-section { margin-bottom: var(--space-md); }
.properties__header .text-body { max-width: 520px; margin: 0 auto; }

/* Filter tabs */
.properties__filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-3xl);
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: transparent;
  color: var(--dark-60);
  border: 1.5px solid var(--dark-10);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.filter-tab:hover {
  border-color: var(--navy-500);
  color: var(--navy-700);
}

.filter-tab.active {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.properties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) {
  .properties__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .properties__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PROPERTY CARD — Airbnb-inspired redesign
   Clean, borderless, image-first with rich micro-interactions
   ══════════════════════════════════════════════════════════════ */
.property-card {
  background: #F8F5EF;
  border: 1px solid rgba(14,27,61,0.08);
  border-radius: 16px;
  overflow: visible;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,0.08) inset;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 1px 0 rgba(255,255,255,0.1) inset;
  border-color: rgba(193,39,45,0.2);
}

.property-card--featured {
  display: flex;
  flex-direction: column;
}

/* ── Image / Carousel container ── */
.property-card__image {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy-900);
}

.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.property-card:hover .property-card__image img { transform: scale(1.04); }

.property-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,14,26,0.30) 100%);
  pointer-events: none;
  border-radius: 16px;
}

/* ── Carousel ── */
.property-card__carousel {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy-900);
}

.property-card__carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7,14,26,0.22) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 16px;
  transition: opacity 0.3s;
}
.property-card:hover .property-card__carousel::after {
  opacity: 0.7;
}

.property-card__slides {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  scrollbar-width: none;
}
.property-card__slides::-webkit-scrollbar { display: none; }

.property-card__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-width: 0;
  scroll-snap-align: start;
  overflow: hidden;
}

.property-card__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.property-card__slide img.loaded {
  opacity: 1;
}

.property-card:hover .property-card__slide img { transform: scale(1.04); }

/* ── Arrow nav ── */
.property-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.85);
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.95);
  color: #222;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.property-card__arrow.hidden { display: none; }

.property-card__arrow svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.property-card__arrow--prev { left: 12px; }
.property-card__arrow--next { right: 12px; }

.property-card:hover .property-card__arrow:not(.hidden),
.property-card__carousel:focus-within .property-card__arrow:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.property-card__arrow:hover {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
  transform: translateY(-50%) scale(1.08);
}

/* ── Dot indicators ── */
.property-card__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
}

.property-card__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.property-card__dot.active {
  background: #fff;
  width: 16px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .property-card__carousel,
  .property-card__image { height: 240px; }
}

/* ── Badges (overlaid on image) ── */
.property-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: flex;
  gap: 6px;
  pointer-events: none;
}

.property-card__badge-item {
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #111;
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1px 6px rgba(0,0,0,0.14);
  border: none;
}

.property-card__badge-item--popular {
  background: linear-gradient(135deg, var(--logo-red), #a51d1d);
  color: #fff;
}

.property-card__badge-item--new {
  background: #111;
  color: #fff;
}

/* ── Tavern Suites Gold Badge — Premium Shimmer ── */
.property-card__badge-item--collection {
  background: linear-gradient(
    105deg,
    #7a5000 0%,
    #c8870a 18%,
    #f5c842 32%,
    #ffe484 42%,
    #f5c842 52%,
    #d4940f 65%,
    #a86c00 80%,
    #f0b429 92%,
    #7a5000 100%
  );
  background-size: 200% 100%;
  color: #3a1f00;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45), 0 -1px 0 rgba(0,0,0,0.22);
  letter-spacing: 0.1em;
  box-shadow:
    0 2px 8px rgba(180,110,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.38),
    inset 0 -1px 0 rgba(0,0,0,0.18);
  animation: goldShimmer 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep overlay */
.property-card__badge-item--collection::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.55) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: goldShimmerSwipe 3s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes goldShimmer {
  0%   { background-position: 100% 0; }
  50%  { background-position:   0% 0; }
  100% { background-position: 100% 0; }
}

@keyframes goldShimmerSwipe {
  0%   { background-position: 200% 0; opacity: 0; }
  30%  { opacity: 1; }
  60%  { background-position: -50% 0; opacity: 0; }
  100% { background-position: -50% 0; opacity: 0; }
}

/* ── Heart / Save button ── */
.property-card__favorite {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease-spring);
  border: none;
  cursor: pointer;
  z-index: 4;
}

.property-card__favorite:hover {
  transform: scale(1.15);
}

.property-card__favorite svg {
  width: 22px;
  height: 22px;
  fill: rgba(0,0,0,0.35);
  stroke: rgba(255,255,255,0.95);
  stroke-width: 2;
  transition: fill 0.2s ease, stroke 0.2s ease;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

.property-card__favorite.active svg {
  fill: #E05252;
  stroke: #E05252;
  filter: none;
}

/* ── Card body (below image) ── */
.property-card__body {
  padding: 13px 4px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card--featured .property-card__body {
  padding: 16px 4px 14px;
}

/* Row 1: location + rating (same line, Airbnb-style) */
.property-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

/* Location line — muted, small, above title */
.property-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(14,27,61,0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  margin-bottom: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-card__location svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: rgba(14,27,61,0.55);
  stroke-width: 2;
  flex-shrink: 0;
}

/* Title */
.property-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-950);
  margin: 5px 0 3px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card--featured .property-card__title {
  font-size: 1.1rem;
}

/* Inline amenity summary (beds · baths · guests) */
.property-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 6px 0 10px;
  padding: 0;
  border: none;
}

.property-card__amenity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.80rem;
  color: rgba(14,27,61,0.55);
  font-weight: 400;
}

.property-card__amenity::before {
  content: '·';
  color: rgba(14,27,61,0.3);
  font-size: 1rem;
  line-height: 1;
}
.property-card__amenity:first-child::before {
  display: none;
}

.property-card__amenity svg {
  display: none; /* icon-free on card, Airbnb style */
}

/* Footer: price left, rating right */
.property-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.property-card__price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy-950);
  line-height: 1.3;
}

.property-card__price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: rgba(14,27,61,0.55);
}

/* Rating pill — right side of footer */
.property-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-900);
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
  white-space: nowrap;
}

.property-card__rating svg {
  width: 12px;
  height: 12px;
  fill: var(--logo-red);
  stroke: none;
}

/* Direct booking tag — shown below price */
.property-card__direct-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.70rem;
  font-weight: 600;
  color: #059669;
  letter-spacing: 0.02em;
  margin-top: 3px;
}

.property-card__direct-tag svg {
  width: 11px;
  height: 11px;
  stroke: #059669;
  fill: none;
  stroke-width: 2.5;
}

.property-card__cta {
  margin-top: auto;
  padding-top: var(--space-xl);
}

/* ── Skeleton loading state ── */
.property-card-skeleton {
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

/* ── Staggered entrance animation ── */
@keyframes cardFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.property-card.reveal.is-visible {
  animation: cardFadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* ----------------------------------------
   EXPERIENCE SECTION
   ---------------------------------------- */
.experience {
  padding: var(--space-5xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250,248,243,0.6));
  pointer-events: none;
}

.experience .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.experience__image-stack {
  position: relative;
  height: 580px;
}

.experience__image-main {
  position: absolute;
  top: 0; left: 0;
  width: 76%;
  height: 72%;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.experience__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__image-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  height: 56%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}

.experience__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience__float-card {
  position: absolute;
  top: 46%;
  left: -28px;
  background: var(--navy-800);
  color: var(--white);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  z-index: 4;
  border: 1px solid rgba(255,255,255,0.08);
  animation: float 4.5s ease-in-out infinite;
}

.experience__float-card-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.experience__float-card-label {
  font-size: 0.76rem;
  color: var(--white-60);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* Second float card */
.experience__award-card {
  position: absolute;
  top: -24px;
  right: -20px;
  background: linear-gradient(135deg, var(--logo-red), rgba(204,26,26,0.8));
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px rgba(204,26,26,0.22);
  z-index: 4;
  animation: float 5s ease-in-out 1s infinite;
}

.experience__award-card-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.experience__award-card-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.experience__content .text-label { margin-bottom: var(--space-md); }
.experience__content .heading-section { margin-bottom: var(--space-lg); }
.experience__content .text-body { margin-bottom: var(--space-2xl); }

.experience__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.experience__feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-06);
  background: var(--ivory);
  transition: all var(--duration-fast) var(--ease-out);
}

.experience__feature:hover {
  border-color: rgba(204,26,26,0.25);
  background: rgba(204,26,26,0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.experience__feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, rgba(204,26,26,0.08), rgba(204,26,26,0.25));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(204,26,26,0.12);
}

.experience__feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--logo-red-dark);
  fill: none;
  stroke-width: 1.5;
}

.experience__feature-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  margin-bottom: 3px;
}

.experience__feature-desc {
  font-size: 0.78rem;
  color: var(--dark-40);
  line-height: 1.55;
}

/* ----------------------------------------
   LOCATIONS SECTION
   ---------------------------------------- */
.locations {
  padding: var(--space-5xl) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

.locations__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.locations__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204,26,26,0.10), transparent);
  top: -200px; right: -150px;
}

.locations__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58,90,138,0.12), transparent);
  bottom: -100px; left: -100px;
}

.locations__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.locations__header .text-label {
  color: var(--logo-red);
}

.locations__header .heading-section {
  color: var(--white);
}

.locations__header .text-body { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; }

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(204,26,26,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  border-radius: inherit;
}

.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193,39,45,0.25);
  box-shadow: 0 24px 64px rgba(193,39,45,0.12), 0 8px 32px rgba(0,0,0,0.3);
}

.location-card:hover::before { opacity: 1; }

.location-card__image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  position: relative;
}

.location-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.location-card:hover .location-card__image img {
  transform: scale(1.04);
}

.location-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,14,26,0.45) 100%);
}

.location-card__icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--logo-red), rgba(204,26,26,0.8));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 30px rgba(204,26,26,0.30);
}

.location-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.location-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.location-card__meta {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.location-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.location-card__meta-item svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--logo-red);
  stroke-width: 1.8;
}

/* ----------------------------------------
   REVIEWS SECTION
   ---------------------------------------- */
.reviews {
  padding: var(--space-5xl) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(204,26,26,0.03);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  position: relative;
  z-index: 2;
}

.reviews__header .text-label { margin-bottom: var(--space-md); }
.reviews__header .heading-section { margin-bottom: var(--space-md); }

/* Review score strip */
.reviews__score-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  padding: var(--space-lg) var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--dark-06);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.reviews__score-number {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.02em;
}

.reviews__score-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 4px;
}

.reviews__score-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--logo-red);
}

.reviews__score-label {
  font-size: 0.78rem;
  color: var(--dark-40);
  margin-top: 2px;
}

.reviews__score-divider {
  width: 1px;
  height: 50px;
  background: var(--dark-10);
}

.reviews__score-detail {
  font-size: 0.82rem;
  color: var(--dark-60);
  font-weight: 500;
  line-height: 1.6;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  border: 1px solid var(--dark-06);
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-red), rgba(204,26,26,0.8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.review-card:hover::before { transform: scaleX(1); }

/* (Removed: duplicate review-card__stars / __quote / __author / __avatar / __name / __source —
   these were overridden by the trust-section review-card styles at the bottom of this file) */

/* ----------------------------------------
   INQUIRY / CTA SECTION
   ---------------------------------------- */
.cta {
  padding: var(--space-5xl) 0;
  background: transparent;
}

.cta__inner {
  background: linear-gradient(140deg, var(--navy-950) 0%, var(--navy-800) 60%, #1A2E50 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease-in-out infinite;
  border-radius: var(--radius-3xl);
  padding: var(--space-5xl) var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.cta__noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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");
  pointer-events: none;
}

.cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.cta__glow--1 {
  width: 500px; height: 500px;
  background: var(--logo-red);
  top: -200px; right: -100px;
}

.cta__glow--2 {
  width: 350px; height: 350px;
  background: var(--navy-400);
  bottom: -150px; left: -80px;
}

.cta__inner .text-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.cta__inner .heading-section {
  color: var(--white);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.cta__inner .text-body {
  color: rgba(255,255,255,0.70);
  max-width: 540px;
  margin: 0 auto var(--space-2xl);
  position: relative;
  z-index: 2;
}




.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

.form-input,
.form-select {
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
  width: 100%;
}

.form-input::placeholder { color: rgba(255,255,255,0.30); }

.form-input:focus,
.form-select:focus {
  border-color: var(--logo-red);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(204,26,26,0.20);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

/* Light-background dropdown arrow (contact form, booking modal) */
.contact-form .form-select,
.booking-modal .form-select,
.booking-modal .form-input[id="booking-guests"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(14,14,14,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-select option { background: var(--navy-800); color: var(--white); }




.cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  position: relative;
  z-index: 2;
}

/* Platform logos strip */
.cta__platforms {
  position: relative;
  z-index: 2;
  margin-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta__platforms-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

.cta__platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
  background: var(--navy-950);
  color: var(--white-70);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,26,26,0.30), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--logo-red);
  filter: blur(100px);
  opacity: 0.08;
  top: -180px; right: -80px;
  pointer-events: none;
}
.footer .container { position: relative; z-index: 2; }

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.40);
  margin-top: var(--space-lg);
  max-width: 300px;
}

.footer__logo { height: 64px; width: auto; }

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--logo-red);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.40);
  transition: color var(--duration-fast) var(--ease-out);
  padding: 2px 0;
}

.footer__link:hover { color: var(--logo-red); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 8px;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__contact-item:hover { color: var(--logo-red); }

.footer__contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--logo-red);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.30);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-spring);
}

.footer__social:hover {
  background: var(--logo-red);
  border-color: var(--logo-red);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(204,26,26,0.35);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: rgba(255,255,255,0.60);
  stroke-width: 1.5;
  transition: stroke var(--duration-fast);
}

.footer__social:hover svg { stroke: var(--white); }

/* ----------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ----------------------------------------
   KEYFRAMES
   ---------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.5); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes mobileNavReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes mobileNavLinkIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  75%  { opacity: 0; transform: translateY(10px); }
  76%  { opacity: 0; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

/* (Removed: dead @keyframes shimmerGold and particleDrift — never referenced by any animation property) */

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ----------------------------------------
   RESPONSIVE — 1024px
   ---------------------------------------- */
/* ============================================
   RESPONSIVE — 1024px (Tablet Landscape)
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    text-align: center;
  }

  .hero__eyebrow  { justify-content: center; }
  .hero__badge    { align-self: center; }
  .hero__subtitle { margin: 0 auto var(--space-2xl); max-width: 520px; }
  .hero__actions  { justify-content: center; }
  .hero__stats    { justify-content: center; }

  .experience .container { grid-template-columns: 1fr; }
  .experience__image-stack {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

  .properties__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .property-card--featured { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .form-row { grid-template-columns: 1fr; }

  /* Locations: 3 cards max 2-up on tablet */
  .locations__grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Nav: hide desktop links, show hamburger at tablet ── */
  .header__nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(193,39,45,0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(212,165,83,0.05) 0%, transparent 50%),
      rgba(7, 14, 26, 0.97);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    backdrop-filter: blur(32px) saturate(200%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: var(--space-5xl) var(--space-xl);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__nav.open {
    display: flex;
    animation: mobileNavReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  /* ── Staggered link entrance ── */
  .header__nav .header__link,
  .header__nav .header__cta {
    opacity: 0;
    transform: translateY(18px);
  }
  .header__nav.open .header__link,
  .header__nav.open .header__cta {
    animation: mobileNavLinkIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .header__nav.open .header__link:nth-child(1) { animation-delay: 0.08s; }
  .header__nav.open .header__link:nth-child(2) { animation-delay: 0.14s; }
  .header__nav.open .header__link:nth-child(3) { animation-delay: 0.20s; }
  .header__nav.open .header__link:nth-child(4) { animation-delay: 0.26s; }
  .header__nav.open .header__link:nth-child(5) { animation-delay: 0.32s; }
  .header__nav.open .header__link:nth-child(6) { animation-delay: 0.38s; }
  .header__nav.open .header__cta             { animation-delay: 0.46s; }

  .header__nav .header__link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85) !important;
    text-shadow: none;
    letter-spacing: 0.04em;
    padding: 16px 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .header__nav .header__link:last-of-type {
    border-bottom: none;
  }

  .header__nav .header__link:hover,
  .header__nav .header__link:active {
    color: var(--white) !important;
    transform: scale(1.04);
  }

  .header__nav .header__link.active {
    color: var(--white) !important;
  }

  /* Active link accent dot */
  .header__nav .header__link.active::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--logo-red);
    box-shadow: 0 0 8px rgba(193,39,45,0.6);
  }

  /* Decorative line above CTA */
  .header__nav .header__cta {
    margin-top: var(--space-xl);
    width: 100%;
    max-width: 280px;
    justify-content: center;
    min-height: 54px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 14px;
    box-shadow:
      0 4px 20px rgba(193,39,45,0.25),
      0 0 40px rgba(193,39,45,0.08);
    position: relative;
  }

  .header__nav .header__cta::before {
    content: '';
    position: absolute;
    top: calc(-1 * var(--space-md));
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  }

  .header__mobile-toggle {
    display: block;
    z-index: 1001;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header__mobile-toggle:active {
    transform: scale(0.9);
  }
}

/* ============================================
   RESPONSIVE — 768px (Tablet Portrait / Mobile L)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-5xl: 4.5rem;
    --space-4xl: 3rem;
    --space-3xl: 2.5rem;
    --space-2xl: 2rem;
    --header-height: 72px;
    --header-height-sm: 60px;
  }



  /* ── Nav: inherits from 1024px breakpoint ── */

  /* ── Hero ── */
  .hero .container {
    padding-top: calc(var(--header-height) + 28px);
    padding-bottom: var(--space-2xl);
  }

  .hero__title { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero__subtitle { font-size: 1rem; }

  .hero__stat { padding: 0 var(--space-md); }
  .hero__stats { gap: 0; flex-wrap: nowrap; }

  /* ── Properties filter tabs — horizontal scroll ── */
  .properties__filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding-bottom: 8px;
    /* hide scrollbar but keep scroll */
    scrollbar-width: none;
  }
  .properties__filters::-webkit-scrollbar { display: none; }
  .filter-tab { scroll-snap-align: start; flex-shrink: 0; white-space: nowrap; min-height: 44px; }

  /* ── Properties grid ── */
  .properties__grid { grid-template-columns: 1fr; gap: 16px; }
  .property-card--featured { flex-direction: column; }
  .property-card__image { height: 240px; }

  /* ── Locations: all single column ── */
  .locations__grid { grid-template-columns: 1fr; }

  /* ── Reviews ── */
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__score-strip {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-md);
  }
  .reviews__score-divider { width: 40px; height: 1px; }

  /* ── Experience ── */
  .experience__features { grid-template-columns: 1fr; }
  .experience__image-stack { height: 320px; }

  /* ── CTA / Inquiry form ── */
  .cta__inner { padding: var(--space-2xl) var(--space-lg); }
  .cta__actions { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
  .cta__actions .btn { width: 100%; justify-content: center; min-height: 52px; }

  .form-row { grid-template-columns: 1fr; gap: var(--space-sm); }
  .form-input, .form-select { min-height: 48px; font-size: 1rem; } /* iOS zoom prevention */

  /* ── Trust bar ── */
  .trust-bar .container {
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
  }
  .trust-bar__divider { display: none; }
  .trust-bar__wordmark { font-size: 0.8rem; }
  .trust-bar__items { gap: var(--space-lg); }

  /* ── Footer ── */
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer__bottom { flex-direction: column; gap: var(--space-md); text-align: center; }

  /* ── Section headings scale ── */
  .heading-section { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  /* ── Touch targets ── */
  .btn { min-height: 48px; }
  .footer__social { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
}

/* ============================================
   RESPONSIVE — 480px (Mobile S / iPhone SE)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --space-5xl: 3.5rem;
    --space-4xl: 2.5rem;
  }

  .container { padding: 0 var(--space-lg); }

  /* ── Hero ── */
  .hero__title { font-size: clamp(2.2rem, 10vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.1; }
  .hero__subtitle { font-size: 0.95rem; margin-bottom: var(--space-xl); }
  .hero__actions { flex-direction: column; align-items: stretch; gap: var(--space-md); width: 100%; }
  .hero__actions .btn { width: 100%; max-width: none; justify-content: center; min-height: 52px; font-size: 0.9rem; }
  .hero__stat-value { font-size: 1.6rem; }
  .hero__stats { justify-content: space-between; padding: var(--space-md) var(--space-sm); flex-wrap: wrap; }
  .hero__stat { padding: 0 var(--space-sm); flex: 1 1 auto; min-width: 30%; }
  .hero__stat:not(:last-child)::after { display: none; } /* Remove dividers on wrap */
  .hero__scroll-cue { display: none; }

  /* ── Stat section ── */
  .hero__badge { font-size: 0.7rem; padding: 8px 16px; margin-bottom: var(--space-lg); }
  .hero__eyebrow-text { font-size: 0.85rem; letter-spacing: 0.15em; }

  /* ── Property cards ── */
  .property-card__amenities { flex-wrap: wrap; gap: var(--space-sm); }
  .property-card__footer { flex-direction: row; gap: var(--space-sm); align-items: center; }
  .property-card__footer .btn { min-height: 48px; font-size: 0.85rem; }
  .property-card__favorite { min-width: 44px; min-height: 44px; }
  
  /* Stack CTA buttons on small screens to avoid horizontal squishing */
  .property-card__cta { flex-direction: column !important; }
  .property-card__cta .btn { width: 100% !important; min-height: 48px !important; margin: 0 !important; }

  /* ── CTA ── */
  .cta__inner { padding: var(--space-xl) var(--space-md); border-radius: var(--radius-xl); }
  .heading-section { font-size: clamp(1.7rem, 8vw, 2.2rem); }



  /* ── Footer ── */
  .footer__brand-desc { font-size: 0.85rem; }
  .footer__links { gap: var(--space-sm); }
  .footer__link { min-height: 44px; display: flex; align-items: center; }

  /* ── CTA platform badges — touch target fix ── */
  .cta__platform-badge {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  /* ── Disable trust-pillar hover translate on mobile (causes jank) ── */
  .trust-pillar:hover { transform: none; }
  .trust-pillar:active { transform: scale(0.98); }

  /* ── Owner section mobile centering ── */
  .owner-section__content-col { text-align: center; }
  .owner-section__content-col .heading-section { text-align: center; }
  .owner-section__bio { text-align: center; }
  .owner-section__quote { text-align: left; } /* keep quote left-aligned */

  /* ── Global mobile tap suppression ── */
  a, button, .btn, .filter-tab, .property-card {
    -webkit-tap-highlight-color: transparent;
  }
}

/* ============================================
   MULTI-PAGE ADDITIONS
   ============================================ */

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: var(--logo-red);
  filter: blur(80px);
  opacity: 0.12;
  top: -180px; right: -100px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-950) 0%, #0D1E38 45%, var(--navy-800) 100%);
  z-index: -1;
}

.page-hero__bg::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: var(--navy-400, #3A5A8A);
  filter: blur(80px);
  opacity: 0.12;
  bottom: -140px; left: -60px;
  pointer-events: none;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 70%, rgba(204,26,26,0.06) 0%, transparent 60%);
}

/* ---------- Hostfully Search Widget ---------- */
.hostfully-search {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  background: transparent;
}
.hostfully-search__inner {
  background: linear-gradient(140deg, var(--navy-950) 0%, var(--navy-800) 60%, #1A2E50 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: 0 12px 40px rgba(14,27,61,0.35);
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden; /* Clips background glow elements to prevent page horizontal scroll */
}
.hostfully-search__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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");
  pointer-events: none;
}
.hostfully-search__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.hostfully-search__glow--1 {
  width: 400px; height: 400px;
  background: var(--logo-red);
  top: -160px; right: -80px;
}
.hostfully-search__glow--2 {
  width: 300px; height: 300px;
  background: var(--navy-400);
  bottom: -120px; left: -60px;
}
.hostfully-search__inner .heading-section {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.hostfully-search__inner .text-body {
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 2;
}

.hostfully-search__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: var(--space-md);
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hostfully-search__field {
  width: 100%;
  text-align: left;
}

.hostfully-search__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.hostfully-search__field .form-input,
.hostfully-search__field .form-select {
  min-height: 52px;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

/* Ensure calendar picker indicator is visible and styled premium */
.hostfully-search__inner input[type="date"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
  box-sizing: border-box;
}
.hostfully-search__inner input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity var(--duration-fast);
}
.hostfully-search__inner input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 0.9;
}

.hostfully-search__btn {
  min-width: 160px;
  min-height: 52px;
  padding: 14px 28px !important;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

/* Search fields on dark bg */
.hostfully-search__inner .form-input,
.hostfully-search__inner .form-select {
  background-color: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.hostfully-search__inner .form-input::placeholder { color: rgba(255,255,255,0.35); }
.hostfully-search__inner .form-input:focus,
.hostfully-search__inner .form-select:focus {
  border-color: var(--logo-red);
  background-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(204,26,26,0.15);
}

/* Search widget mobile */
@media (max-width: 1200px) {
  .hostfully-search__fields {
    grid-template-columns: 1fr 1fr;
  }
  .hostfully-search__btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hostfully-search__fields {
    grid-template-columns: 1fr;
  }
  .hostfully-search__btn { min-height: 56px; font-size: 1rem; }
  .hostfully-search__inner { padding: var(--space-xl) var(--space-lg); }
}

/* ---------- Property Details UI Upgrade ---------- */
.property-header {
  margin-bottom: var(--space-lg);
}

.property-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 8px;
  line-height: 1.25;
}

.property-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs) var(--space-sm);
  font-size: 0.9rem;
  color: rgba(14,27,61,0.7);
}

.property-header__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.property-header__meta-item.rating-value {
  font-weight: 600;
  color: var(--navy-900);
}

.property-header__meta-item.rating-new {
  font-weight: 700;
  color: var(--logo-red);
}

.property-header__meta-item.location {
  color: rgba(14,27,61,0.75);
}

.property-header__meta-item.badge {
  background: rgba(14,27,61,0.06);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}

.property-header__meta-dot {
  color: rgba(14,27,61,0.3);
}

/* Airbnb-style 5-Photo Mosaic Grid */
.photo-mosaic {
  position: relative;
  width: 100%;
  margin-bottom: var(--space-xl);
}

.photo-mosaic__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}

.photo-mosaic__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #f3ece0;
}

.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.2s ease;
}

.photo-mosaic__item:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

.photo-mosaic__item--hero {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.photo-mosaic__single {
  width: 100%;
  height: 448px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3ece0;
}

.photo-mosaic__single img {
  transition: transform 0.4s ease, filter 0.2s ease;
}

.photo-mosaic__single:hover img {
  transform: scale(1.02);
  filter: brightness(0.95);
}

/* Floating button */
.photo-mosaic__btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid #222222;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  z-index: 10;
}

.photo-mosaic__btn:hover {
  background: #f7f7f7;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.16);
}

.photo-mosaic__btn:active {
  transform: translateY(0);
}

/* Main Page Split Layout */
.property-main-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.property-main-layout__details {
  min-width: 0;
}

/* Host / Avatar header */
.host-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--space-lg);
}

.host-header__info h2 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.host-header__info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.host-header__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Divider lines */
.section-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: var(--space-xl) 0;
}

/* Highlights */
.property-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.property-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.property-highlight-item__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.property-highlight-item__text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

.property-highlight-item__text p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* Sleeping arrangements */
.sleeping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.sleeping-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s ease;
}

.sleeping-card:hover {
  border-color: rgba(255,255,255,0.3);
}

.sleeping-card__icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.sleeping-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.sleeping-card p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* Section headings */
.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

/* Description text */
.property-description__text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white);
  padding: 12px var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.amenity-chip__icon {
  color: #059669;
  font-weight: 700;
}

/* Rules list */
.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-sm) var(--space-xl);
}

.rules-list__item {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.rules-list__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--logo-red);
  font-weight: bold;
}

/* Sticky Booking Sidebar */
.property-main-layout__sidebar {
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 24px;
  padding: 24px;
  background: rgba(7,14,27,0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.sticky-sidebar__pricing-preview {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-md);
}

.sticky-sidebar__pricing-preview .price-amount {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.sticky-sidebar__pricing-preview .price-unit {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
}

.sticky-sidebar__pricing-preview .rating-preview {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--white);
}

.sticky-sidebar__pricing-preview .rating-preview svg {
  color: var(--gold-600);
  fill: currentColor;
  margin-right: 4px;
}

/* Dialog Lightbox Styling */
.lightbox-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-dialog[open] {
  display: flex;
}

.lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  transition: opacity 0.3s ease;
}

.lightbox-dialog__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox-dialog__image-container {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-dialog__image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  user-select: none;
}

.lightbox-dialog__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.1s ease;
  z-index: 100;
}

.lightbox-dialog__close:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}

.lightbox-dialog__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.1s ease;
  z-index: 90;
  padding-bottom: 4px;
}

.lightbox-dialog__nav:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-dialog__nav.prev {
  left: 24px;
}

.lightbox-dialog__nav.next {
  right: 24px;
}

.lightbox-dialog__counter {
  position: absolute;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 6px 14px;
  border-radius: 20px;
}

@media (max-width: 992px) {
  .property-main-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sticky-sidebar {
    position: static;
    box-shadow: none;
    border-radius: 16px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .photo-mosaic__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px;
  }
  .photo-mosaic__item--sub {
    display: none;
  }
  .photo-mosaic__item--hero {
    grid-column: 1;
    grid-row: 1;
  }
  .photo-mosaic__single {
    height: 260px;
  }
  .photo-mosaic__btn {
    bottom: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 0.78rem;
  }
  .host-header__avatar {
    width: 48px;
    height: 48px;
  }
  .lightbox-dialog__nav {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .lightbox-dialog__nav.prev {
    left: 12px;
  }
  .lightbox-dialog__nav.next {
    right: 12px;
  }
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.contact-form textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* Light-mode form overrides (contact page has white bg) */
.contact-form .form-input,
.contact-form .form-select {
  background: var(--cream);
  border: 1px solid var(--dark-10);
  color: var(--dark);
}

.contact-form .form-input::placeholder { color: var(--dark-40); }

.contact-form .form-input:focus,
.contact-form .form-select:focus {
  border-color: var(--logo-red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(204,26,26,0.20);
}

.contact-form .form-select option { background: var(--white); color: var(--dark); }

.contact-form .form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-40);
  margin-bottom: 6px;
}

.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--dark-06);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon { font-size: 1.3rem; }

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-40);
  margin-bottom: 2px;
}

.contact-info-value {
  font-size: 0.92rem;
  color: var(--dark-80);
  text-decoration: none;
}

.contact-info-value:hover { color: var(--logo-red-dark); }

.contact-booking-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-badge {
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--dark-60);
}

.contact-market {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.9rem;
  color: var(--dark-60);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Group Living Cards ---------- */
.gl-card {
  background: #F8F5EF;
  border: 1px solid rgba(14,27,61,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 1px 0 rgba(255,255,255,0.08) inset;
}

.gl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.32), 0 1px 0 rgba(255,255,255,0.1) inset;
  border-color: rgba(193,39,45,0.2);
}

.gl-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.gl-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gl-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,14,26,0.7));
}

.gl-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #F8F5EF;
  border: 1px solid rgba(193,39,45,0.2);
  color: rgba(193,39,45,1);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.gl-card__body { padding: 24px; }

.gl-card__location {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--logo-red);
  margin-bottom: 8px;
}

.gl-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 10px;
}

.gl-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(14,27,61,0.7);
  margin-bottom: 20px;
}

.gl-card__amenities {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gl-card__amenities span {
  font-size: 0.75rem;
  color: rgba(14,27,61,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gl-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gl-card__price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(204,26,26,0.8);
}

.gl-card__price-unit {
  font-size: 0.78rem;
  color: rgba(14,27,61,0.5);
}

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-md); }

.faq-item {
  background: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out);
}

.faq-item[open] { box-shadow: var(--shadow-md); }

.faq-question {
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--logo-red);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--dark-60);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Mobile overrides for new pages ---------- */

/* ---- Tablet (768px) for multi-page components ---- */
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--header-height-sm) + var(--space-2xl));
    padding-bottom: var(--space-xl);
  }

  .page-hero .heading-section {
    font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
  }

  /* Contact grid stacks on mobile */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: var(--space-lg); }

  /* Property detail stacks */
  .property-detail__grid { grid-template-columns: 1fr; }
  .property-detail__main-image { height: 240px; }

  /* Hostfully search stacks */
  .hostfully-search__fields { grid-template-columns: 1fr; }
  .hostfully-search__inner { padding: var(--space-lg) var(--space-md); }
  .hostfully-search__btn { min-height: 52px; }

  /* GL cards full-width */
  .gl-card__footer { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }

  /* FAQ touch targets */
  .faq-question {
    padding: var(--space-md) var(--space-lg);
    min-height: 52px;
    font-size: 0.9rem;
  }
  .faq-answer { padding: 0 var(--space-lg) var(--space-md); font-size: 0.88rem; }

  /* About page: founder section */
  .experience .container { gap: var(--space-xl); }

  /* Contact sidebar badges */
  .contact-badge { min-height: 44px; display: flex; align-items: center; font-size: 0.92rem; }
  .contact-info-value { min-height: 44px; display: flex; align-items: center; }

  /* Properties page filter bar with safe scroll */
  .properties__header { text-align: center; }
}

/* ---- Small mobile (480px) ---- */
@media (max-width: 480px) {
  .page-hero {
    padding-top: calc(var(--header-height-sm) + var(--space-xl));
    padding-bottom: var(--space-lg);
  }

  .page-hero .heading-section {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
  }

  .page-hero .text-body {
    font-size: 0.9rem !important;
  }

  /* Contact form compact */
  .contact-form { padding: var(--space-md); border-radius: var(--radius-lg); }
  .contact-form .form-input,
  .contact-form .form-select {
    min-height: 48px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  .contact-form textarea.form-input { min-height: 80px; }
  .contact-info-card { padding: var(--space-md); }

  /* GL cards compact */
  .gl-card__image { height: 160px; }
  .gl-card__body { padding: var(--space-md); }
  .gl-card__title { font-size: 1.15rem; }
  .gl-card__desc { font-size: 0.85rem; }
  .gl-card__amenities span { font-size: 0.72rem; }
  .gl-card__price-value { font-size: 1.3rem; }

  /* Property detail compact */
  .property-detail__main-image { height: 200px; border-radius: var(--radius-lg); }
  .property-detail__badges { flex-wrap: wrap; }

  /* FAQ compact */
  .faq-question { padding: var(--space-sm) var(--space-md); font-size: 0.85rem; }
  .faq-answer { padding: 0 var(--space-md) var(--space-sm); font-size: 0.85rem; }

  /* About founder avatar */
  #team .heading-section { font-size: clamp(1.5rem, 8vw, 2rem) !important; }

  /* Contact market items */
  .contact-market { font-size: 0.85rem; min-height: 44px; }

  /* Hostfully search compact */
  .hostfully-search { padding-top: var(--space-md); padding-bottom: var(--space-md); }
}

/* ---- Extra small (360px — iPhone SE, older devices) ---- */
@media (max-width: 360px) {
  .page-hero .heading-section { font-size: 1.4rem !important; }
  .gl-card__image { height: 130px; }
  .contact-form h2 { font-size: 1.2rem !important; }
  .faq-question { font-size: 0.82rem; }
  .contact-badge { font-size: 0.82rem; padding: var(--space-xs) var(--space-sm); }
}

/* ---- Hostfully Booking Widget & Inquiry Form ---- */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Booking form responsive */
@media (max-width: 640px) {
  #booking-form-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Hostfully widget theme overrides */
.orbirental-capture-widget-form,
.leadWidget {
  font-family: var(--font-body) !important;
  border-radius: var(--radius-lg) !important;
}

.orbirental-capture-widget-form input,
.orbirental-capture-widget-form select,
.orbirental-capture-widget-form button,
.leadWidget input,
.leadWidget select,
.leadWidget button {
  font-family: var(--font-body) !important;
  border-radius: var(--radius-md) !important;
}

.orbirental-capture-widget-form button[type="submit"],
.leadWidget button[type="submit"] {
  background: var(--navy-600) !important;
  border-color: var(--navy-600) !important;
  transition: background 0.3s ease !important;
}

.orbirental-capture-widget-form button[type="submit"]:hover,
.leadWidget button[type="submit"]:hover {
  background: var(--navy-500) !important;
}

/* ============================================================
   OWNER SECTION — Meet Jerell
   ============================================================ */
/* ── Owner Section — Premium Navy/Gold Dark Theme ── */
.owner-section {
  background: linear-gradient(140deg, var(--navy-950) 0%, var(--navy-800) 60%, #1A2E50 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.owner-section__noise {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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");
  pointer-events: none;
}
.owner-section__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.owner-section__glow--1 {
  width: 500px; height: 500px;
  background: var(--logo-red);
  top: -200px; right: -100px;
}
.owner-section__glow--2 {
  width: 350px; height: 350px;
  background: var(--navy-400);
  bottom: -150px; left: -80px;
}
/* Text overrides for dark background */
.owner-section .heading-section {
  color: var(--white);
  position: relative;
  z-index: 2;
}
.owner-section .text-body {
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 2;
}
.trust-section .text-body {
  color: var(--dark-60);
}
.owner-section .text-label {
  color: rgba(204,26,26,0.8);
  position: relative;
  z-index: 2;
}
.trust-section .text-label {
  color: var(--navy-700);
}
.owner-section .ornament-divider__line {
  background: linear-gradient(90deg, transparent, rgba(204,26,26,0.20), transparent);
}
.trust-section .ornament-divider__line {
  background: linear-gradient(90deg, transparent, var(--navy-300), transparent);
}
.owner-section .ornament-divider__icon {
  color: rgba(204,26,26,0.8);
}
.trust-section .ornament-divider__icon {
  color: var(--navy-400);
}
.owner-section__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-3xl);
  align-items: start;
  position: relative;
  z-index: 2;
}
.owner-section__image-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.owner-section__avatar {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 3px solid var(--logo-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 8px rgba(204,26,26,0.20);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.owner-section__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.owner-section__avatar-letter {
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 700;
  color: rgba(204,26,26,0.8);
  line-height: 1;
}

.owner-section__img-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(204,26,26,0.8);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  width: fit-content;
  margin: 0 auto;
}
.owner-section__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.owner-section__stat {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
}
.owner-section__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(204,26,26,0.8);
  line-height: 1;
  margin-bottom: 4px;
}
.owner-section__stat-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}
.owner-section__bio {
  text-align: center;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.55);
}
.owner-section__bio strong {
  color: rgba(204,26,26,0.8);
  font-weight: 600;
}
.owner-section__quote {
  position: relative;
  margin-top: var(--space-xl);
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--logo-red);
  border-radius: 0 12px 12px 0;
}
.owner-section__quote-mark {
  position: absolute;
  top: -10px; left: 16px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--logo-red);
  opacity: 0.25;
  line-height: 1;
}
.owner-section__quote p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.owner-section__quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--logo-red);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 900px) {
  .owner-section__inner { grid-template-columns: 1fr; text-align: center; }
  .owner-section__avatar { width: 240px; height: 240px; }
  .owner-section__avatar-letter { font-size: 6rem; }
  .owner-section__image-col { align-items: center; }
  .owner-section__stat-row { max-width: 340px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .owner-section__avatar { width: 200px; height: 200px; }
  .owner-section__avatar-letter { font-size: 5rem; }
  .owner-section__stat-num { font-size: 1.3rem; }
  .owner-section__stat-lbl { font-size: 0.65rem; }
  .owner-section__quote p { font-size: 1rem; }
}

/* ============================================================
   TRUST SECTION — Guest Voices & Reviews
   ============================================================ */
.trust-section {
  background: transparent;
  position: relative;
}
.trust-section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.trust-section__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}
.trust-pillar {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--white);
  border: 1px solid var(--dark-10);
  border-radius: 16px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.trust-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--logo-red), var(--logo-red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.trust-pillar:hover {
  border-color: rgba(204,26,26,0.15);
  background: rgba(204,26,26,0.02);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.trust-pillar:hover::before {
  transform: scaleX(1);
}
.trust-pillar__icon { font-size: 2.2rem; margin-bottom: var(--space-md); display: block; }
.trust-pillar__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: var(--space-sm);
}
.trust-pillar__desc { font-size: 0.85rem; color: var(--dark-60); line-height: 1.6; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.review-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--dark-10);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: border-color 0.3s, transform 0.3s;
  box-shadow: var(--shadow-xs);
}
.review-card:hover { border-color: var(--navy-300); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card--featured {
  border-color: var(--navy-400);
  background: rgba(27,42,74,0.03);
  position: relative;
}
.review-card--featured::before {
  content: 'Featured Review';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--navy-700);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.review-card__stars { color: #CC2929; font-size: 1rem; letter-spacing: 2px; }
.review-card__text { font-size: 0.9rem; color: var(--dark-60); line-height: 1.7; flex: 1; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: var(--space-sm); margin-top: auto; }
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--logo-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-card__name { font-size: 0.85rem; font-weight: 600; color: var(--navy-800); }
.review-card__source { font-size: 0.72rem; color: var(--navy-400); letter-spacing: 0.04em; }
/* Alias: about page uses __quote instead of __text */
.review-card__quote { font-size: 0.9rem; color: var(--dark-60); line-height: 1.7; flex: 1; font-style: italic; }
@media (max-width: 1000px) {
  .trust-section__pillars { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .trust-section__pillars { grid-template-columns: 1fr; }
}

/* ============================================
   BOOKING MODAL
   ============================================ */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.booking-modal--open {
  display: flex;
}
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,14,26,0.65);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.booking-modal__dialog {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl) var(--space-xl);
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: fadeInUp 0.35s var(--ease-out) both;
}
.booking-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-40);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.booking-modal__close:hover {
  background: var(--dark-06);
  color: var(--dark);
}
.booking-modal__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.booking-modal__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}
.booking-modal__rate {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--logo-red);
}
.booking-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.booking-modal__summary {
  background: var(--ivory);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}
.booking-modal__summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--dark-60);
  padding: var(--space-xs) 0;
}
.booking-modal__summary-row--total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
}
.booking-modal__summary-divider {
  height: 1px;
  background: var(--dark-10);
  margin: var(--space-sm) 0;
}
.booking-modal__submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  margin-top: var(--space-md);
}
.booking-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.booking-modal__secured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--dark-40);
  margin-top: var(--space-md);
  text-align: center;
}
/* ── Booking Modal: force dark text on light background ──
   Base .form-input uses white text for dark CTA section.
   Modal has white bg, so ALL inputs need dark overrides. */
.booking-modal .form-input,
.booking-modal .form-select,
.booking-modal select.form-input,
.booking-modal textarea.form-input,
.booking-modal input.form-input {
  color: var(--dark) !important;
  background: var(--white) !important;
  border: 1px solid var(--dark-10) !important;
  -webkit-text-fill-color: var(--dark) !important;
}
.booking-modal .form-input::placeholder,
.booking-modal textarea.form-input::placeholder {
  color: var(--dark-40) !important;
  -webkit-text-fill-color: var(--dark-40) !important;
}
.booking-modal .form-input:focus,
.booking-modal .form-select:focus,
.booking-modal textarea.form-input:focus {
  border-color: var(--logo-red) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgba(204,26,26,0.12) !important;
}
/* Labels inside booking modal */
.booking-modal .form-group label {
  color: var(--dark-60) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
/* Date inputs — ensure calendar icon and value text are dark */
.booking-modal input[type="date"] {
  color: var(--dark) !important;
  -webkit-text-fill-color: var(--dark) !important;
}
.booking-modal input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0) !important;
  opacity: 0.5;
}
/* Select options */
.booking-modal select option {
  background: var(--white) !important;
  color: var(--dark) !important;
}

@media (max-width: 768px) {
  .booking-modal__row { grid-template-columns: 1fr; }
  .booking-modal__dialog { padding: var(--space-xl) var(--space-lg); max-width: 95vw; }
  .booking-modal__title { font-size: 1.2rem; }
  /* Touch-friendly inputs + iOS zoom prevention */
  .booking-modal .form-input,
  .booking-modal .form-select,
  .booking-modal select.form-input {
    min-height: 48px;
    font-size: 16px !important;
    color: var(--dark) !important;
    -webkit-text-fill-color: var(--dark) !important;
    background: var(--white) !important;
    border: 1px solid var(--dark-10) !important;
  }
}

/* ============================================
   AUTH UI
   ============================================ */
.header__auth {
  margin-left: var(--space-sm);
}
.header__user {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(204,26,26,0.3);
  object-fit: cover;
}
.header__user-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: inherit;
  letter-spacing: 0.02em;
}
.header--scrolled .header__user-name { color: var(--navy-800); }
.header__sign-out {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}
.header__sign-out:hover { opacity: 1; }
.header__login-btn {
  border-color: rgba(255,255,255,0.3) !important;
}
.header--scrolled .header__login-btn {
  border-color: var(--navy-300) !important;
  color: var(--navy-800) !important;
}

/* Auth Toast */
.auth-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-950);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.auth-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.auth-toast--error {
  background: #B91C1C;
}

/* ============================================================
   MEET YOUR HOSTS — Team Grid & Partner Cards
   ============================================================ */
.meet-hosts {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.meet-hosts__header .text-label {
  color: var(--logo-red);
}
.meet-hosts__header .heading-section {
  color: var(--white);
}
.meet-hosts__header .text-body {
  color: rgba(255,255,255,0.55);
}

.meet-hosts__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* 4-column desktop grid */
.meet-hosts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

/* ---- Team card ---- */
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(193,39,45,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(193,39,45,0.2);
}

/* Dark variant (About page navy background) */
.team-card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ---- Photo container — square, uniform ---- */
.team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--duration-slow) var(--ease-out);
  display: block;
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
}

/* Placeholder shown when no photo is uploaded */
.team-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 60%, rgba(201,168,76,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__initials {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  -webkit-user-select: none;
  user-select: none;
}

/* ---- Card body ---- */
.team-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.team-card--dark .team-card__name {
  color: var(--white);
}

.team-card__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 var(--space-sm);
}

.team-card--dark .team-card__title {
  color: var(--gold-400);
}

.team-card__bio {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.team-card__bio--dark {
  color: rgba(255,255,255,0.55);
}

/* ---- Responsive: team grid ---- */
@media (max-width: 960px) {
  .meet-hosts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .meet-hosts__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    max-width: 420px;
    margin: 0 auto;
  }

  .team-card__photo {
    aspect-ratio: 4 / 3;
  }

  .team-card__body {
    padding: var(--space-md);
  }

  .team-card__name {
    font-size: 1.05rem;
  }

  .team-card__bio {
    font-size: 0.82rem;
    line-height: 1.7;
  }
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-divider {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: var(--space-3xl) 0 var(--space-xl);
}

.partners-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.partners-divider__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-400);
  white-space: nowrap;
}

.partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 480px;
  margin: 0 auto;
}

.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(193,39,45,0.12), 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(193,39,45,0.2);
}

.partner-card__business {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-400);
  margin: 0 0 var(--space-xs);
}

.partner-card__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.partner-card__contact:hover {
  color: var(--logo-red);
}

@media (max-width: 600px) {
  .partners__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .partners-divider {
    margin: var(--space-2xl) 0 var(--space-xl);
  }

  .partners-divider__label {
    font-size: 0.95rem;
  }
}

/* ============================================================
   ABOUT PAGE — Owner Features & Story
   ============================================================ */
.about-audience {
  padding: var(--space-4xl) 0;
}

.owner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  max-width: 900px;
}

.owner-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-lg);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  box-shadow: var(--shadow-md);
}

.owner-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.owner-feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  color: var(--gold-600);
}

.owner-feature__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.owner-feature__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--dark-60);
}

.about-story-body {
  text-align: left;
  margin-top: var(--space-2xl);
}

.about-story-body .text-body {
  line-height: 1.85;
}

@media (max-width: 600px) {
  .owner-feature {
    padding: var(--space-md);
  }

  .owner-feature__icon {
    width: 38px;
    height: 38px;
  }

  .about-audience {
    padding: var(--space-3xl) 0;
  }

  .about-story-body {
    margin-top: var(--space-xl);
  }

  .about-story-body .text-body {
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

/* ============================================================
   OWNERS SECTION & DROPDOWN STYLES
   ============================================================ */

/* Desktop Dropdown styles */
.header__dropdown {
  position: relative;
  display: inline-block;
}

.header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.header__dropdown-toggle svg {
  transition: transform var(--duration-normal) var(--ease-out);
}

.header__dropdown:hover .header__dropdown-toggle svg {
  transform: rotate(180deg);
}

.header__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 1010;
  border: 1px solid rgba(26, 43, 92, 0.08);
}

/* Background/scrim adjustments when navbar is floating on dark hero vs scrolled */
.header:not(.header--scrolled) .header__dropdown-menu {
  background: rgba(14, 27, 61, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.header__dropdown:hover .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--duration-fast) var(--ease-out);
  text-align: left;
  border-bottom: none !important;
}

.header:not(.header--scrolled) .header__dropdown-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.header__dropdown-link:hover {
  background: rgba(204, 26, 26, 0.06);
  color: var(--logo-red) !important;
  padding-left: 28px;
}

.header:not(.header--scrolled) .header__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}

/* Mobile Dropdown styles */
@media (max-width: 1024px) {
  .header__dropdown {
    width: 100%;
    max-width: 300px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .header__dropdown-toggle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 16px 0;
    width: 100%;
    justify-content: center;
    border-bottom: none !important;
  }
  
  .header__dropdown-toggle svg {
    width: 14px;
    height: 14px;
  }
  
  .header__dropdown-menu {
    position: static;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 0 10px 0;
    width: 100%;
    min-width: unset;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  
  .header__dropdown.active .header__dropdown-menu {
    display: block;
  }
  
  .header__dropdown.active .header__dropdown-toggle svg {
    transform: rotate(180deg);
  }
  
  .header__dropdown-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65) !important;
    padding: 12px 0;
    text-align: center;
    border: none;
  }
  
  .header__dropdown-link:hover,
  .header__dropdown-link:active {
    color: var(--white) !important;
    background: transparent !important;
    padding-left: 0;
  }
}

/* Footer layout expansion to 5 columns on desktop */
@media (min-width: 1025px) {
  .footer__grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Owners Landing Hub & Tax benefits layout styling */
.owners-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.owners-cta-card {
  background: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 380px;
}

.owners-cta-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204, 26, 26, 0.2);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(204, 26, 26, 0.05);
}

.owners-cta-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(204, 26, 26, 0.08);
  color: var(--logo-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.8rem;
}

.owners-cta-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.owners-cta-card__desc {
  font-size: 0.9rem;
  color: var(--dark-60);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

@media (max-width: 900px) {
  .owners-cta-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .owners-cta-card {
    min-height: auto;
  }
}

/* Tax benefits styling */
.tax-container {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.tax-section {
  background: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-2xl);
  margin-bottom: var(--space-3xl);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s;
}

.tax-section:hover {
  border-color: rgba(204, 26, 26, 0.15);
}

.tax-section__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.tax-section__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--logo-red);
  line-height: 1;
  opacity: 0.8;
}

.tax-section__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.2;
}

.tax-section__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-80);
}

.tax-callout-box {
  background: var(--cream);
  border-left: 4px solid var(--logo-red);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: var(--space-xl) 0;
}

.tax-callout-box__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tax-callout-box__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--dark-60);
}

.disclaimer-block {
  border-top: 1px solid var(--dark-10);
  padding-top: var(--space-xl);
  margin-top: var(--space-4xl);
  font-size: 0.825rem;
  line-height: 1.6;
  color: var(--dark-40);
  text-align: center;
}

/* Lead Capture Box Styling */
.lead-capture-box {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  color: var(--white);
  margin: var(--space-4xl) 0;
}

.lead-capture-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--logo-red);
  filter: blur(80px);
  opacity: 0.12;
  top: -150px;
  right: -100px;
  pointer-events: none;
}

.lead-capture-box__inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.lead-capture-box__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.lead-capture-box__desc {
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
}

.lead-capture-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.lead-capture-form__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 14px 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all var(--duration-normal) var(--ease-out);
}

.lead-capture-form__input::placeholder {
  color: var(--slate-400);
}

.lead-capture-form__input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--logo-red);
  box-shadow: 0 0 0 3px rgba(204, 26, 26, 0.25);
}

.lead-capture-form__btn {
  padding: 14px 32px;
}

@media (max-width: 680px) {
  .lead-capture-box {
    padding: var(--space-xl) var(--space-lg);
  }
  .lead-capture-form {
    flex-direction: column;
    gap: var(--space-sm);
  }
  .lead-capture-form__btn {
    width: 100%;
  }
  .tax-section {
    padding: var(--space-2xl) var(--space-lg);
  }
  .tax-section__title {
    font-size: 1.4rem;
  }
}

/* ── Viewport Sticky Mobile Booking Footer ── */
.mobile-sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--dark-06);
  padding: 14px 24px;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.mobile-sticky-footer__price {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-footer__price .price-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.1;
}

.mobile-sticky-footer__price .price-unit {
  font-size: 0.8rem;
  color: var(--dark-40);
  margin-top: 2px;
}

.mobile-sticky-footer__btn {
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .mobile-sticky-footer {
    display: flex;
  }
  body {
    padding-bottom: 84px; /* offset for sticky footer */
  }
}

/* ── Persistent Carousel Arrows on Touch Devices ── */
@media (hover: none) {
  .property-card__arrow:not(.hidden) {
    opacity: 0.85 !important;
    pointer-events: auto !important;
    transform: translateY(-50%) scale(1) !important;
  }
}

/* ============================================
   UPGRADED SKELETON LOADER STYLING
   ============================================ */
.property-card-skeleton {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: 16px;
  overflow: visible;
  position: relative;
  width: 100%;
}

.property-card-skeleton__image {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f2ece4 25%, #e8e2d8 50%, #f2ece4 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite linear;
}

.property-card-skeleton__body {
  padding: 12px 4px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.property-card-skeleton__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-card-skeleton__line {
  background: linear-gradient(90deg, #f2ece4 25%, #e8e2d8 50%, #f2ece4 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite linear;
  border-radius: 4px;
}

.property-card-skeleton__line--location {
  width: 40%;
  height: 14px;
}

.property-card-skeleton__line--rating {
  width: 15%;
  height: 14px;
}

.property-card-skeleton__line--title {
  width: 85%;
  height: 18px;
  margin-top: 4px;
}

.property-card-skeleton__line--amenities {
  width: 60%;
  height: 12px;
  margin-top: 2px;
}

.property-card-skeleton__line--price {
  width: 35%;
  height: 16px;
  margin-top: 6px;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 768px) {
  .property-card-skeleton__image {
    height: 240px;
  }
}

/* ============================================
   BOOKING CONFIRMATION PAGE
   ============================================ */
.confirmed-section {
  background: var(--cream);
  padding: var(--space-3xl) 0 var(--space-4xl);
}

.confirmed-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.booking-conf-card {
  background: var(--white);
  border: 1px solid rgba(14,27,61,0.06);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 4px 6px rgba(14,27,61,0.01),
    0 20px 40px rgba(14,27,61,0.05),
    0 0 1px rgba(14,27,61,0.1);
  overflow: hidden;
  text-align: left;
  animation: cardFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.booking-conf-card__header {
  background: radial-gradient(circle at left, var(--navy-900) 0%, var(--navy-950) 100%);
  padding: 28px 36px;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,0.04);
}

.booking-conf-card__header-label {
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 6px;
}

.booking-conf-card__header-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0;
  font-weight: 500;
  line-height: 1.25;
}

.booking-conf-card__grid {
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.booking-conf-card__item {
  border-bottom: 1px solid var(--dark-06);
  padding-bottom: 14px;
  transition: transform 0.2s ease;
}

.booking-conf-card__item:nth-last-child(-n+2) {
  border-bottom: none;
  padding-bottom: 0;
}

.booking-conf-card__item-label {
  color: var(--dark-40);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
}

.booking-conf-card__item-value {
  color: var(--navy-950);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.booking-conf-card__item-value--confirmed {
  color: var(--success);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-conf-card__total-bar {
  background: linear-gradient(135deg, var(--logo-red) 0%, var(--logo-red-dark) 100%);
  padding: 22px 36px;
  position: relative;
  overflow: hidden;
}

.booking-conf-card__total-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100px;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-25deg);
  animation: shineGold 4s infinite ease-in-out;
}

.booking-conf-card__total-label {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-conf-card__total-value {
  color: var(--white);
  font-weight: 800;
  font-size: 1.5rem;
}

.booking-conf-card__footer {
  padding: 24px 36px;
  background: var(--cream-warm);
  border-top: 1px solid var(--dark-06);
}

.booking-conf-card__footer-text {
  color: var(--dark-60);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Timeline/Next Steps */
.booking-conf-next {
  margin-top: var(--space-xl);
  background: var(--white);
  border: 1px solid rgba(14,27,61,0.06);
  border-radius: var(--radius-xl);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  animation: cardFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.booking-conf-next__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy-950);
  margin: 0 0 24px;
  font-weight: 600;
}

.booking-conf-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-left: 12px;
}

.booking-conf-timeline::before {
  content: '';
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 25px;
  width: 2px;
  background: linear-gradient(180deg, var(--success) 30%, #e2e8f0 70%);
}

.booking-conf-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease;
}

.booking-conf-step:hover {
  transform: translateX(4px);
}

.booking-conf-step__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.booking-conf-step__badge--success {
  background: #f0fdf4;
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.booking-conf-step__badge--pending {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.booking-conf-step__badge--enjoy {
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
}

.booking-conf-step__content {
  flex-grow: 1;
}

.booking-conf-step__title {
  font-size: 0.88rem;
  color: var(--navy-950);
  font-weight: 700;
  margin: 0;
}

.booking-conf-step__text {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--dark-60);
  line-height: 1.4;
}

.booking-conf-cta {
  margin-top: var(--space-xl);
  text-align: center;
  animation: cardFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.booking-conf-cta__contact {
  color: var(--dark-60);
  font-size: 0.85rem;
  margin: 0 0 var(--space-lg);
}

.booking-conf-cta__contact a {
  color: var(--logo-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.booking-conf-cta__contact a:hover {
  border-color: var(--logo-red);
}

.booking-conf-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@keyframes shineGold {
  0% { left: -100px; }
  100% { left: 100%; }
}

@media (max-width: 640px) {
  .booking-conf-card__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }
  .booking-conf-card__item {
    border-bottom: 1px solid var(--dark-06);
    padding-bottom: 10px;
  }
  .booking-conf-card__item:nth-last-child(2) {
    border-bottom: 1px solid var(--dark-06);
    padding-bottom: 10px;
  }
  .booking-conf-card__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .booking-conf-card__header,
  .booking-conf-card__total-bar,
  .booking-conf-card__footer,
  .booking-conf-next {
    padding: 24px;
  }
  .booking-conf-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .booking-conf-cta__buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================
   LIGHT THEME CARD OVERRIDES (Property Details)
   ============================================ */

.light-theme-card {
  background: var(--cream);
  color: var(--navy-900);
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .light-theme-card { padding: 24px 20px; border-radius: 16px; margin-bottom: 40px; }
}

/* Headings & Text */
.light-theme-card .property-header__title,
.light-theme-card .host-header__info h2,
.light-theme-card .property-highlight-item__text strong,
.light-theme-card .section-title {
  color: var(--navy-950);
}

.light-theme-card .property-header__meta,
.light-theme-card .host-header__info p,
.light-theme-card .property-highlight-item__text p,
.light-theme-card .property-description__text,
.light-theme-card .rules-list__item {
  color: var(--navy-800);
}

/* Icons & Dots */
.light-theme-card .property-header__meta-dot {
  color: var(--navy-400);
}
.light-theme-card .property-highlight-item__icon {
  color: var(--navy-950);
}

/* Divider Lines */
.light-theme-card .section-divider {
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Cards & Chips */
.light-theme-card .sleeping-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.light-theme-card .sleeping-card strong {
  color: var(--navy-950);
}
.light-theme-card .sleeping-card p {
  color: var(--navy-700);
}
.light-theme-card .sleeping-card:hover {
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.light-theme-card .amenity-chip {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--navy-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.light-theme-card .amenity-chip__icon {
  color: var(--logo-red);
}
.light-theme-card .amenity-chip:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* Sticky Sidebar (Booking Widget Container) */
.light-theme-card .sticky-sidebar {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  padding: 32px;
}
.light-theme-card .sticky-sidebar__pricing-preview .price-amount,
.light-theme-card .sticky-sidebar__pricing-preview .rating-preview {
  color: var(--navy-950);
}
.light-theme-card .sticky-sidebar__pricing-preview .price-unit {
  color: var(--navy-600);
}
.light-theme-card .sticky-sidebar__pricing-preview .rating-preview svg {
  color: var(--navy-900);
}

/* Overrides for Avatar */
.light-theme-card .host-header__avatar {
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
