/* ============================================
   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: var(--dark);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.005em;
}

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(--navy-900);
  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: var(--dark-80);
}

.text-small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--dark-40);
}

.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);
  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(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.08);
}

.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;
  transition: height var(--duration-normal) var(--ease-out), filter var(--duration-normal) var(--ease-out);
}

.header--scrolled .header__logo {
  height: 58px;
}

.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: var(--navy-800);
  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(--navy-950); }
.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: 34px;
  height: 34px;
  position: relative;
  cursor: pointer;
}

.header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy-800);
  position: absolute;
  left: 6px;
  transition: all var(--duration-fast) var(--ease-out);
}

.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: top vignette for header readability + bottom gradient for text */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,14,26,0.55) 0%, rgba(7,14,26,0.18) 30%, rgba(7,14,26,0.12) 55%, rgba(7,14,26,0.50) 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);
  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 2px 20px rgba(0,0,0,0.3);
}

.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: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
  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: rgba(7,14,26,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  animation: fadeInUp 0.9s var(--ease-out) 0.8s both;
}

.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: var(--cream);
  border-top: 1px solid var(--dark-06);
  border-bottom: 1px solid var(--dark-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: var(--dark-10);
}

.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: var(--navy-800);
  letter-spacing: 0.02em;
}

.trust-bar__wordmark-dot {
  font-size: 1.1rem;
  color: var(--navy-400);
  line-height: 1;
}

.trust-bar__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(26,42,92,0.08);
  border: 1px solid rgba(26,42,92,0.2);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
}
.trust-bar__badge:hover {
  background: rgba(26,42,92,0.14);
}

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

.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(2, 1fr);
  gap: var(--space-xl);
}

/* ---------- Property Card ---------- */
.property-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
  position: relative;
  border: 1px solid var(--dark-06);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.06);
  border-color: transparent;
  outline: 2px solid rgba(204,26,26,0.12);
  outline-offset: -2px;
}

/* All cards equal */
.property-card--featured {
  display: flex;
  flex-direction: column;
}

.property-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--cream-warm);
}

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

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

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

.property-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.property-card__badge-item {
  background: rgba(7,14,26,0.80);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15);
}

.property-card__badge-item--popular {
  background: linear-gradient(135deg, var(--logo-red), var(--logo-red-dark));
  color: var(--white);
  border: none;
}

.property-card__favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: var(--white-90);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-spring);
  border: none;
  cursor: pointer;
  z-index: 2;
}

.property-card__favorite:hover {
  background: var(--white);
  transform: scale(1.12);
}

.property-card__favorite svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--navy-800);
  stroke-width: 1.8;
  transition: all var(--duration-fast);
}

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

.property-card__body {
  padding: var(--space-xl) var(--space-xl) var(--space-xl);
}

.property-card--featured .property-card__body {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.property-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--logo-red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.property-card__location svg {
  width: 12px;
  height: 12px;
  fill: var(--logo-red);
  flex-shrink: 0;
}

.property-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.property-card--featured .property-card__title {
  font-size: 1.7rem;
  margin-bottom: var(--space-md);
}

.property-card__desc {
  font-size: 0.88rem;
  color: var(--dark-80);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card__amenities {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--dark-06);
  border-bottom: 1px solid var(--dark-06);
  margin-bottom: var(--space-lg);
}

.property-card__amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--dark-60);
  font-weight: 500;
}

.property-card__amenity svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--navy-400);
  stroke-width: 1.8;
}

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

.property-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy-800);
  line-height: 1;
}

.property-card__price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--dark-40);
}

.property-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy-800);
  background: rgba(204,26,26,0.04);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(204,26,26,0.08);
}

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

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

