/* ══════════════════════════════════════════════════════
   PUNTA CANA HOME VACATION — Main Stylesheet
   All styles ported from the original static HTML design.
══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Claim logical margin properties so physical auto-margins work on <p> elements */
p { margin-block: 0; margin-inline: 0; }

/* Override WordPress / admin-bar injected styles */
html, body {
  width: 100%;
  max-width: 100% !important;
  overflow-x: hidden;
  padding: 0 !important;
  margin: 0 !important;
}
.wp-site-blocks,
.entry-content,
.wp-block-group__inner-container { max-width: 100% !important; padding: 0 !important; }

/* Admin bar offset — keep nav visible when logged in */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

:root {
  --navy: #1F3060;
  --navy-dark: #152040;
  --navy-light: #2B4080;
  --navy-pale: #E8EDF5;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --border: #DDE2ED;
  --text-dark: #1A1A2E;
  --text-muted: #6B7494;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(12, 18, 40, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.45s ease, padding 0.4s ease, box-shadow 0.45s ease;
}
nav.scrolled {
  background: rgba(12, 18, 40, 0.96);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 4rem;
  box-shadow: 0 4px 40px rgba(6,10,26,0.55);
}
.nav-logo-wrap { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-monogram {
  width: 38px; height: 38px; background: white;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  transition: background 0.4s, color 0.4s;
}
nav.scrolled .nav-monogram { background: var(--gold); color: var(--navy-dark); }
.nav-logo-text {
  font-family: var(--font-serif); font-size: 0.95rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: white; line-height: 1.2; transition: color 0.4s;
}
nav.scrolled .nav-logo-text { color: white; }
.nav-logo-sub {
  font-family: var(--font-sans); font-size: 0.52rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; transition: color 0.4s;
}
nav.scrolled .nav-logo-sub { color: rgba(255,255,255,0.5); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
nav.scrolled .nav-links a { color: rgba(255,255,255,0.75); }
.nav-links a:hover { color: white; }
nav.scrolled .nav-links a:hover { color: white; }
.nav-cta {
  background: white; color: var(--navy); border: none;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
nav.scrolled .nav-cta { background: var(--gold); color: var(--navy-dark); }
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── NAV HAMBURGER (mobile) ── */
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  width: 32px; height: 24px; position: relative; z-index: 210;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: white;
  position: absolute; left: 0; transition: all 0.35s ease;
}
.nav-hamburger span:nth-child(1) { top: 2px; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 2px; }
.nav-hamburger.is-open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: translateX(12px); }
.nav-hamburger.is-open span:nth-child(3) { bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: var(--navy-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__inner { text-align: center; padding: 2rem; }
.mobile-menu__links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-menu__links li {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.is-open .mobile-menu__links li {
  opacity: 1; transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__links li:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu__links a {
  display: block; padding: 1rem 0;
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 300;
  letter-spacing: 0.04em; transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__cta {
  display: inline-block; margin-top: 2.5rem;
  background: var(--gold); color: var(--navy-dark); padding: 1rem 2.5rem;
  font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s 0.45s ease, transform 0.4s 0.45s ease, background 0.3s;
}
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: translateY(0); }
.mobile-menu__cta:hover { background: #b8923e; }

/* ── HERO VIDEO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy-dark);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.video-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.video-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; min-width: 100%; height: 56.25vw; min-height: 100%;
  transform: translate(-50%, -50%); opacity: 0.38;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,20,40,0.6) 0%, rgba(21,32,64,0.45) 50%, rgba(15,20,40,0.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem; max-width: 860px; width: 100%;
  animation: fadeUp 1.2s 0.3s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  animation: fadeUp 1.2s 0.4s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 0.5px; background: rgba(255,255,255,0.35);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 300; line-height: 1.0; color: white; margin-bottom: 1.75rem;
  animation: fadeUp 1.2s 0.5s ease both;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,0.65); }
.hero-subtitle {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  max-width: 540px; margin-bottom: 3rem; line-height: 1.85;
  text-align: center;
  animation: fadeUp 1.2s 0.6s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.2s 0.7s ease both;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--navy-dark); border: none;
  padding: 1rem 2.5rem; font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  font-weight: 500; transition: background 0.3s; display: inline-block; cursor: pointer;
}
.btn-gold:hover { background: #b8923e; }
.btn-white {
  background: white; color: var(--navy); border: none;
  padding: 1rem 2.5rem; font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  font-weight: 500; transition: opacity 0.3s; display: inline-block; cursor: pointer;
}
.btn-white:hover { opacity: 0.9; }
.btn-outline-white {
  background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35);
  padding: 1rem 2.5rem; font-family: var(--font-sans); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none;
  font-weight: 300; transition: border-color 0.3s, color 0.3s; display: inline-block; cursor: pointer;
}
.btn-outline-white:hover { border-color: white; color: white; }
.btn-navy {
  background: var(--navy); color: white; border: none; padding: 0.85rem 2rem;
  font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; font-weight: 400; transition: background 0.3s; display: inline-block;
}
.btn-navy:hover { background: var(--navy-dark); }
.btn-outline-navy {
  background: transparent; color: var(--navy); border: 1px solid var(--navy);
  padding: 0.85rem 2rem; font-family: var(--font-sans); font-size: 0.68rem;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  font-weight: 400; transition: background 0.3s, color 0.3s; display: inline-block;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

/* ── HERO SCROLL ── */
.hero-scroll {
  position: absolute; bottom: 7.5rem; left: 0; right: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; z-index: 2; animation: fadeUp 1.2s 1s ease both;
}
.scroll-line {
  width: 0.5px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2.2s ease infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── HERO STRIP ── */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1); z-index: 2;
}
.strip-item { padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.1); text-align: center; }
.strip-item:last-child { border-right: none; }
.strip-num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 300; color: white; line-height: 1; margin-bottom: 0.3rem; }
.strip-label { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* ── SEARCH BAR ── */
.search-wrap { background: var(--off-white); padding: 0 4rem; }
.search-bar {
  background: white; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
  border: 1px solid var(--border); margin-top: -1px;
  box-shadow: 0 8px 40px rgba(31,48,96,0.1);
  position: relative; z-index: 10;
}
.sb-field { padding: 1.25rem 1.75rem; border-right: 1px solid var(--border); }
.sb-field:last-of-type { border-right: none; }
.sb-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--navy); font-weight: 500; margin-bottom: 4px; }
.sb-input { width: 100%; border: none; outline: none; font-size: 0.88rem; color: var(--text-dark); font-family: var(--font-sans); background: transparent; font-weight: 300; }
.sb-input::placeholder { color: var(--text-muted); }
.sb-btn {
  background: var(--navy); color: white; border: none;
  padding: 0 2.25rem; font-family: var(--font-sans); font-size: 0.68rem;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background 0.3s; display: flex; align-items: center; gap: 0.5rem;
}
.sb-btn:hover { background: var(--navy-dark); }
.sb-btn svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; }

/* ── CHANNEL MANAGER BAND ── */
.cm-band {
  background: var(--navy-dark); padding: 1.4rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.cm-left { display: flex; align-items: center; gap: 1rem; }
.cm-dot { width: 8px; height: 8px; background: #22d36b; border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,211,107,0.2); }
.cm-text { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cm-text strong { color: rgba(255,255,255,0.85); font-weight: 400; }
.cm-logos { display: flex; gap: 0.75rem; align-items: center; }
.cm-pill {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.35rem 1rem; font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 400;
}

/* ── EXPERIENCE STRIP ── */
.exp-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  height: 340px; overflow: hidden;
}
.exp-item { position: relative; overflow: hidden; cursor: pointer; background: var(--navy-dark); }
.exp-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; opacity: 0.7; }
.exp-item:hover .exp-img { transform: scale(1.08); opacity: 1; }
.exp-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2); text-align: center; padding: 1rem; font-size: 2.8rem;
  transition: transform 0.6s ease;
}
.exp-item:hover .exp-placeholder { transform: scale(1.05); }
.exp-placeholder p { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.5rem; opacity: 0.4; }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,20,40,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem 1.25rem; transition: background 0.4s;
}
.exp-item:hover .exp-overlay { background: linear-gradient(to top, rgba(31,48,96,0.92) 0%, rgba(31,48,96,0.25) 65%); }
.exp-label { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 300; color: white; margin-bottom: 0.25rem; }
.exp-sub { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.exp-gold-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.65rem; font-weight: 500;
}

/* ── SECTION BASE ── */
section { padding: 7rem 4rem; }
.section-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem; font-weight: 400;
}
.section-eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--navy); }
.section-title {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1; color: var(--navy-dark); margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--navy); }
.section-desc { color: var(--text-muted); max-width: 480px; width: 100%; font-size: 0.92rem; line-height: 1.85; }

/* ── VILLAS ── */
.villas-section { background: var(--off-white); padding: 7rem 0; }
.villas-header { padding: 0 4rem; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.villas-scroll {
  display: flex; gap: 1.5rem; overflow-x: auto;
  padding: 0 4rem 2rem; scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  scroll-snap-type: x mandatory;
}
.villas-scroll::-webkit-scrollbar { height: 3px; }
.villas-scroll::-webkit-scrollbar-track { background: transparent; }
.villas-scroll::-webkit-scrollbar-thumb { background: var(--border); }
.villa-card {
  flex: 0 0 380px; background: white; border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s; scroll-snap-align: start; cursor: pointer;
}
.villa-card:hover { box-shadow: 0 12px 40px rgba(31,48,96,0.1); transform: translateY(-4px); }
.villa-img-wrap { height: 260px; overflow: hidden; background: var(--navy-pale); position: relative; }
.villa-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.villa-card:hover .villa-img { transform: scale(1.05); }
.villa-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-pale) 0%, #C4D0E8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted);
  text-decoration: none;
}
.villa-ph span { font-size: 2.5rem; opacity: 0.2; margin-bottom: 0.5rem; }
.villa-ph p { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4; }
.villa-tag {
  position: absolute; top: 1rem; left: 1rem; background: var(--navy); color: white;
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.75rem;
}
.villa-tag.gold { background: var(--gold); color: var(--navy-dark); }
.villa-price { position: absolute; top: 1rem; right: 1rem; background: white; padding: 0.4rem 0.85rem; border: 1px solid var(--border); }
.villa-price span { font-family: var(--font-serif); font-size: 1.15rem; color: var(--navy); }
.villa-price small { font-size: 0.6rem; color: var(--text-muted); }
.villa-body { padding: 1.5rem; }
.villa-location { font-size: 0.7rem; color: var(--navy); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.villa-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--navy-dark); margin-bottom: 0.75rem; }
.villa-meta { font-size: 0.78rem; color: var(--text-muted); display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.villa-book { display: flex; justify-content: flex-end; padding: 0 1.5rem 1.25rem; }
.villa-book a {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(31,48,96,0.3);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.villa-book a:hover { border-color: var(--navy); }

/* ── FULL WIDTH FEATURE ── */
.feature-full { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; overflow: hidden; }
.feature-img-side { position: relative; overflow: hidden; background: var(--navy-pale); min-height: 500px; }
.feature-img-side img { width: 100%; height: 100%; object-fit: cover; }
.feature-img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #C8D4E8 0%, var(--navy-pale) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); text-align: center; padding: 2rem;
}
.feature-img-ph .ph-icon { font-size: 5rem; opacity: 0.15; margin-bottom: 1rem; }
.feature-img-ph p { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.4; }
.feature-text-side {
  background: var(--navy); padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.feature-text-side::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border: 1px solid rgba(255,255,255,0.05); border-radius: 50%;
}
.feature-text-side .section-eyebrow { color: rgba(255,255,255,0.4); }
.feature-text-side .section-eyebrow::before { background: rgba(255,255,255,0.3); }
.feature-text-side .section-title { color: white; }
.feature-text-side .section-title em { color: rgba(255,255,255,0.6); }
.feature-text-side .section-desc { color: rgba(255,255,255,0.5); }
.feature-steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.feature-step {
  display: flex; gap: 1.25rem; padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08); align-items: flex-start;
}
.feature-step:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.step-num { font-family: var(--font-serif); font-size: 0.85rem; color: rgba(255,255,255,0.25); min-width: 24px; margin-top: 3px; }
.step-body h4 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 400; color: white; margin-bottom: 0.25rem; }
.step-body p { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* ── SERVICES ── */
.services-section { background: white; }
.services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.services-img-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; gap: 4px; }
.simg { background: var(--navy-pale); overflow: hidden; position: relative; }
.simg:first-child { grid-row: span 2; }
.simg-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #D4DCF0 0%, #B8C8E4 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.5; text-align: center; padding: 1rem;
}
.services-grid-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-cell { background: white; padding: 2.5rem 2rem; transition: background 0.3s; }
.service-cell:hover { background: var(--navy-pale); }
.service-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 300; color: var(--navy); opacity: 0.2; margin-bottom: 1rem; line-height: 1; }
.service-name { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400; color: var(--navy-dark); margin-bottom: 0.5rem; }
.service-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; }

