/* ═══════════════════════════════════════════════════
   Vacanza365 — Main Stylesheet
   Premium Vacation Rental & Property Management
   ═══════════════════════════════════════════════════ */

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

:root {
  --navy: #0A1628;
  --navy-light: #121f35;
  --navy-mid: #1a2d4a;
  --gold: #C9A96E;
  --gold-light: #dcc499;
  --gold-dark: #a8893e;
  --white: #FAFAF8;
  --off-white: #F2F0EB;
  --cream: #F7F5F0;
  --gray-100: #E8E6E1;
  --gray-200: #D1CFC8;
  --gray-400: #9A9790;
  --gray-600: #6B6860;
  --gray-800: #3A3832;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.10);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.15);
  --shadow-gold: 0 8px 30px rgba(201,169,110,0.20);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════ NAVIGATION ═══════════ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: var(--transition);
}

.site-nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  border: 2px solid var(--gold);
  transition: var(--transition) !important;
}

.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: transparent !important; color: var(--gold) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

.mobile-nav-overlay a {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  transition: var(--transition);
}

.mobile-nav-overlay a:hover { color: var(--gold); }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 8s ease-out;
  opacity: 0;
}

.hero-bg.active { opacity: 1; }

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.60) 40%,
    rgba(10,22,40,0.40) 70%,
    rgba(10,22,40,0.70) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px clamp(1.5rem, 4vw, 3rem) 0;
}

.hero-content-inner { max-width: 780px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.9s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown { 0% { top: -100%; } 100% { top: 100%; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); box-shadow: var(--shadow-gold); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,0.3); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════ STATS BAR ═══════════ */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(201,169,110,0.15);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════ SECTIONS ═══════════ */
.section { padding: clamp(5rem, 10vw, 8rem) 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2.5rem;
}

.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.8;
}

/* ═══════════ PROPERTY CARDS ═══════════ */
.section-properties { background: var(--cream); }

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

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.property-card-img {
  display: block;
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.8rem;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
}

.property-save {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.property-save:hover { background: var(--white); transform: scale(1.1); }
.property-save svg { width: 16px; height: 16px; stroke: var(--navy); fill: none; stroke-width: 2; }

.property-info { padding: 1.5rem; }

.property-location {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.property-location svg { width: 12px; height: 12px; stroke: var(--gold); fill: none; stroke-width: 2; }

.property-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.property-meta {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1rem;
}

.property-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.property-meta-item svg { width: 14px; height: 14px; stroke: var(--gray-400); fill: none; stroke-width: 2; }

.property-excerpt {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.property-amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: var(--gray-600);
  background: var(--cream);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: 400;
}

.property-review-count {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 400;
  margin-left: 0.15rem;
}

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

.property-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.property-price span {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.property-rating svg { width: 14px; height: 14px; fill: var(--gold); }

.property-book-btn {
  display: block;
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  padding: 0.75rem;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.property-book-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.view-all-wrap { text-align: center; margin-top: 3rem; }

/* ═══════════ HOW IT WORKS ═══════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step { text-align: center; position: relative; }

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.step:hover .step-number {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.5;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.step p { color: var(--gray-600); font-size: 0.9rem; font-weight: 300; max-width: 320px; margin: 0 auto; }

/* ═══════════ SERVICES ═══════════ */
.section-services { background: var(--navy); }
.section-services .section-header h2 { color: var(--white); }
.section-services .section-header p { color: rgba(255,255,255,0.5); }

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

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  padding: 10px;
  background: rgba(201,169,110,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.service-card:hover .service-icon { background: rgba(201,169,110,0.2); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  position: relative;
}

.service-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 300; line-height: 1.7; position: relative; }

/* ═══════════ TESTIMONIALS ═══════════ */
.section-testimonials { background: var(--cream); }

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

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--gold); }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-light);
}

.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }

/* ═══════════ DESTINATIONS ═══════════ */
.destinations-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.destinations-content .section-tag { padding-left: 0; }
.destinations-content .section-tag::before { display: none; }

.destinations-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.destinations-content p { color: var(--gray-600); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }

.destination-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.destination-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.destination-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.destinations-map {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.us-map-svg {
  width: 100%;
  height: auto;
}

.us-map-svg:hover .map-labels { opacity: 1; transition: opacity 0.4s ease; }
.map-labels { transition: opacity 0.4s ease; }

.map-destination-dot { cursor: pointer; }

.map-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ═══════════ INCOME ESTIMATOR ═══════════ */
.section-estimator {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.section-estimator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.estimator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.estimator-content .section-tag {
  padding-left: 0;
}

.estimator-content .section-tag::before { display: none; }

.estimator-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.estimator-content > p {
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.estimator-trust {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.estimator-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.estimator-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  position: relative;
}

.estimator-step {
  display: none;
}

.estimator-step.active {
  display: block;
  animation: fadeUp 0.4s ease forwards;
}

.estimator-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.estimator-progress {
  width: 100%;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  margin-bottom: 1.8rem;
  overflow: hidden;
}

.estimator-progress-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.amenity-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  color: var(--gray-600);
}

.amenity-check:hover {
  border-color: var(--gold-light);
}

.amenity-check input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.amenity-check input[type="checkbox"]:checked + span {
  color: var(--navy);
  font-weight: 500;
}

.estimator-result-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.estimator-result-icon {
  margin: 0 auto 1rem;
  width: 72px;
  height: 72px;
  background: rgba(201,169,110,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.estimator-result-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.estimator-result-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.estimator-meeting-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* Estimator form group styling (inherits from booking form) */
.estimator-form .form-group { margin-bottom: 0.2rem; }
.estimator-form .form-row { margin-bottom: 0.2rem; }

@media (max-width: 900px) {
  .estimator-wrapper { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
}

/* ═══════════ CTA SECTION ═══════════ */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-inner h2 { color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem; }

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.cta-feature svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ═══════════ BOOKING MODAL ═══════════ */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.booking-modal-overlay.active { opacity: 1; pointer-events: all; }

.booking-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  transform: translateY(30px) scale(0.95);
  transition: var(--transition);
  position: relative;
}

.booking-modal-overlay.active .booking-modal { transform: translateY(0) scale(1); }

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.booking-modal-close:hover { background: var(--gray-200); }

.booking-modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 0.3rem; }
.modal-property-name { font-size: 0.85rem; color: var(--gold-dark); font-weight: 500; margin-bottom: 1.5rem; }

.booking-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

.form-group input, .form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group input::placeholder { color: var(--gray-400); }

.booking-submit {
  margin-top: 0.5rem;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.booking-submit:hover { background: var(--gold-dark); color: var(--white); }

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.1);
}

.footer-main {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.88rem; font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.8rem; }

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }

.footer-col h4 {
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: rgba(255,255,255,0.4); font-size: 0.88rem; font-weight: 300; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-newsletter p { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 300; margin-bottom: 1.2rem; line-height: 1.7; }

.newsletter-form { display: flex; gap: 0.5rem; }

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }

.newsletter-form button {
  padding: 0.75rem 1.2rem;
  background: var(--gold);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
}

.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-form button svg { width: 18px; height: 18px; stroke: var(--navy); fill: none; stroke-width: 2; }

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

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.8rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ═══════════ ANIMATIONS ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ═══════════ SINGLE PROPERTY PAGE ═══════════ */
.property-hero-section {
  padding-top: 100px;
  padding-bottom: 4rem;
  background: var(--cream);
}

.sp-back-link { margin-bottom: 1.5rem; padding-top: 1rem; }
.sp-back-link a { color: var(--gold); font-size: 0.82rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; transition: var(--transition); }
.sp-back-link a:hover { color: var(--gold-dark); }

.sp-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 480px;
  position: relative;
}

.sp-gallery-item { overflow: hidden; cursor: pointer; }
.sp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.sp-gallery-item:hover img { transform: scale(1.05); }
.sp-gallery-item-0 { grid-row: 1 / -1; }

.sp-gallery-show-all {
  position: absolute; bottom: 1rem; right: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 600;
  color: var(--navy); cursor: pointer; transition: var(--transition); z-index: 2;
}
.sp-gallery-show-all:hover { background: var(--white); box-shadow: var(--shadow-sm); }

.sp-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 2rem 0 1.5rem; border-bottom: 1px solid var(--gray-100); }
.sp-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.15; }
.sp-header-meta { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.sp-location { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--gray-600); font-size: 0.88rem; }
.sp-rating { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.sp-review-count { color: var(--gray-400); font-weight: 400; font-size: 0.82rem; }
.sp-badge { display: inline-block; padding: 0.3rem 0.75rem; background: rgba(10,22,40,0.85); color: var(--gold); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px; }

.sp-content-grid { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; margin-top: 2rem; align-items: start; }
.sp-main { min-width: 0; }

.sp-specs-bar { display: flex; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--gray-100); margin-bottom: 2rem; }
.sp-spec { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--gray-600); }
.sp-spec strong { color: var(--navy); font-weight: 600; }

.sp-section { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--gray-100); }
.sp-section:last-child { border-bottom: none; }
.sp-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 1.2rem; }
.sp-description { font-size: 0.95rem; color: var(--gray-600); line-height: 1.8; font-weight: 300; }
.sp-description p { margin-bottom: 1rem; }