/* ----------------------------------------
   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: var(--white);
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 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.03), transparent);
  top: -200px; right: -150px;
}

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

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

.locations__header .text-label {
  color: var(--navy-700);
}

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

.locations__header .text-body { color: var(--dark-60); 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: var(--white);
  border: 1px solid var(--dark-06);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.location-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.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(--navy-800);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 2;
}

.location-card__desc {
  font-size: 0.9rem;
  color: var(--dark-80);
  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: var(--dark-60);
  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;
  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: var(--white);
}

.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;
  cursor: pointer;
}

.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__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 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); }
  .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); }
}

/* ============================================
   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: full-screen overlay ── */
  .header__nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 14, 26, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    z-index: 999;
    padding: var(--space-5xl) var(--space-xl);
  }

  .header__nav.open { display: flex; animation: fadeIn 0.25s var(--ease-out) both; }

  .header__nav .header__link {
    font-size: 1.25rem;
    color: var(--white) !important;
    text-shadow: none;
    padding: var(--space-sm) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header__nav .header__cta {
    margin-top: var(--space-md);
    width: 100%;
    max-width: 260px;
    justify-content: center;
    min-height: 52px;
    font-size: 0.85rem;
  }

  .header__mobile-toggle { display: block; z-index: 1001; }

  /* ── 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; }
  .property-card--featured { flex-direction: column; }
  .property-card__image { height: 220px; }

  /* ── 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(2rem, 10vw, 2.8rem); letter-spacing: -0.03em; }
  .hero__subtitle { font-size: 0.93rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
  .hero__actions .btn { width: 100%; max-width: none; justify-content: center; }
  .hero__stat-value { font-size: 1.5rem; }
  .hero__stats { justify-content: space-between; padding: var(--space-md) var(--space-lg); }
  .hero__scroll-cue { display: none; }

  /* ── Stat section ── */
  .hero__badge { font-size: 0.65rem; padding: 6px 12px; }

  /* ── 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; }

  /* ── 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: 40px; display: flex; align-items: center; }
}

/* ============================================
   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__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::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: var(--ivory);
}
.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;
}
.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__inner .heading-section {
  color: var(--white);
}
.hostfully-search__inner .text-body {
  color: rgba(255,255,255,0.6);
}

.hostfully-search__fields {
  display: flex;
  gap: var(--space-md);
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hostfully-search__field {
  flex: 1;
  min-width: 140px;
  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);
}

.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: 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 {
  border-color: var(--logo-red);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(204,26,26,0.15);
}

/* Search widget mobile */
@media (max-width: 768px) {
  .hostfully-search__fields {
    flex-direction: column;
    align-items: stretch;
  }
  .hostfully-search__field { min-width: 100%; }
  .hostfully-search__btn { width: 100%; min-height: 56px; font-size: 1rem; }
  .hostfully-search__inner { padding: var(--space-xl) var(--space-lg); }
}

/* ---------- Property Detail ---------- */
.property-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.property-detail__main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.property-detail__badges {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .property-detail__grid { grid-template-columns: 1fr; }
  .property-detail__main-image { height: 260px; }
}

/* ---------- 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: rgba(255,255,255,0.04);
  border: 1px solid rgba(204,26,26,0.20);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.gl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(204,26,26,0.20);
}

.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: rgba(204,26,26,0.20);
  border: 1px solid rgba(204,26,26,0.20);
  color: rgba(204,26,26,0.8);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  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(--white);
  margin-bottom: 10px;
}

.gl-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  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(255,255,255,0.4);
  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(255,255,255,0.35);
}

/* ---------- 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 { flex-direction: column; }
  .hostfully-search__field { min-width: 100%; }
  .hostfully-search__inner { padding: var(--space-lg) var(--space-md); }
  .hostfully-search__btn { width: 100%; 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: left;
  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; }
  .owner-section__avatar { width: 280px; height: 280px; }
  .owner-section__avatar-letter { font-size: 7rem; }
}

/* ============================================================
   TRUST SECTION — Guest Voices & Reviews
   ============================================================ */
.trust-section {
  background: var(--ivory);
  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);
  backdrop-filter: blur(8px);
  -webkit-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;
}
@media (max-width: 480px) {
  .booking-modal__row { grid-template-columns: 1fr; }
  .booking-modal__dialog { padding: var(--space-xl) var(--space-lg); }
}

/* ============================================
   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;
}