/* ── BLOG ── */
.blog-section { background: var(--off-white); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: white; border: 1px solid var(--border); overflow: hidden; cursor: pointer; transition: box-shadow 0.3s, transform 0.3s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(31,48,96,0.08); transform: translateY(-3px); }
.blog-img-wrap { height: 200px; overflow: hidden; position: relative; }
.blog-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 3rem; }
.blog-ph.bg1 { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.blog-ph.bg2 { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.blog-ph.bg3 { background: linear-gradient(135deg, var(--gold) 0%, #b8923e 100%); }
.blog-cat {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--navy); color: white; font-size: 0.58rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
}
.blog-cat.gold { background: var(--gold); color: var(--navy-dark); }
.blog-body { padding: 1.5rem; }
.blog-date { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.blog-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--navy-dark); margin-bottom: 0.65rem; line-height: 1.35; }
.blog-excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; }
.blog-read { display: inline-block; margin-top: 1rem; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(31,48,96,0.3); padding-bottom: 2px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--navy-dark); padding: 7rem 4rem; }
.testimonials-section .section-eyebrow { color: rgba(255,255,255,0.4); }
.testimonials-section .section-eyebrow::before { background: rgba(255,255,255,0.3); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-title em { color: rgba(255,255,255,0.55); }
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem; transition: background 0.3s, border-color 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1.25rem; letter-spacing: 2px; }
.testi-text { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1.5rem; }
.testi-line { width: 28px; height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 1.25rem; }
.testi-author strong { display: block; font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: white; margin-bottom: 0.2rem; font-style: normal; }
.testi-author span { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── MANAGEMENT ── */
.mgmt-section { background: var(--off-white); }
.mgmt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.pillar { background: white; border: 1px solid var(--border); padding: 1.5rem; transition: border-color 0.3s, box-shadow 0.3s; }
.pillar:hover { border-color: var(--navy); box-shadow: 0 4px 20px rgba(31,48,96,0.06); }
.pillar-dot { width: 28px; height: 28px; background: var(--navy); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.75rem; margin-bottom: 1rem; }
.pillar h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 400; color: var(--navy-dark); margin-bottom: 0.35rem; }
.pillar p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }
.mgmt-card { background: var(--navy); padding: 3.5rem; position: relative; overflow: hidden; }
.mgmt-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,0.05); border-radius: 50%; }
.mgmt-card::after  { content: ''; position: absolute; bottom: -40px; left: -40px; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,0.04); border-radius: 50%; }
.mgmt-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; }
.mgmt-stat h3 { font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: white; line-height: 1; margin-bottom: 0.3rem; }
.mgmt-stat p { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.mgmt-quote { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 2rem; position: relative; }
.mgmt-btn { display: inline-block; background: var(--gold); color: var(--navy-dark); padding: 0.85rem 2rem; font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; font-weight: 500; position: relative; transition: background 0.3s; }
.mgmt-btn:hover { background: #b8923e; }

/* ── CTA ── */
.cta-section { position: relative; overflow: hidden; background: var(--navy-dark); text-align: center; padding: 8rem 4rem; }
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.cta-section .section-eyebrow { color: rgba(255,255,255,0.4); justify-content: center; }
.cta-section .section-eyebrow::before { background: rgba(255,255,255,0.3); }
.cta-section .section-title { color: white; max-width: 620px; width: 100%; margin-block-end: 1.25rem; margin-inline: auto; }
.cta-section .section-title em { color: rgba(255,255,255,0.55); }
.cta-section .section-desc { color: rgba(255,255,255,0.45); margin-block-end: 3rem; text-align: center; }
#contact .section-desc { margin-inline: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: #0E1525; padding: 5rem 4rem 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
.footer-logo { font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 1rem; display: block; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.85; margin-bottom: 1.5rem; }
.footer-contact-item { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 0.5rem; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: white; }
.footer-col h4 { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.5rem; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.83rem; transition: color 0.3s; }
.footer-col ul a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.social-links { display: flex; gap: 1.5rem; }
.social-links a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s; }
.social-links a:hover { color: white; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 300; background: #25D366; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: block; }
  section { padding: 5rem 1.5rem; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .sb-btn { padding: 1rem 1.5rem; }
  .exp-strip { grid-template-columns: repeat(2, 1fr); height: auto; }
  .exp-item { height: 200px; }
  .cm-band { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem; }
  .villas-header { padding: 0 1.5rem; }
  .villas-scroll { padding: 0 1.5rem 2rem; }
  .feature-full { grid-template-columns: 1fr; }
  .feature-img-side { min-height: 300px; }
  .services-intro { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid-bottom { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .mgmt-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .search-wrap { padding: 0 1.5rem; }
  .blog-section { padding: 5rem 1.5rem; }
  .blog-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }

  /* Archive responsive */
  .archive-hero { min-height: 50vh; }
  .archive-hero__title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .archive-hero__subtitle { font-size: 0.88rem; }
  .archive-grid-section { padding: 2rem 1.5rem 4rem; }
  .archive-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
  .archive-results-bar__inner { padding: 0.75rem 1.5rem; }
}
@media (max-width: 640px) {
  .search-bar { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .testi-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .exp-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-section { padding: 5rem 1.5rem; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Archive responsive */
  .archive-hero { min-height: 45vh; padding-top: 6.5rem; }
  .archive-hero__content { padding: 0 1rem; }
  .archive-hero__title { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  .archive-hero__subtitle { font-size: 0.82rem; max-width: 100%; }
  .archive-filter-bar { padding: 0.8rem 1rem; }
  .archive-filters__pill { padding: 0.35rem 0.85rem; font-size: 0.58rem; }
  .archive-grid-section { padding: 1.5rem 1rem 3rem; }
  .archive-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .archive-results-bar__inner { padding: 0.65rem 1rem; }
  .prop-card__stats { gap: 0.65rem; }
  .prop-card__amenities { gap: 0.35rem; }
  .archive-pagination .nav-links { gap: 0.25rem; }
}

/* ══════════════════════════════════════════════════════
   ARCHIVE PROPERTY PAGE — Premium design
══════════════════════════════════════════════════════ */

/* ── Archive Hero ── */
.archive-hero {
  position: relative; min-height: 80vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy-dark);
  padding: 9rem 2rem 6rem;
}
.archive-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(31,48,96,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(11,15,30,0.9) 0%, transparent 60%);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}
.archive-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,20,40,0.45) 0%,
    rgba(21,32,64,0.3) 40%,
    rgba(15,20,40,0.75) 100%
  );
}
.archive-hero__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 760px; width: 100%;
  animation: fadeUp 1s 0.15s ease both;
}
.archive-hero__eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  font-size: 0.62rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 1.5rem;
}
.archive-hero__eyebrow-line {
  display: block; width: 32px; height: 0.5px; background: rgba(255,255,255,0.25);
}
.archive-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.05; color: white;
  margin-bottom: 1.25rem;
}
.archive-hero__title em {
  font-style: italic; color: rgba(255,255,255,0.55);
}
.archive-hero__subtitle {
  font-size: 0.95rem; color: rgba(255,255,255,0.45);
  max-width: 520px; width: 100%; margin-block-end: 2.5rem; margin-inline: auto; line-height: 1.8; text-align: center;
}
.archive-hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 0; right: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; z-index: 2;
  animation: fadeUp 1s 0.8s ease both;
}

/* ── Filter Bar (below hero, above results bar) ── */
.archive-filter-bar {
  background: var(--navy-mid, #0f1428);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1.1rem 2rem;
}
.archive-filter-bar__inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center;
}

/* ── Filter Pills ── */
.archive-filters__pill {
  display: inline-block; padding: 0.45rem 1.15rem;
  font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; font-weight: 400;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.archive-filters__pill:hover {
  color: white; background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.archive-filters__pill.is-active {
  color: var(--navy-dark); background: var(--gold);
  border-color: var(--gold); font-weight: 500;
}
.archive-filters__pill.is-active:hover {
  background: #b8923e; border-color: #b8923e;
  transform: translateY(-1px);
}

/* ── Results Bar ── */
.archive-results-bar {
  background: white; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow 0.3s;
}
.archive-results-bar__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0.75rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.archive-results-bar__count {
  font-size: 0.82rem; color: var(--text-muted); font-weight: 300;
}
.archive-results-bar__count strong {
  color: var(--navy-dark); font-weight: 500;
}
.archive-results-bar__filter-label {
  color: var(--navy); font-weight: 400;
}
.archive-results-bar__view { display: flex; gap: 0.4rem; }
.view-btn {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s ease;
}
.view-btn:hover { border-color: var(--navy); color: var(--navy); }
.view-btn.is-active {
  background: var(--navy); border-color: var(--navy); color: white;
}

/* ── Grid Section ── */
.archive-grid-section {
  background: var(--off-white); padding: 3rem 4rem 5rem;
  min-height: 50vh;
}

/* ── Property Grid ── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1320px; margin: 0 auto;
}
.archive-grid.is-list {
  grid-template-columns: 1fr;
  max-width: 900px;
}

/* ── Property Card ── */
.prop-card {
  background: white; border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  animation: cardReveal 0.6s ease both;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.prop-card:nth-child(1)  { animation-delay: 0.05s; }
.prop-card:nth-child(2)  { animation-delay: 0.10s; }
.prop-card:nth-child(3)  { animation-delay: 0.15s; }
.prop-card:nth-child(4)  { animation-delay: 0.20s; }
.prop-card:nth-child(5)  { animation-delay: 0.25s; }
.prop-card:nth-child(6)  { animation-delay: 0.30s; }
.prop-card:nth-child(7)  { animation-delay: 0.33s; }
.prop-card:nth-child(8)  { animation-delay: 0.36s; }
.prop-card:nth-child(9)  { animation-delay: 0.38s; }
.prop-card:nth-child(n+10) { animation-delay: 0.4s; }
.prop-card:hover {
  box-shadow: 0 16px 48px rgba(31,48,96,0.12);
  transform: translateY(-6px);
}

/* Card in list mode */
.archive-grid.is-list .prop-card {
  flex-direction: row; max-height: 260px;
}
.archive-grid.is-list .prop-card__image-wrap {
  width: 340px; min-width: 340px; height: auto;
}
.archive-grid.is-list .prop-card__body { flex: 1; }
.archive-grid.is-list .prop-card__footer { border-top: none; border-left: 1px solid var(--border); padding: 1.25rem; display: flex; align-items: flex-end; }

/* Card Image */
.prop-card__image-wrap {
  position: relative; height: 240px; overflow: hidden; background: var(--navy-pale);
}
.prop-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.prop-card:hover .prop-card__img { transform: scale(1.06); }
.prop-card__image-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(15,20,40,0.35) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
}
.prop-card:hover .prop-card__image-overlay { opacity: 1; }
.prop-card__img-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-pale) 0%, #C4D0E8 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none;
  font-size: 3rem; opacity: 0.25;
}