.sp-amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.sp-amenity-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--gray-600); padding: 0.5rem 0; }

.sp-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sp-rule { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.8rem 1rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); }
.sp-rule > svg { margin-top: 0.15rem; flex-shrink: 0; }
.sp-rule div { display: flex; flex-direction: column; gap: 0.15rem; }
.sp-rule strong { font-size: 0.85rem; color: var(--navy); font-weight: 600; }
.sp-rule span { font-size: 0.78rem; color: var(--gray-400); font-weight: 300; line-height: 1.4; }

.sp-policy { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 1.5rem; }
.sp-policy-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.8rem; }
.sp-policy p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

.sp-location-block { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-100); padding: 1.5rem; }
.sp-location-header { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.8rem; }
.sp-location-block p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; font-weight: 300; }

.sp-sidebar { position: sticky; top: 100px; height: fit-content; }
.sp-sidebar-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.sp-sidebar-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.sp-sidebar-price span { font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 400; color: var(--gray-400); }
.sp-sidebar-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.sp-sidebar-form { margin-bottom: 1rem; }
.sp-sidebar-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; margin-bottom: 0.75rem; }
.sp-sidebar-dates .sp-sidebar-field:first-child { border-right: 1.5px solid var(--gray-200); }
.sp-sidebar-field { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.7rem 0.9rem; }
.sp-sidebar-field label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); }
.sp-sidebar-field input, .sp-sidebar-field select { border: none; padding: 0; font-family: 'Sora', sans-serif; font-size: 0.85rem; color: var(--gray-600); outline: none; background: transparent; width: 100%; }
.sp-sidebar-guests-field { border: 1.5px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 1rem; }
.sp-sidebar-guests-field select { cursor: pointer; }
.sp-book-btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; padding: 1rem 2rem; }
.sp-sidebar-trust { display: flex; align-items: center; gap: 0.5rem; justify-content: center; padding: 0.8rem; background: rgba(201,169,110,0.06); border: 1px solid rgba(201,169,110,0.15); border-radius: var(--radius); font-size: 0.75rem; color: var(--gray-600); text-align: center; line-height: 1.4; }
.sp-sidebar-trust strong { color: var(--navy); }

.sp-similar { background: var(--cream); }
.sp-similar-grid { grid-template-columns: repeat(3, 1fr); }

/* Gallery Lightbox */
.sp-lightbox-overlay { position: fixed; inset: 0; background: rgba(10,22,40,0.95); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.sp-lightbox-overlay.active { opacity: 1; pointer-events: all; }
.sp-lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; display: grid; place-items: center; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: var(--white); font-size: 1.8rem; cursor: pointer; transition: var(--transition); z-index: 2; }
.sp-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.sp-lightbox-prev, .sp-lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: grid; place-items: center; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; color: var(--white); font-size: 2rem; cursor: pointer; transition: var(--transition); z-index: 2; }
.sp-lightbox-prev { left: 1.5rem; }
.sp-lightbox-next { right: 1.5rem; }
.sp-lightbox-prev:hover, .sp-lightbox-next:hover { background: rgba(255,255,255,0.25); }
.sp-lightbox-content { max-width: 90vw; max-height: 85vh; display: flex; flex-direction: column; align-items: center; }
.sp-lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.sp-lightbox-counter { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 1rem; font-weight: 300; }

/* ═══════════ PROPERTIES ARCHIVE ═══════════ */
.properties-archive { padding-top: 120px; }

.property-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.property-filter {
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.property-filter:hover, .property-filter.active {
  border-color: var(--gold);
  color: var(--navy);
}

/* ═══════════ ABOUT PAGE ═══════════ */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px clamp(1.5rem, 4vw, 3rem) 80px;
}

.about-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.about-hero .hero-sub {
  max-width: 620px;
  margin: 0 auto;
}

/* About Story */
.about-story { background: var(--white); }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 400px;
}