/* Badges */
.prop-card__badge {
  position: absolute; top: 0.85rem; left: 0.85rem; z-index: 3;
  background: var(--navy); color: white;
  font-size: 0.55rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; font-weight: 500;
}
.prop-card__badge--gold { background: var(--gold); color: var(--navy-dark); }
.prop-card__type-badge {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 3;
  background: rgba(255,255,255,0.92); color: var(--navy);
  font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; font-weight: 500;
  backdrop-filter: blur(4px);
}

/* Price */
.prop-card__price {
  position: absolute; bottom: 0.85rem; left: 0.85rem; z-index: 3;
  background: white; padding: 0.4rem 0.85rem;
  display: flex; align-items: baseline; gap: 0.3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.prop-card__price-amount {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--navy);
}
.prop-card__price-unit {
  font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.05em;
}

/* Hover Actions */
.prop-card__actions {
  position: absolute; bottom: 0.85rem; right: 0.85rem; z-index: 3;
  display: flex; gap: 0.4rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.prop-card:hover .prop-card__actions {
  opacity: 1; transform: translateY(0);
}
.prop-card__action-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  transition: all 0.25s ease;
}
.prop-card__action-btn--view {
  background: white; color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.prop-card__action-btn--view:hover {
  background: var(--navy); color: white;
}
.prop-card__action-btn--book {
  background: #25D366; color: white;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.prop-card__action-btn--book:hover { background: #1fb855; }

/* Card Body */
.prop-card__body { padding: 1.25rem 1.5rem 0.75rem; flex: 1; }
.prop-card__location {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; color: var(--navy); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.35rem; font-weight: 400;
}
.prop-card__location svg { flex-shrink: 0; stroke: var(--navy); opacity: 0.5; }
.prop-card__name {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 400;
  color: var(--navy-dark); margin-bottom: 0.75rem; line-height: 1.25;
}
.prop-card__name a {
  text-decoration: none; color: inherit;
  transition: color 0.3s;
}
.prop-card__name a:hover { color: var(--navy); }

/* Stats Row */
.prop-card__stats {
  display: flex; gap: 1rem; padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.75rem;
}
.prop-card__stat {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; color: var(--text-muted); font-weight: 400;
}
.prop-card__stat svg { stroke: var(--navy); opacity: 0.4; flex-shrink: 0; }
.prop-card__stat span { font-weight: 500; color: var(--navy-dark); }

/* Amenity Chips */
.prop-card__amenities {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.prop-card__amenity {
  display: inline-flex; align-items: center; gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  background: var(--navy-pale); color: var(--navy);
  font-size: 0.62rem; letter-spacing: 0.04em; font-weight: 400;
  border-radius: 0;
}
.prop-card__amenity--more {
  background: var(--navy); color: white;
  font-weight: 500; letter-spacing: 0;
}

/* Card Footer */
.prop-card__footer {
  padding: 0.75rem 1.5rem 1.25rem;
  display: flex; justify-content: flex-end;
}
.prop-card__details-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; font-weight: 500;
  transition: gap 0.3s ease, color 0.3s;
}
.prop-card__details-link:hover { gap: 0.65rem; color: var(--gold); }
.prop-card__details-link svg { transition: transform 0.3s ease; }
.prop-card__details-link:hover svg { transform: translateX(3px); }

/* ── Pagination ── */
.archive-pagination {
  max-width: 1320px; margin: 3rem auto 0;
  display: flex; justify-content: center;
}
.archive-pagination .nav-links {
  display: flex; gap: 0.35rem; list-style: none;
  align-items: center;
}
.archive-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 0.5rem;
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 400;
  color: var(--navy); text-decoration: none;
  border: 1px solid var(--border); background: white;
  transition: all 0.25s ease;
}
.archive-pagination .page-numbers:hover {
  background: var(--navy); color: white; border-color: var(--navy);
}
.archive-pagination .page-numbers.current {
  background: var(--navy); color: white; border-color: var(--navy); font-weight: 600;
}
.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  gap: 0.3rem; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0 1rem;
}
.archive-pagination .page-numbers svg { flex-shrink: 0; }

/* ── Empty State ── */
.archive-empty {
  max-width: 480px; margin: 0 auto; padding: 5rem 2rem;
  text-align: center;
}
.archive-empty__icon {
  color: var(--text-muted); opacity: 0.25; margin-bottom: 1.5rem;
}
.archive-empty__title {
  font-family: var(--font-serif); font-size: 1.75rem; font-weight: 300;
  color: var(--navy-dark); margin-bottom: 0.75rem;
}
.archive-empty__desc {
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════
   ARCHIVE PAGE-HERO (nuevo diseño)
══════════════════════════════════════════════════════ */
.page-hero { position:relative; min-height:55vh; display:flex; align-items:flex-end; overflow:hidden; padding-top:160px }
.hero-bg { position:absolute; inset:0; background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 60%,var(--navy-light) 100%) }
.hero-pattern { position:absolute; inset:0; opacity:.04; background-image:repeating-linear-gradient(45deg,white 0,white 1px,transparent 0,transparent 50%); background-size:20px 20px }
.hero-content { position:relative; z-index:2; padding:0 4rem 4rem; width:100% }
.page-hero .hero-content { display:flex; flex-direction:column; align-items:flex-start; text-align:left; max-width:800px }
.hero-eyebrow { font-size:.62rem; letter-spacing:.35em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; display:flex; align-items:center; gap:.75rem }
.hero-eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--gold) }
.page-hero .hero-eyebrow { justify-content:flex-start }
.page-hero .hero-eyebrow::after { display:none }
.hero-content h1 { font-family:var(--font-serif); font-size:clamp(2.8rem,6vw,5.5rem); font-weight:300; color:white; line-height:1.05 }
.hero-content h1 em { font-style:italic; color:rgba(255,255,255,.6) }
.hero-sub { font-size:.92rem; color:rgba(255,255,255,.5); margin-top:.75rem; max-width:560px }

/* ── FILTERS BAR ── */
.filters-bar { background:white; border-bottom:1px solid var(--border); padding:1.25rem 4rem; display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; position:sticky; top:68px; z-index:100 }
.filter-label { font-size:.62rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-muted); white-space:nowrap }
.filter-group { display:flex; gap:.5rem; flex-wrap:wrap }
.filter-btn { background:transparent; border:1px solid var(--border); color:var(--text-muted); padding:.4rem 1rem; font-family:var(--font-sans); font-size:.68rem; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; transition:all .2s }
.filter-btn:hover, .filter-btn.active { background:var(--navy); border-color:var(--navy); color:white }

/* ── PROPS GRID ── */
.props-section { padding:2rem 4rem 5rem; background:var(--off-white) }
.props-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }

/* ── PROP CARD (nuevo diseño) ── */
.prop-card { background:white; border:1px solid var(--border); overflow:hidden; transition:box-shadow .3s,transform .3s; display:flex; flex-direction:column }
.prop-card:hover { box-shadow:0 12px 40px rgba(31,48,96,.1); transform:translateY(-4px) }
.prop-img-link { display:block; overflow:hidden }
.prop-img-wrap { position:relative; height:230px; overflow:hidden }
.prop-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s }
.prop-card:hover .prop-img-wrap img { transform:scale(1.04) }
.prop-tag { position:absolute; bottom:1rem; left:1rem; background:var(--navy); color:white; font-size:.58rem; letter-spacing:.15em; text-transform:uppercase; padding:.3rem .75rem }
.prop-tag.gold { background:var(--gold); color:var(--navy-dark) }
.prop-type-pill { position:absolute; top:1rem; right:1rem; background:rgba(255,255,255,.92); color:var(--navy); font-size:.58rem; letter-spacing:.12em; text-transform:uppercase; padding:.25rem .65rem; font-weight:500 }
.prop-body { padding:1.25rem 1.25rem .5rem; flex:1 }
.prop-loc { font-size:.63rem; letter-spacing:.15em; text-transform:uppercase; color:var(--navy); margin-bottom:.3rem }
.prop-name-link { text-decoration:none }
.prop-name { font-family:var(--font-serif); font-size:1.25rem; font-weight:400; color:var(--navy-dark); margin-bottom:.25rem; line-height:1.2 }
.prop-name:hover { color:var(--navy) }
.stars { font-size:.72rem; color:var(--gold); display:block; margin-bottom:.6rem }
.prop-desc { font-size:.8rem; color:var(--text-muted); line-height:1.7; margin-bottom:.85rem }
.prop-specs { display:flex; gap:.85rem; font-size:.72rem; color:var(--text-muted); padding:.7rem 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); margin-bottom:.85rem; flex-wrap:wrap }
.chips { display:flex; flex-wrap:wrap; gap:.35rem; margin-bottom:.5rem }
.chip { background:var(--navy-pale); color:var(--navy); font-size:.6rem; padding:.2rem .55rem; letter-spacing:.04em }
.chip-gold { background:#FEF3D0; color:#8A6820 }
.prop-actions { display:flex; gap:0; border-top:1px solid var(--border) }
.prop-detail { flex:1; background:white; color:var(--navy); text-align:center; padding:.85rem 1rem; font-family:var(--font-sans); font-size:.63rem; letter-spacing:.12em; text-transform:uppercase; text-decoration:none; transition:background .2s; border-right:1px solid var(--border) }
.prop-detail:hover { background:var(--navy-pale) }
.prop-wa { flex:1; background:#25D366; color:white; text-align:center; padding:.85rem 1rem; font-family:var(--font-sans); font-size:.63rem; letter-spacing:.12em; text-transform:uppercase; text-decoration:none; transition:background .2s; display:flex; align-items:center; justify-content:center; gap:.4rem; font-weight:500 }
.prop-wa:hover { background:#1fa855 }

/* ── ARCHIVE RESPONSIVE ── */
@media(max-width:1200px){ .props-grid { grid-template-columns:1fr 1fr } }
@media(max-width:1024px){ .page-hero { padding-top:120px } .filters-bar { padding:1rem 1.5rem; top:60px } .props-section { padding:1.5rem 1.5rem 4rem } .hero-content { padding:0 1.5rem 3rem } }
@media(max-width:640px){ .props-grid { grid-template-columns:1fr } }

/* ══════════════════════════════════════════════════════
   SINGLE PROPERTY (nuevo diseño)
══════════════════════════════════════════════════════ */
.gallery { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:340px 200px; gap:4px; margin-top:68px }
.gallery-main { grid-row:span 2; position:relative; overflow:hidden; background:var(--navy-pale) }
.gallery-thumb { position:relative; overflow:hidden; background:var(--navy-pale) }
.gallery img { width:100%; height:100%; object-fit:cover; transition:transform .5s; cursor:pointer }
.gallery img:hover { transform:scale(1.03) }
.gallery-badge { position:absolute; bottom:1.25rem; left:1.25rem; background:var(--gold); color:var(--navy-dark); font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; padding:.35rem .9rem; font-weight:500 }
.gallery-count { position:absolute; bottom:1rem; right:1rem; background:rgba(0,0,0,.5); color:white; font-size:.65rem; padding:.3rem .75rem; letter-spacing:.08em }
.prop-layout { display:grid; grid-template-columns:1fr 380px; gap:3rem; padding:3rem 4rem 5rem; align-items:start }
.prop-breadcrumb { font-size:.65rem; color:var(--text-muted); letter-spacing:.08em; margin-bottom:1.5rem }
.prop-breadcrumb a { color:var(--navy); text-decoration:none }
.prop-breadcrumb a:hover { text-decoration:underline }
.prop-header { margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid var(--border) }
.prop-type-loc { font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; color:var(--navy); margin-bottom:.5rem }
.prop-title { font-family:var(--font-serif); font-size:clamp(2rem,4vw,3rem); font-weight:300; color:var(--navy-dark); line-height:1.1; margin-bottom:.75rem }
.prop-stars { color:var(--gold); font-size:.9rem; margin-bottom:1rem; display:flex; align-items:center; gap:.5rem }
.prop-stars-num { font-size:.75rem; color:var(--text-muted) }
.prop-quick-specs { display:flex; gap:2rem; flex-wrap:wrap; font-size:.85rem; color:var(--text-muted) }
.prop-quick-specs span { display:flex; align-items:center; gap:.4rem }
.highlights { display:grid; grid-template-columns:1fr 1fr; gap:1rem; background:var(--navy-pale); padding:1.5rem; margin-bottom:2rem; border:1px solid var(--border) }
.highlight-item { display:flex; align-items:flex-start; gap:.75rem }
.highlight-icon { color:var(--gold); font-size:1.1rem; flex-shrink:0; margin-top:.1rem }
.highlight-text { font-size:.82rem; color:var(--navy-dark); font-weight:400 }
.section-label { font-size:.6rem; letter-spacing:.25em; text-transform:uppercase; color:var(--navy); margin-bottom:1rem; display:flex; align-items:center; gap:.6rem; font-weight:400 }
.section-label::before { content:''; display:block; width:20px; height:1.5px; background:var(--navy) }
.prop-desc-text { font-size:.9rem; color:var(--text-muted); line-height:1.9; margin-bottom:2rem }
.amenities-grid { display:grid; grid-template-columns:1fr 1fr; gap:.65rem; margin-bottom:2rem }
.amenity-item { display:flex; align-items:center; gap:.6rem; font-size:.83rem; color:var(--text-dark) }
.amenity-item::before { content:'\2713'; color:var(--gold); font-weight:600; flex-shrink:0 }
.map-placeholder { height:260px; background:linear-gradient(135deg,var(--navy-pale),#C4D0E8); display:flex; flex-direction:column; align-items:center; justify-content:center; margin-bottom:2rem; border:1px solid var(--border); position:relative; overflow:hidden }
.map-placeholder iframe { width:100%; height:100%; border:0 }
.booking-card { background:white; border:1px solid var(--border); padding:2rem; position:sticky; top:90px; box-shadow:0 4px 30px rgba(31,48,96,.08) }
.booking-card-title { font-family:var(--font-serif); font-size:1.5rem; font-weight:300; color:var(--navy-dark); margin-bottom:.25rem }
.booking-card-sub { font-size:.75rem; color:var(--text-muted); margin-bottom:1.75rem; padding-bottom:1.75rem; border-bottom:1px solid var(--border) }
.booking-form { display:flex; flex-direction:column; gap:.85rem; margin-bottom:1.5rem }
.form-group { display:flex; flex-direction:column; gap:.35rem }
.form-label { font-size:.6rem; letter-spacing:.15em; text-transform:uppercase; color:var(--navy); font-weight:400 }
.form-input, .form-select { border:1px solid var(--border); background:white; color:var(--text-dark); padding:.75rem .9rem; font-family:var(--font-sans); font-size:.85rem; outline:none; transition:border-color .2s; width:100%; font-weight:300 }
.form-input:focus, .form-select:focus { border-color:var(--navy) }
.form-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:.75rem }
.book-btn { width:100%; background:#25D366; color:white; border:none; padding:1.1rem; font-family:var(--font-sans); font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; font-weight:500; cursor:pointer; transition:background .3s; display:flex; align-items:center; justify-content:center; gap:.6rem }
.book-btn:hover { background:#1fa855 }
.book-btn svg { width:18px; height:18px; fill:white }
.book-note { font-size:.7rem; color:var(--text-muted); text-align:center; line-height:1.6; margin-top:.75rem }
.booking-perks { display:flex; flex-direction:column; gap:.6rem; padding-top:1.5rem; border-top:1px solid var(--border); margin-top:1.5rem }
.perk { display:flex; align-items:center; gap:.6rem; font-size:.78rem; color:var(--text-muted) }
.perk::before { content:'\2713'; color:var(--gold); font-weight:700 }
.similar-section { padding:4rem; background:var(--off-white) }
.similar-title { font-family:var(--font-serif); font-size:2rem; font-weight:300; color:var(--navy-dark); margin-bottom:2rem }
.similar-title em { font-style:italic; color:var(--navy) }
.similar-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem }
.sim-card { background:white; border:1px solid var(--border); overflow:hidden; text-decoration:none; transition:box-shadow .3s,transform .3s; display:block }
.sim-card:hover { box-shadow:0 8px 30px rgba(31,48,96,.08); transform:translateY(-3px) }
.sim-img { height:180px; overflow:hidden }
.sim-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s }
.sim-card:hover .sim-img img { transform:scale(1.04) }
.sim-body { padding:1.1rem }
.sim-loc { font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--navy); margin-bottom:.25rem }
.sim-name { font-family:var(--font-serif); font-size:1.1rem; font-weight:400; color:var(--navy-dark); margin-bottom:.4rem }
.sim-specs { font-size:.72rem; color:var(--text-muted) }

/* ── SINGLE RESPONSIVE ── */
@media(max-width:1200px){ .prop-layout { grid-template-columns:1fr 340px } }
@media(max-width:1024px){ .gallery { grid-template-columns:1fr; grid-template-rows:280px 150px 150px; margin-top:60px } .gallery-main { grid-row:span 1 } .prop-layout { grid-template-columns:1fr; padding:2rem 1.5rem 4rem } .booking-card { position:static } .highlights { grid-template-columns:1fr } .amenities-grid { grid-template-columns:1fr } .similar-section { padding:3rem 1.5rem } .similar-grid { grid-template-columns:1fr 1fr } }
@media(max-width:640px){ .similar-grid { grid-template-columns:1fr } .form-grid-2 { grid-template-columns:1fr } }

/* ═══════════════════════════════════════════
   EXPERIENCES PAGE
═══════════════════════════════════════════ */

/* Hero stats */
.page-hero--exp{min-height:72vh}
.page-hero--exp .hero-count{display:flex;gap:3rem;margin-top:2.5rem}
.page-hero--exp .hero-stat h3{font-family:var(--font-serif);font-size:2.5rem;font-weight:300;color:white;line-height:1}
.page-hero--exp .hero-stat p{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-top:.25rem}

/* Category tabs */
.cat-tabs{background:white;border-bottom:1px solid var(--border);padding:0 4rem;display:flex;gap:0;overflow-x:auto;position:sticky;top:68px;z-index:100;scrollbar-width:none}
.cat-tabs::-webkit-scrollbar{display:none}
.cat-tab{background:transparent;border:none;border-bottom:2px solid transparent;padding:1.1rem 1.5rem;font-family:var(--font-sans);font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted);cursor:pointer;white-space:nowrap;transition:all .2s}
.cat-tab:hover{color:var(--navy)}
.cat-tab.active{color:var(--navy);border-bottom-color:var(--navy);font-weight:500}

/* Category sections */
.cat-section{padding:5rem 4rem}
.cat-section:nth-child(odd){background:var(--off-white)}
.cat-section:nth-child(even){background:white}
.cat-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3rem;gap:2rem;flex-wrap:wrap}
.cat-eyebrow{font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;color:var(--navy);margin-bottom:.75rem;display:flex;align-items:center;gap:.6rem}
.cat-eyebrow::before{content:'';display:block;width:20px;height:1.5px;background:var(--navy)}
.cat-title{font-family:var(--font-serif);font-size:clamp(1.8rem,3vw,2.8rem);font-weight:300;color:var(--navy-dark);line-height:1.1}
.cat-title em{font-style:italic;color:var(--navy)}
.cat-desc{color:var(--text-muted);font-size:.88rem;line-height:1.85;max-width:480px}

/* Experience grid */
.exp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.exp-grid.wide{grid-template-columns:repeat(4,1fr)}

/* Experience card */
.exp-card{background:white;border:1px solid var(--border);overflow:hidden;transition:box-shadow .3s,transform .3s;display:flex;flex-direction:column}
.exp-card:hover{box-shadow:0 10px 35px rgba(31,48,96,.1);transform:translateY(-3px)}

/* Image area */
.exp-img-wrap{position:relative;height:200px;overflow:hidden;flex-shrink:0}
.exp-photo{width:100%;height:100%;object-fit:cover;display:block}
.exp-icon-wrap{height:100%;display:flex;align-items:center;justify-content:center;font-size:3.5rem}
.exp-icon-wrap.c1{background:linear-gradient(135deg,#1a5fa8,var(--navy))}
.exp-icon-wrap.c2{background:linear-gradient(135deg,var(--navy-dark),#2a5090)}
.exp-icon-wrap.c3{background:linear-gradient(135deg,#b07d28,var(--gold))}
.exp-icon-wrap.c4{background:linear-gradient(135deg,#0d6b46,#1a9960)}
.exp-icon-wrap.c5{background:linear-gradient(135deg,#5a1a8a,#8a3abf)}
.exp-icon-wrap.c6{background:linear-gradient(135deg,#8a3a1a,#c05a2a)}
.exp-icon-wrap.c7{background:linear-gradient(135deg,#1a7a8a,#2aacbf)}
.exp-icon-wrap.c8{background:linear-gradient(135deg,#2a4a1a,#4a8a2a)}

/* Tag badge */
.exp-tag{position:absolute;top:.75rem;left:.75rem;font-size:.55rem;letter-spacing:.15em;text-transform:uppercase;padding:.25rem .65rem;font-weight:500}
.exp-tag.water{background:rgba(26,95,168,.9);color:white}
.exp-tag.adventure{background:rgba(13,107,70,.9);color:white}
.exp-tag.culture{background:rgba(138,58,26,.9);color:white}
.exp-tag.sport{background:rgba(31,48,96,.9);color:white}
.exp-tag.family{background:rgba(90,26,138,.9);color:white}
.exp-tag.luxury{background:rgba(176,125,40,.9);color:var(--navy-dark)}
.exp-tag.nature{background:rgba(42,74,26,.9);color:white}

/* Card body */
.exp-body{padding:1.25rem 1.25rem .5rem;flex:1}
.exp-name{font-family:var(--font-serif);font-size:1.2rem;font-weight:400;color:var(--navy-dark);margin-bottom:.5rem;line-height:1.2}
.exp-desc{font-size:.8rem;color:var(--text-muted);line-height:1.75;margin-bottom:.85rem}
.exp-meta{display:flex;gap:.75rem;font-size:.68rem;color:var(--text-muted);padding:.65rem 0;border-top:1px solid var(--border);flex-wrap:wrap}
.exp-note{font-size:.68rem;color:#c0392b;margin-top:.35rem;line-height:1.5}

/* Book button */
.exp-book{display:block;background:#25D366;color:white;text-align:center;padding:.75rem;font-family:var(--font-sans);font-size:.63rem;letter-spacing:.15em;text-transform:uppercase;text-decoration:none;transition:background .2s;font-weight:500;margin:.5rem 1.25rem 1.25rem}
.exp-book:hover{background:#1fa855}

/* Responsive */
@media(max-width:1200px){.exp-grid.wide{grid-template-columns:repeat(3,1fr)}}
@media(max-width:1024px){
  .cat-tabs{padding:0 1.5rem}
  .cat-section{padding:3.5rem 1.5rem}
  .exp-grid,.exp-grid.wide{grid-template-columns:1fr 1fr}
  .page-hero--exp .hero-count{gap:2rem}
}
@media(max-width:640px){
  .exp-grid,.exp-grid.wide{grid-template-columns:1fr}
  .cat-header{flex-direction:column;align-items:flex-start}
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */

/* Info strip */
.contact-info-strip{display:grid;grid-template-columns:repeat(4,1fr);background:white;border-bottom:1px solid var(--border)}
.contact-card{padding:2.5rem 2rem;border-right:1px solid var(--border);text-align:center;display:flex;flex-direction:column;align-items:center}
.contact-card:last-child{border-right:none}
.contact-card__icon{font-size:2rem;margin-bottom:.85rem;display:block}
.contact-card__label{font-size:.58rem;letter-spacing:.25em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem}
.contact-card__value{display:block;font-family:var(--font-serif);font-size:1.1rem;color:var(--navy-dark);text-decoration:none;margin-bottom:.4rem;line-height:1.3}
.contact-card__value:hover{color:var(--navy)}
.contact-card__note{font-size:.72rem;color:var(--text-muted);margin-top:.25rem}
.contact-card__cta{display:inline-block;margin-top:.85rem;font-size:.63rem;letter-spacing:.12em;text-transform:uppercase;color:#25D366;text-decoration:none;border-bottom:1px solid rgba(37,211,102,.35);padding-bottom:1px;font-weight:500}

/* Body layout */
.contact-body{display:grid;grid-template-columns:1fr 340px;gap:5rem;padding:5rem 4rem;background:var(--off-white)}

/* Form section */
.contact-form-head{margin-bottom:2rem}
.contact-form-title{font-family:var(--font-serif);font-size:clamp(1.6rem,2.5vw,2.4rem);font-weight:300;color:var(--navy-dark);line-height:1.15;margin:.25rem 0 .5rem}
.contact-form-title em{font-style:italic;color:var(--navy)}
.contact-form-sub{color:var(--text-muted);font-size:.88rem}
.cf-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.cf-group{margin-bottom:1.25rem}
.cf-label{display:block;font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.45rem;font-weight:400}
.cf-req{color:var(--gold)}
.cf-input{width:100%;padding:.75rem 1rem;border:1px solid var(--border);background:white;font-family:var(--font-sans);font-size:.875rem;color:var(--text-dark);transition:border-color .2s;outline:none;-webkit-appearance:none;appearance:none;border-radius:0}
.cf-input:focus{border-color:var(--navy)}
.cf-textarea{resize:vertical;min-height:145px;line-height:1.65}
.cf-select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7494' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem;cursor:pointer}
.cf-actions{display:flex;align-items:center;gap:2rem;margin-top:.75rem;flex-wrap:wrap}
.cf-submit{background:var(--navy);color:white;border:none;padding:.9rem 2.5rem;font-family:var(--font-sans);font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;cursor:pointer;transition:background .3s;font-weight:500}
.cf-submit:hover{background:var(--navy-dark)}
.cf-wa-alt{display:flex;align-items:center;gap:.5rem;font-size:.78rem;color:#25D366;text-decoration:none;font-weight:500}
.cf-wa-alt:hover{color:#1fa855}
.cf-notice{padding:1rem 1.5rem;margin-bottom:1.5rem;font-size:.875rem;line-height:1.65}
.cf-notice--success{background:#e6f9ee;border-left:3px solid #25D366;color:#0d5c2a}
.cf-notice--error{background:#fef2f2;border-left:3px solid #c0392b;color:#7b1c1c}
.cf-notice a{color:inherit;font-weight:600;text-decoration:underline}

/* Sidebar */
.contact-sidebar{display:flex;flex-direction:column;gap:1.5rem}
.contact-sidebar__card{background:white;border:1px solid var(--border);padding:2rem 1.75rem}
.contact-sidebar__eyebrow{font-size:.58rem;letter-spacing:.25em;text-transform:uppercase;color:var(--navy);margin-bottom:.85rem;display:flex;align-items:center;gap:.5rem}
.contact-sidebar__eyebrow::before{content:'';display:block;width:16px;height:1.5px;background:var(--navy)}
.contact-sidebar__eyebrow--light{color:rgba(255,255,255,.4)}
.contact-sidebar__eyebrow--light::before{background:rgba(255,255,255,.3)}
.contact-sidebar__title{font-family:var(--font-serif);font-size:1.7rem;font-weight:300;color:var(--navy-dark);line-height:1.15;margin-bottom:1.25rem}
.contact-sidebar__title em{font-style:italic;color:var(--navy)}
.contact-sidebar__list{list-style:none;display:flex;flex-direction:column;gap:.55rem}
.contact-sidebar__list li{font-size:.83rem;color:var(--text-muted)}
.contact-sidebar__card--dark{background:var(--navy-dark);border-color:var(--navy-dark)}
.contact-response-list{display:flex;flex-direction:column;gap:.85rem}
.cr-row{display:flex;justify-content:space-between;align-items:center;font-size:.8rem;padding-bottom:.85rem;border-bottom:1px solid rgba(255,255,255,.08)}
.cr-row:last-child{border-bottom:none;padding-bottom:0}
.cr-row span{color:rgba(255,255,255,.45)}
.cr-row strong{color:white;font-weight:400}

/* Contact responsive */
@media(max-width:1024px){
  .contact-info-strip{grid-template-columns:1fr 1fr}
  .contact-card{border-bottom:1px solid var(--border)}
  .contact-body{grid-template-columns:1fr;gap:2.5rem;padding:3.5rem 1.5rem}
  .contact-sidebar{order:-1}
  .contact-sidebar{flex-direction:row;flex-wrap:wrap}
  .contact-sidebar__card{flex:1;min-width:250px}
}
@media(max-width:640px){
  .contact-info-strip{grid-template-columns:1fr}
  .cf-grid-2{grid-template-columns:1fr}
  .cf-actions{flex-direction:column;align-items:flex-start}
}

/* ═══════════════════════════════════════════
   BLOG ARCHIVE PAGE
═══════════════════════════════════════════ */

.blog-archive-section{padding:4rem 4rem 5rem;background:var(--off-white)}
.blog-filter-bar{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:3rem}
.blog-filter-btn{background:transparent;border:1px solid var(--border);color:var(--text-muted);padding:.5rem 1.25rem;font-family:var(--font-sans);font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;cursor:pointer;transition:all .2s;display:inline-block}
.blog-filter-btn:hover,.blog-filter-btn.active{background:var(--navy);color:white;border-color:var(--navy)}
.blog-grid--archive{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.blog-empty{text-align:center;padding:5rem 2rem;color:var(--text-muted);font-size:.9rem}
.blog-pagination{margin-top:3rem;display:flex;justify-content:center}
.blog-pagination .nav-links{display:flex;gap:.5rem;align-items:center;flex-wrap:wrap}
.blog-pagination .page-numbers{padding:.5rem .9rem;border:1px solid var(--border);color:var(--text-muted);text-decoration:none;font-size:.75rem;transition:all .2s;display:inline-block}
.blog-pagination .page-numbers.current,.blog-pagination .page-numbers:hover{background:var(--navy);color:white;border-color:var(--navy)}

/* Blog responsive */
@media(max-width:1024px){
  .blog-archive-section{padding:3rem 1.5rem}
  .blog-grid--archive{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .blog-grid--archive{grid-template-columns:1fr}
  .blog-filter-bar{gap:.35rem}
}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */

/* Steps strip */
.svc-steps-strip{background:var(--navy);padding:3rem 4rem;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.svc-step{text-align:center;position:relative}
.svc-step:not(:last-child)::after{content:"→";position:absolute;right:-1rem;top:50%;transform:translateY(-50%);color:rgba(255,255,255,.2);font-size:1.2rem}
.svc-step-n{font-family:var(--font-serif);font-size:2rem;font-weight:300;color:var(--gold);line-height:1;margin-bottom:.5rem}
.svc-step-t{font-size:.72rem;letter-spacing:.15em;text-transform:uppercase;color:white;margin-bottom:.35rem}
.svc-step-d{font-size:.78rem;color:rgba(255,255,255,.4);line-height:1.6}

/* Sections */
.svc-section{padding:6rem 4rem}
.svc-section--alt{background:var(--off-white)}
.svc-sec-ey{font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;color:var(--navy);margin-bottom:.85rem;display:flex;align-items:center;gap:.6rem;font-weight:400}
.svc-sec-ey::before{content:"";display:block;width:20px;height:1.5px;background:var(--navy)}
.svc-sec-t{font-family:var(--font-serif);font-size:clamp(1.8rem,3vw,2.8rem);font-weight:300;line-height:1.1;color:var(--navy-dark);margin-bottom:.85rem}
.svc-sec-t em{font-style:italic;color:var(--navy)}
.svc-sec-d{color:var(--text-muted);font-size:.9rem;line-height:1.85;max-width:580px;margin-bottom:2.5rem}

/* Concierge split */
.svc-split-2{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.svc-dark-box{background:linear-gradient(135deg,var(--navy-dark),var(--navy));height:480px;display:flex;align-items:center;justify-content:center;font-size:6rem;position:relative;overflow:hidden}
.svc-dark-box::before{content:"";position:absolute;top:-80px;right:-80px;width:300px;height:300px;border:1px solid rgba(255,255,255,.06);border-radius:50%}
.svc-feats{display:flex;flex-direction:column;gap:.85rem;margin:1.75rem 0}
.svc-feat{display:flex;align-items:flex-start;gap:1rem}
.svc-feat-dot{width:28px;height:28px;background:var(--gold);display:flex;align-items:center;justify-content:center;font-size:.75rem;flex-shrink:0;margin-top:.2rem}
.svc-feat-h{font-size:.82rem;font-weight:500;color:var(--navy-dark);margin-bottom:.15rem}
.svc-feat-p{font-size:.8rem;color:var(--text-muted);line-height:1.6}

/* Chef */
.svc-chef-wrap{display:grid;grid-template-columns:1.1fr 1fr;gap:4rem;align-items:start}
.svc-chef-img-box{height:420px;background:linear-gradient(135deg,#3a1a0a,#6b3a1a);display:flex;align-items:center;justify-content:center;font-size:5rem;overflow:hidden}
.svc-chef-note{font-size:.85rem;color:var(--text-muted);line-height:1.85;margin-top:1.75rem}
.svc-pricing-card{background:var(--navy);padding:2.5rem;color:white}
.svc-pg{margin-bottom:1.75rem;padding-bottom:1.75rem;border-bottom:1px solid rgba(255,255,255,.08)}
.svc-pg:last-child{margin-bottom:0;padding-bottom:0;border:none}
.svc-pg-title{font-size:.6rem;letter-spacing:.25em;text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem;font-weight:400}
.svc-pr{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.55rem;gap:1rem}
.svc-pr-lbl{font-size:.82rem;color:rgba(255,255,255,.65);flex:1;line-height:1.4}
.svc-pr-val{font-family:var(--font-serif);font-size:1.2rem;font-weight:300;color:white;white-space:nowrap}
.svc-pr-note{font-size:.7rem;color:rgba(255,255,255,.3);line-height:1.5;margin-top:.65rem}

/* Transport */
.svc-transport-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.svc-t-card{background:white;border:1px solid var(--border);padding:2rem;position:relative;transition:box-shadow .3s,transform .3s;display:flex;flex-direction:column}
.svc-t-card:hover{box-shadow:0 8px 30px rgba(31,48,96,.08);transform:translateY(-3px)}
.svc-t-icon{font-size:2.5rem;margin-bottom:1rem}
.svc-t-badge{position:absolute;top:1rem;right:1rem;font-size:.56rem;letter-spacing:.12em;text-transform:uppercase;background:var(--gold);color:var(--navy-dark);padding:.2rem .65rem;font-weight:500}
.svc-t-name{font-family:var(--font-serif);font-size:1.25rem;font-weight:400;color:var(--navy-dark);margin-bottom:.5rem}
.svc-t-desc{font-size:.82rem;color:var(--text-muted);line-height:1.75;margin-bottom:1.25rem}
.svc-t-feats{list-style:none;margin-bottom:1.5rem}
.svc-t-feats li{font-size:.78rem;color:var(--text-dark);padding:.3rem 0;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:.5rem}
.svc-t-feats li::before{content:"✓";color:var(--gold);font-weight:700;flex-shrink:0}

/* Golf Cart */
.svc-cart-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.svc-cart-card{background:white;border:1px solid var(--border);overflow:hidden;transition:box-shadow .3s,transform .3s}
.svc-cart-card:hover{box-shadow:0 8px 30px rgba(31,48,96,.08);transform:translateY(-3px)}
.svc-cart-img-box{height:200px;display:flex;align-items:center;justify-content:center;font-size:4rem}
.svc-cart-img-box--current{background:linear-gradient(135deg,var(--navy-pale),#C4D0E8)}
.svc-cart-img-box--budget{background:linear-gradient(135deg,#e8e4d4,#d4ceb8)}
.svc-cart-body{padding:1.5rem}
.svc-cart-badge{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;background:var(--navy);color:white;padding:.2rem .65rem;display:inline-block;margin-bottom:.85rem}
.svc-cart-badge--b{background:var(--text-muted)}
.svc-cart-name{font-family:var(--font-serif);font-size:1.35rem;font-weight:400;color:var(--navy-dark);margin-bottom:.35rem}
.svc-cart-desc{font-size:.8rem;color:var(--text-muted);line-height:1.7;margin-bottom:1.25rem}
.svc-cart-prices{display:grid;grid-template-columns:1fr 1fr;gap:.75rem;padding:1rem 0;border-top:1px solid var(--border)}
.svc-cp-col{text-align:center}
.svc-cp-lbl{font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.35rem}
.svc-cp-val{font-family:var(--font-serif);font-size:1.5rem;font-weight:300;color:var(--navy)}
.svc-cp-sub{font-size:.65rem;color:var(--text-muted)}
.svc-cart-note-bar{font-size:.7rem;color:var(--text-muted);padding:1rem;background:var(--navy-pale);line-height:1.6;border-top:1px solid var(--border)}

/* Baby Gear */
.svc-baby-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.svc-baby-card{background:white;border:1px solid var(--border);padding:2rem;text-align:center;transition:box-shadow .3s}
.svc-baby-card:hover{box-shadow:0 6px 25px rgba(31,48,96,.07)}
.svc-baby-icon{font-size:3rem;margin-bottom:1rem}
.svc-baby-name{font-family:var(--font-serif);font-size:1.3rem;font-weight:400;color:var(--navy-dark);margin-bottom:.5rem}
.svc-baby-desc{font-size:.8rem;color:var(--text-muted);line-height:1.7;margin-bottom:1.25rem}
.svc-baby-prices{display:flex;flex-direction:column;gap:.5rem}
.svc-bp-row{display:flex;justify-content:space-between;align-items:center;padding:.5rem .75rem;background:var(--navy-pale)}
.svc-bp-lbl{font-size:.7rem;color:var(--text-muted)}
.svc-bp-val{font-family:var(--font-serif);font-size:1.1rem;color:var(--navy);font-weight:300}

/* Shopping */
.svc-shopping-split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.svc-shopping-img{height:380px;background:linear-gradient(135deg,#1a4a2a,#2a7a4a);display:flex;align-items:center;justify-content:center;font-size:5rem;overflow:hidden}
.svc-sh-highlight{background:var(--navy-pale);border-left:3px solid var(--gold);padding:1.25rem 1.5rem;margin-bottom:1.5rem}
.svc-sh-highlight p{font-size:.88rem;color:var(--text-muted);line-height:1.75}
.svc-fee-box{background:var(--navy);padding:1.5rem;display:inline-block;min-width:250px;margin-bottom:1.5rem}
.svc-fee-label{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.75rem}
.svc-fee-val{font-family:var(--font-serif);font-size:2.2rem;font-weight:300;color:white;line-height:1}
.svc-fee-sub{font-size:.72rem;color:rgba(255,255,255,.4);margin-top:.35rem}

/* Shared WA button + buttons */
.svc-btn-wa{display:inline-flex;align-items:center;gap:.6rem;background:#25D366;color:white;border:none;padding:1rem 2rem;font-family:var(--font-sans);font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;text-decoration:none;font-weight:500;cursor:pointer;transition:background .3s}
.svc-btn-wa:hover{background:#1fa855}
.svc-btn-wa--full{width:100%;justify-content:center;margin-top:auto}
.svc-btn-group{display:flex;gap:.85rem;flex-wrap:wrap;margin-top:2rem}
.svc-center{display:flex;justify-content:center;margin-top:2rem}
.svc-btn-gold{background:var(--gold);color:var(--navy-dark);border:none;padding:1rem 2.5rem;font-family:var(--font-sans);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;text-decoration:none;font-weight:500;transition:background .3s;display:inline-block}
.svc-btn-gold:hover{background:#b8923e}
.svc-btn-ow{background:transparent;color:rgba(255,255,255,.85);border:1px solid rgba(255,255,255,.35);padding:1rem 2.5rem;font-family:var(--font-sans);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;text-decoration:none;font-weight:300;transition:border-color .3s,color .3s;display:inline-block}
.svc-btn-ow:hover{border-color:white;color:white}

/* CTA band */
.svc-cta-band{background:var(--navy-dark);padding:5rem 4rem;text-align:center;position:relative;overflow:hidden}
.svc-cta-inner{position:relative;z-index:1}
.svc-cta-ey{font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:1.25rem;display:flex;align-items:center;justify-content:center;gap:.75rem}
.svc-cta-ey::before{content:"";display:block;width:24px;height:1.5px;background:rgba(255,255,255,.3)}
.svc-cta-t{font-family:var(--font-serif);font-size:clamp(2rem,3.5vw,3rem);font-weight:300;color:white;max-width:620px;margin:0 auto 1rem;line-height:1.1}
.svc-cta-t em{font-style:italic;color:rgba(255,255,255,.55)}
.svc-cta-s{color:rgba(255,255,255,.45);font-size:.9rem;max-width:480px;margin:0 auto 2.5rem}
.svc-cta-acts{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* Services responsive */
@media(max-width:1024px){
  .svc-steps-strip{grid-template-columns:1fr 1fr;padding:3rem 1.5rem}
  .svc-step::after{display:none}
  .svc-section{padding:4rem 1.5rem}
  .svc-split-2,.svc-chef-wrap,.svc-shopping-split{grid-template-columns:1fr;gap:2.5rem}
  .svc-dark-box,.svc-chef-img-box,.svc-shopping-img{height:280px}
  .svc-transport-grid{grid-template-columns:1fr}
  .svc-cart-grid{grid-template-columns:1fr 1fr}
  .svc-baby-grid{grid-template-columns:1fr 1fr}
  .svc-cta-band{padding:4rem 1.5rem}
}
@media(max-width:640px){
  .svc-cart-grid,.svc-baby-grid{grid-template-columns:1fr}
  .svc-steps-strip{grid-template-columns:1fr}
}

/* ═══════════════════════════════════════════
   MANAGEMENT PAGE
═══════════════════════════════════════════ */

/* Hero overrides */
.page-hero--mgmt{min-height:100vh;align-items:center}
.mgmt-hero-bg{position:absolute;inset:0;background:linear-gradient(135deg,#0a1020 0%,var(--navy-dark) 40%,var(--navy) 100%)}
.mgmt-hero-pattern{position:absolute;inset:0;opacity:.035;background-image:repeating-linear-gradient(45deg,white 0,white 1px,transparent 0,transparent 50%);background-size:24px 24px}
.mgmt-hero-gold-line{position:absolute;top:0;left:4rem;width:1px;height:100%;background:linear-gradient(to bottom,transparent,var(--gold),transparent);opacity:.25}
.mgmt-hero-content{position:relative;z-index:2;padding:0 4rem;max-width:900px}
.mgmt-hero-eyebrow{font-size:.62rem;letter-spacing:.4em;text-transform:uppercase;color:var(--gold);margin-bottom:1.5rem;display:flex;align-items:center;gap:.85rem}
.mgmt-hero-eyebrow::before{content:"";display:block;width:32px;height:1px;background:var(--gold)}
.mgmt-hero-content h1{font-family:var(--font-serif);font-size:clamp(3rem,7vw,6.5rem);font-weight:300;color:white;line-height:1.0;margin-bottom:1.5rem}
.mgmt-hero-content h1 em{font-style:italic;color:rgba(255,255,255,.55);display:block}
.mgmt-hero-content h1 strong{font-weight:300;color:var(--gold)}
.mgmt-hero-sub{font-size:1rem;color:rgba(255,255,255,.5);max-width:580px;line-height:1.85;margin-bottom:3rem}
.mgmt-hero-ctas{display:flex;gap:1rem;flex-wrap:wrap}
.mgmt-btn-gold-lg{background:var(--gold);color:var(--navy-dark);border:none;padding:1.15rem 2.75rem;font-family:var(--font-sans);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;text-decoration:none;font-weight:500;transition:background .3s;display:inline-flex;align-items:center;gap:.6rem}
.mgmt-btn-gold-lg:hover{background:#b8923e}
.mgmt-btn-outline-gold{background:transparent;color:var(--gold);border:1px solid rgba(201,168,76,.4);padding:1.15rem 2.75rem;font-family:var(--font-sans);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;text-decoration:none;font-weight:300;transition:all .3s;display:inline-block}
.mgmt-btn-outline-gold:hover{border-color:var(--gold);background:rgba(201,168,76,.08)}
.mgmt-hero-stats{position:absolute;right:4rem;bottom:4rem;display:flex;flex-direction:column;gap:2rem;z-index:2}
.mgmt-hero-stat{text-align:right;position:relative;padding-right:1.5rem}
.mgmt-hero-stat::after{content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);width:1px;height:60%;background:var(--gold);opacity:.3}
.mgmt-hero-stat h3{font-family:var(--font-serif);font-size:2.8rem;font-weight:300;color:white;line-height:1}
.mgmt-hero-stat h3 span{color:var(--gold)}
.mgmt-hero-stat p{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.55);margin-top:.25rem}

/* Statement strip */
.mgmt-statement-strip{background:var(--gold);padding:2rem 4rem;display:flex;align-items:center;justify-content:center;gap:3rem;flex-wrap:wrap}
.mgmt-statement-item{display:flex;align-items:center;gap:.85rem}
.mgmt-statement-icon{font-size:1.4rem}
.mgmt-statement-text{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--navy-dark);font-weight:500}

/* Why split */
.mgmt-why-split{display:grid;grid-template-columns:1fr 1fr;gap:0}
.mgmt-why-content{padding:7rem 5rem;background:var(--navy-dark)}
.mgmt-why-visual{background:linear-gradient(160deg,#0d1828 0%,var(--navy) 100%);display:flex;align-items:center;justify-content:center;flex-direction:column;gap:3rem;padding:4rem;position:relative;overflow:hidden}
.mgmt-why-visual::before{content:"";position:absolute;top:-100px;right:-100px;width:400px;height:400px;border:1px solid rgba(201,168,76,.08);border-radius:50%}
.mgmt-stat-card{background:rgba(255,255,255,.04);border:1px solid rgba(201,168,76,.15);padding:2rem 2.5rem;width:100%;position:relative;z-index:1}
.mgmt-stat-card h3{font-family:var(--font-serif);font-size:3.5rem;font-weight:300;color:white;line-height:1;margin-bottom:.35rem}
.mgmt-stat-card h3 span{color:var(--gold)}
.mgmt-stat-card p{font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:rgba(255,255,255,.55)}
.mgmt-why-feats{display:flex;flex-direction:column;gap:1.5rem;margin:2rem 0 2.5rem}
.mgmt-why-feat{display:flex;align-items:flex-start;gap:1.25rem}
.mgmt-why-feat-num{font-family:var(--font-serif);font-size:1.8rem;font-weight:300;color:var(--gold);opacity:.4;line-height:1;flex-shrink:0;width:32px}
.mgmt-why-feat-body h4{font-size:.82rem;font-weight:500;color:white;margin-bottom:.25rem;letter-spacing:.03em}
.mgmt-why-feat-body p{font-size:.8rem;color:rgba(255,255,255,.65);line-height:1.7}

/* Sections */
.mgmt-section{padding:7rem 4rem}
.mgmt-section--dark{background:var(--navy-dark);color:white}
.mgmt-section--navy{background:var(--navy);color:white}
.mgmt-section--off{background:var(--off-white)}
.mgmt-section--white{background:var(--white)}
.mgmt-ey{font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;margin-bottom:.85rem;display:flex;align-items:center;gap:.6rem;font-weight:400}
.mgmt-section--white .mgmt-ey,.mgmt-section--off .mgmt-ey{color:var(--navy)}
.mgmt-section--white .mgmt-ey::before,.mgmt-section--off .mgmt-ey::before{content:"";display:block;width:20px;height:1.5px;background:var(--navy)}
.mgmt-section--dark .mgmt-ey,.mgmt-section--navy .mgmt-ey{color:var(--gold)}
.mgmt-section--dark .mgmt-ey::before,.mgmt-section--navy .mgmt-ey::before{content:"";display:block;width:20px;height:1.5px;background:var(--gold)}
.mgmt-why-content .mgmt-ey{color:var(--gold)}
.mgmt-why-content .mgmt-ey::before{content:"";display:block;width:20px;height:1.5px;background:var(--gold)}
.mgmt-sec-t{font-family:var(--font-serif);font-size:clamp(2rem,3.5vw,3.2rem);font-weight:300;line-height:1.1;margin-bottom:1rem}
.mgmt-section--white .mgmt-sec-t,.mgmt-section--off .mgmt-sec-t{color:var(--navy-dark)}
.mgmt-section--dark .mgmt-sec-t,.mgmt-section--navy .mgmt-sec-t{color:white}
.mgmt-sec-t em{font-style:italic}
.mgmt-section--white .mgmt-sec-t em,.mgmt-section--off .mgmt-sec-t em{color:var(--navy)}
.mgmt-section--dark .mgmt-sec-t em,.mgmt-section--navy .mgmt-sec-t em{color:rgba(255,255,255,.55)}
.mgmt-sec-d{font-size:.92rem;line-height:1.9;max-width:580px;margin-bottom:2.5rem}
.mgmt-section--white .mgmt-sec-d,.mgmt-section--off .mgmt-sec-d{color:var(--text-muted)}
.mgmt-section--dark .mgmt-sec-d,.mgmt-section--navy .mgmt-sec-d{color:rgba(255,255,255,.65)}
.mgmt-why-content .mgmt-sec-d,.mgmt-lead-content .mgmt-sec-d{color:rgba(255,255,255,.65)}

/* Luxury intro */
.mgmt-luxury-intro{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center;margin-bottom:3.5rem}
.mgmt-luxury-img{height:520px;background:linear-gradient(160deg,var(--navy-dark),var(--navy-light));display:flex;align-items:center;justify-content:center;font-size:6rem;position:relative;overflow:hidden}
.mgmt-luxury-img::before{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.4),transparent)}
.mgmt-luxury-badge{position:absolute;bottom:2rem;left:2rem;background:var(--gold);color:var(--navy-dark);font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;padding:.5rem 1.25rem;font-weight:500}
.mgmt-luxury-t{font-family:var(--font-serif);font-size:clamp(1.6rem,2.5vw,2.2rem);font-weight:300;color:var(--navy-dark);line-height:1.15;margin-bottom:.85rem}
.mgmt-luxury-t em{font-style:italic;color:var(--navy)}
.mgmt-luxury-d{font-size:.9rem;color:var(--text-muted);line-height:1.85;margin-bottom:2rem}
.mgmt-luxury-features{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:2.5rem}
.mgmt-lux-feat{background:var(--navy-pale);border:1px solid var(--border);padding:1.25rem}
.mgmt-lux-feat-icon{font-size:1.5rem;margin-bottom:.5rem}
.mgmt-lux-feat-title{font-size:.75rem;font-weight:500;color:var(--navy-dark);margin-bottom:.25rem;letter-spacing:.05em}
.mgmt-lux-feat-desc{font-size:.75rem;color:var(--text-muted);line-height:1.6}

/* Property types */
.mgmt-prop-types{display:grid;grid-template-columns:1fr 1fr;gap:2rem;margin-top:3.5rem}
.mgmt-prop-type-card{position:relative;overflow:hidden;border:1px solid var(--border)}
.mgmt-prop-type-card--featured{border-color:var(--gold)}
.mgmt-ptc-header{padding:2.5rem 2.5rem 2rem;background:var(--navy)}
.mgmt-ptc-header--villa{background:linear-gradient(135deg,var(--navy-dark),var(--navy))}
.mgmt-ptc-tag{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;background:var(--gold);color:var(--navy-dark);padding:.25rem .75rem;display:inline-block;margin-bottom:1rem;font-weight:500}
.mgmt-ptc-tag--apt{background:rgba(255,255,255,.15);color:white}
.mgmt-ptc-icon{font-size:3rem;margin-bottom:1rem}
.mgmt-ptc-name{font-family:var(--font-serif);font-size:1.75rem;font-weight:300;color:white;margin-bottom:.5rem}
.mgmt-ptc-sub{font-size:.78rem;color:rgba(255,255,255,.5);line-height:1.65}
.mgmt-ptc-body{padding:2rem 2.5rem;background:white}
.mgmt-prop-type-card--featured .mgmt-ptc-body{background:var(--gold-light)}
.mgmt-ptc-includes-label{font-size:.78rem;color:var(--navy);font-weight:500;letter-spacing:.05em;text-transform:uppercase;margin-bottom:.85rem;padding-bottom:.75rem;border-bottom:1px solid var(--border)}
.mgmt-ptc-includes{list-style:none;margin-bottom:1.5rem}
.mgmt-ptc-includes li{font-size:.82rem;color:var(--text-dark);padding:.45rem 0;border-bottom:1px solid var(--border);display:flex;align-items:flex-start;gap:.6rem;line-height:1.5}
.mgmt-ptc-includes li::before{content:"✦";color:var(--gold);font-size:.65rem;flex-shrink:0;margin-top:.25rem}
.mgmt-featured-ribbon{position:absolute;top:1.25rem;right:1.25rem;background:var(--gold);color:var(--navy-dark);font-size:.55rem;letter-spacing:.18em;text-transform:uppercase;padding:.3rem .85rem;font-weight:500}

/* Difference callout */
.mgmt-diff-callout{margin-top:2.5rem;background:var(--navy-dark);padding:2rem 2.5rem;display:grid;grid-template-columns:auto 1fr;gap:1.5rem;align-items:start}
.mgmt-diff-icon{color:var(--gold);font-size:1.75rem;margin-top:.2rem}
.mgmt-diff-title{font-size:.8rem;font-weight:500;color:white;margin-bottom:.4rem;letter-spacing:.05em}
.mgmt-diff-desc{font-size:.82rem;color:rgba(255,255,255,.6);line-height:1.8}
.mgmt-diff-desc strong{color:rgba(255,255,255,.85)}

/* Services grid */
.mgmt-services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.08);margin-top:3.5rem}
.mgmt-svc-item{background:rgba(255,255,255,.03);padding:2.5rem 2rem;border:1px solid rgba(255,255,255,.06);transition:background .3s}
.mgmt-svc-item:hover{background:rgba(255,255,255,.07)}
.mgmt-svc-num{font-family:var(--font-serif);font-size:2rem;font-weight:300;color:var(--gold);opacity:.3;line-height:1;margin-bottom:.85rem}
.mgmt-svc-icon{font-size:1.75rem;margin-bottom:.85rem}
.mgmt-svc-name{font-family:var(--font-serif);font-size:1.15rem;font-weight:400;color:white;margin-bottom:.5rem}
.mgmt-svc-desc{font-size:.8rem;color:rgba(255,255,255,.65);line-height:1.75}

/* Channels */
.mgmt-channels-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border);margin-top:3rem}
.mgmt-channel-cell{background:white;padding:2rem;text-align:center;transition:background .2s}
.mgmt-channel-cell:hover{background:var(--navy-pale)}
.mgmt-ch-icon{font-size:2.5rem;margin-bottom:.85rem}
.mgmt-ch-name{font-family:var(--font-serif);font-size:1.1rem;font-weight:400;color:var(--navy-dark);margin-bottom:.3rem}
.mgmt-ch-reach{font-size:.72rem;color:var(--text-muted)}
.mgmt-ch-live{display:inline-flex;align-items:center;gap:.4rem;font-size:.62rem;color:#2ecc71;letter-spacing:.08em;margin-top:.5rem}
.mgmt-ch-live::before{content:"";display:block;width:6px;height:6px;background:#2ecc71;border-radius:50%}

/* Revenue */
.mgmt-revenue-split{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.mgmt-revenue-visual{background:var(--navy-dark);padding:3rem;border:1px solid rgba(201,168,76,.15)}
.mgmt-rev-visual-label{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:1.75rem}
.mgmt-rev-bar{margin-bottom:1.5rem}
.mgmt-rev-bar-label{display:flex;justify-content:space-between;margin-bottom:.5rem}
.mgmt-rev-bar-name{font-size:.72rem;color:rgba(255,255,255,.6);letter-spacing:.05em}
.mgmt-rev-bar-val{font-family:var(--font-serif);font-size:1.1rem;color:white;font-weight:300}
.mgmt-rev-bar-track{height:6px;background:rgba(255,255,255,.08)}
.mgmt-rev-bar-fill{height:6px;background:var(--gold)}
.mgmt-rev-note{font-size:.72rem;color:rgba(255,255,255,.3);margin-top:1.5rem;line-height:1.65;border-top:1px solid rgba(255,255,255,.07);padding-top:1.25rem}
.mgmt-rev-perks{display:flex;flex-direction:column;gap:1rem}
.mgmt-rev-perk{display:flex;align-items:flex-start;gap:1rem}
.mgmt-rev-perk-dot{width:8px;height:8px;background:var(--gold);flex-shrink:0;margin-top:.45rem}
.mgmt-rev-perk-text h4{font-size:.82rem;font-weight:500;color:var(--navy-dark);margin-bottom:.2rem}
.mgmt-rev-perk-text p{font-size:.8rem;color:var(--text-muted);line-height:1.65}

/* Process */
.mgmt-process-steps{display:flex;flex-direction:column;gap:0;margin-top:3rem}
.mgmt-process-step{display:grid;grid-template-columns:100px 1fr;gap:2.5rem;padding:2.5rem 0;border-bottom:1px solid rgba(255,255,255,.07);align-items:start}
.mgmt-process-step:first-child{border-top:1px solid rgba(255,255,255,.07)}
.mgmt-ps-num{font-family:var(--font-serif);font-size:3rem;font-weight:300;color:white;opacity:.12;line-height:1}
.mgmt-ps-body h4{font-family:var(--font-serif);font-size:1.3rem;font-weight:400;color:white;margin-bottom:.4rem}
.mgmt-ps-body p{font-size:.84rem;color:rgba(255,255,255,.65);line-height:1.8}
.mgmt-ps-tag{display:inline-block;font-size:.55rem;letter-spacing:.15em;text-transform:uppercase;background:rgba(201,168,76,.15);color:var(--gold);padding:.25rem .75rem;margin-bottom:.75rem;border:1px solid rgba(201,168,76,.2)}

/* Testimonials */
.mgmt-testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.mgmt-testi-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.07);padding:2rem}
.mgmt-testi-stars{color:var(--gold);font-size:.85rem;margin-bottom:1rem;letter-spacing:.15em}
.mgmt-testi-quote{font-family:var(--font-serif);font-size:1.05rem;font-weight:300;color:rgba(255,255,255,.8);line-height:1.75;font-style:italic;margin-bottom:1.25rem}
.mgmt-testi-author{font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.3)}
.mgmt-testi-prop{font-size:.68rem;color:var(--gold);opacity:.7;margin-top:.2rem}

/* FAQ */
.mgmt-faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;margin-top:3.5rem}
.mgmt-faq-col{display:flex;flex-direction:column;gap:0}
.mgmt-faq-item{border-bottom:1px solid var(--border);padding:1.5rem 0;cursor:pointer}
.mgmt-faq-item:first-child{border-top:1px solid var(--border)}
.mgmt-faq-q{font-family:var(--font-serif);font-size:1.05rem;font-weight:400;color:var(--navy-dark);display:flex;justify-content:space-between;align-items:center;gap:1rem;user-select:none}
.mgmt-faq-toggle{font-size:1.2rem;color:var(--navy);transition:transform .2s;flex-shrink:0}
.mgmt-faq-a{font-size:.84rem;color:var(--text-muted);line-height:1.8;margin-top:.75rem;display:none}
.mgmt-faq-item.open .mgmt-faq-a{display:block}
.mgmt-faq-item.open .mgmt-faq-toggle{transform:rotate(45deg)}

/* Lead form */
.mgmt-lead-section{display:grid;grid-template-columns:1fr 1fr;gap:0;min-height:580px}
.mgmt-lead-content{background:var(--navy-dark);padding:6rem 5rem;display:flex;flex-direction:column;justify-content:center;position:relative;overflow:hidden}
.mgmt-lead-content::before{content:"";position:absolute;top:-100px;right:-100px;width:350px;height:350px;border:1px solid rgba(201,168,76,.06);border-radius:50%}
.mgmt-lead-bullets{margin-top:2rem;padding:1.5rem;background:rgba(201,168,76,.08);border:1px solid rgba(201,168,76,.2)}
.mgmt-lead-bullets p{font-size:.78rem;color:rgba(255,255,255,.65);line-height:1.85}
.mgmt-lead-form-side{background:white;padding:5rem 4rem;display:flex;flex-direction:column;justify-content:center}
.mgmt-form-title{font-family:var(--font-serif);font-size:1.75rem;font-weight:300;color:var(--navy-dark);margin-bottom:.35rem}
.mgmt-form-sub{font-size:.82rem;color:var(--text-muted);margin-bottom:2rem;line-height:1.6}
.mgmt-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.mgmt-fg{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.85rem}
.mgmt-fl{font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:var(--navy);font-weight:400}
.mgmt-fi,.mgmt-fs,.mgmt-fta{border:1px solid var(--border);background:white;color:var(--text-dark);padding:.85rem 1rem;font-family:var(--font-sans);font-size:.88rem;outline:none;transition:border-color .2s;width:100%;font-weight:300;border-radius:0;-webkit-appearance:none;appearance:none}
.mgmt-fi:focus,.mgmt-fs:focus,.mgmt-fta:focus{border-color:var(--navy)}
.mgmt-fta{min-height:100px;resize:vertical}
.mgmt-fs{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7494' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center;background-color:white;padding-right:2.5rem;cursor:pointer}
.mgmt-submit-btn{width:100%;background:var(--navy);color:white;border:none;padding:1.1rem;font-family:var(--font-sans);font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;font-weight:500;cursor:pointer;transition:background .3s;margin-top:.5rem}
.mgmt-submit-btn:hover{background:var(--navy-dark)}
.mgmt-or-divider{text-align:center;font-size:.72rem;color:var(--text-muted);margin:1.25rem 0;letter-spacing:.08em}
.mgmt-wa-btn-form{width:100%;background:#25D366;color:white;border:none;padding:1rem;font-family:var(--font-sans);font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;font-weight:500;cursor:pointer;transition:background .3s;display:flex;align-items:center;justify-content:center;gap:.6rem;text-decoration:none}
.mgmt-wa-btn-form:hover{background:#1fa855}
.mgmt-notice{padding:1rem 1.5rem;margin-bottom:1.5rem;font-size:.875rem;line-height:1.65}
.mgmt-notice--success{background:#e6f9ee;border-left:3px solid #25D366;color:#0d5c2a}
.mgmt-notice--error{background:#fef2f2;border-left:3px solid #c0392b;color:#7b1c1c}

/* Shared management buttons */
.mgmt-btn-gold{background:var(--gold);color:var(--navy-dark);border:none;padding:1rem 2.5rem;font-family:var(--font-sans);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;text-decoration:none;font-weight:500;transition:background .3s;display:inline-block;cursor:pointer}
.mgmt-btn-gold:hover{background:#b8923e}
.mgmt-btn-gold--block{width:100%;text-align:center;display:block;margin-top:1rem}
.mgmt-btn-gold--navy{background:var(--navy);color:white}
.mgmt-btn-gold--navy:hover{background:var(--navy-dark)}
.mgmt-btn-wa{display:inline-flex;align-items:center;gap:.6rem;background:#25D366;color:white;border:none;padding:1rem 2rem;font-family:var(--font-sans);font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;text-decoration:none;font-weight:500;cursor:pointer;transition:background .3s}
.mgmt-btn-wa:hover{background:#1fa855}
.mgmt-btn-group{display:flex;gap:.85rem;flex-wrap:wrap;margin-top:2rem}

/* Management responsive */
@media(max-width:1200px){
  .mgmt-why-split{grid-template-columns:1fr}
  .mgmt-why-visual{display:none}
  .mgmt-luxury-intro{grid-template-columns:1fr}
  .mgmt-luxury-img{height:300px}
  .mgmt-services-grid{grid-template-columns:1fr 1fr}
  .mgmt-channels-grid{grid-template-columns:1fr 1fr}
  .mgmt-testimonials-grid{grid-template-columns:1fr}
  .mgmt-lead-section{grid-template-columns:1fr}
  .mgmt-hero-stats{display:none}
}
@media(max-width:1024px){
  .mgmt-hero-content{padding:0 1.5rem}
  .mgmt-section{padding:5rem 1.5rem}
  .mgmt-prop-types{grid-template-columns:1fr}
  .mgmt-revenue-split{grid-template-columns:1fr}
  .mgmt-faq-grid{grid-template-columns:1fr}
  .mgmt-statement-strip{padding:1.5rem}
  .mgmt-lead-content{padding:4rem 2.5rem}
  .mgmt-lead-form-side{padding:3rem 2rem}
  .mgmt-why-content{padding:5rem 2.5rem}
}
@media(max-width:640px){
  .mgmt-services-grid{grid-template-columns:1fr}
  .mgmt-channels-grid{grid-template-columns:1fr 1fr}
  .mgmt-luxury-features{grid-template-columns:1fr}
  .mgmt-form-grid{grid-template-columns:1fr}
}


/* ── LANGUAGE SWITCHER ── */
.lang-switch {
  display: flex; align-items: center; gap: 0.25rem;
  margin-right: 0.5rem;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  padding: 0.2rem 0.1rem; transition: color 0.3s;
  line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.lang-btn.active { color: var(--gold); font-weight: 500; }
.lang-sep {
  color: rgba(255,255,255,0.25); font-size: 0.65rem;
  line-height: 1; user-select: none;
}
.nav-logo-img { display: block; }
/* Mobile lang switcher */
.lang-switch--mobile {
  margin-top: 1rem; justify-content: center;
}
.lang-switch--mobile .lang-btn { font-size: 0.8rem; padding: 0.3rem 0.4rem; }
@media (max-width: 900px) {
  .lang-switch:not(.lang-switch--mobile) { display: none; }
}