.about-story-image-accent {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-story-content .section-tag {
  padding-left: 0;
}

.about-story-content .section-tag::before {
  display: none;
}

.about-story-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-story-content p {
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.about-story-content p strong {
  color: var(--navy);
  font-weight: 600;
}

/* About Values - reuses .section-services and .service-card */
.about-values .services-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* About Stats */
.about-stats {
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

/* About Team */
.about-team {
  background: var(--cream);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-team-photo {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-team-card:hover .about-team-photo img {
  transform: scale(1.05);
}

.about-team-info {
  padding: 1.5rem;
}

.about-team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.about-team-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.about-team-info p {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
}

/* About CTA */
.about-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════ LEGAL PAGES ═══════════ */
.legal-page {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero .section-header {
  margin-bottom: 0;
}

.legal-hero .section-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.legal-hero .section-header p {
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: clamp(3rem, 6vw, 5rem);
}

.legal-effective {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  width: 100%;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--gray-100);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.legal-section h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-section p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.legal-section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-section ul li strong {
  color: var(--navy);
  font-weight: 600;
}

.legal-section a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}

.legal-section a:hover {
  color: var(--gold);
}

.legal-contact-info {
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem;
  margin-top: 1.5rem;
}

.legal-contact-info p {
  margin-bottom: 0.4rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.legal-contact-info p strong {
  color: var(--navy);
  font-size: 1.05rem;
}

/* ═══════════ PROPERTY MANAGEMENT PAGE ═══════════ */
.pm-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.pm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pm-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.7) 50%, rgba(10,22,40,0.85) 100%);
}

.pm-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px clamp(1.5rem, 4vw, 3rem) 80px;
}

.pm-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.pm-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.pm-hero .hero-sub {
  max-width: 620px;
  margin: 0 auto;
}

/* PM Services Grid (detailed cards) */
.pm-services-section { background: var(--white); }

.pm-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pm-service-card {
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
}

.pm-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.3);
}

.pm-service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  padding: 14px;
  background: rgba(201,169,110,0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.pm-service-icon svg { width: 28px; height: 28px; }

.pm-service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.pm-service-card > p {
  color: var(--gray-600);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pm-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pm-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.pm-service-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* PM How It Works Steps */
.pm-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pm-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pm-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pm-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.pm-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.pm-step p {
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
}

/* PM Income Estimator CTA */
.pm-income-cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.pm-income-cta-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  background: rgba(201,169,110,0.08);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pm-income-cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pm-income-cta-inner p {
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* PM Fee Transparency */
.pm-transparency-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pm-transparency-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.pm-transparency-content .section-tag::before { display: none; }

.pm-transparency-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pm-transparency-content p {
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.8;
}

.pm-transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pm-transparency-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.pm-transparency-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.3);
}

.pm-transparency-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.2rem;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.pm-transparency-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.pm-transparency-item p {
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 300;
  line-height: 1.7;
}

/* PM FAQ */
.pm-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pm-faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pm-faq-item:hover {
  border-color: rgba(201,169,110,0.3);
}

.pm-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
}

.pm-faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.pm-faq-item.active .pm-faq-question svg {
  transform: rotate(180deg);
}

.pm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
}

.pm-faq-item.active .pm-faq-answer {
  max-height: 300px;
  padding: 0 1.8rem 1.5rem;
}

.pm-faq-answer p {
  color: var(--gray-600);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
  .properties-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .pm-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .destinations-inner { grid-template-columns: 1fr; }
  .property-detail-grid { grid-template-columns: 1fr; }
  .sp-content-grid { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
  .sp-similar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .properties-grid, .steps-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-values .services-grid { grid-template-columns: 1fr; }
  .about-team-grid { grid-template-columns: 1fr; }
  .about-team-photo { height: 240px; }
  .about-cta-buttons { flex-direction: column; align-items: center; }
  .pm-services-grid { grid-template-columns: 1fr; }
  .pm-steps-grid { grid-template-columns: 1fr; }
  .pm-transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .pm-hero-content { padding: 120px 1.5rem 60px; }
  .pm-faq-question { font-size: 0.92rem; padding: 1.2rem 1.4rem; }
  .pm-faq-answer { padding-left: 1.4rem; padding-right: 1.4rem; }
  .pm-faq-item.active .pm-faq-answer { padding: 0 1.4rem 1.2rem; }
  .steps-grid::before { display: none; }
  .cta-features { flex-direction: column; align-items: center; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .destination-list { grid-template-columns: 1fr; }
  .property-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .property-gallery img:first-child { grid-row: auto; }
  .sp-gallery { grid-template-columns: 1fr; grid-template-rows: auto; max-height: none; }
  .sp-gallery-item-0 { grid-row: auto; }
  .sp-gallery-item-3, .sp-gallery-item-4 { display: none; }
  .sp-specs-bar { flex-wrap: wrap; gap: 1rem; }
  .sp-amenities-grid { grid-template-columns: 1fr; }
  .sp-rules-grid { grid-template-columns: 1fr; }
  .sp-similar-grid { grid-template-columns: 1fr; }
  .sp-header-meta { gap: 0.8rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { padding: 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .pm-transparency-grid { grid-template-columns: 1fr; }
}
