/* ═══════════════════════════════════════════════════════════════════
   theme.css — Marrakech Home WordPress Theme
   Scoped to avoid conflicts with Elementor.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ────────────────────────────────────── */
:root {
  --mh-white:      #ffffff;
  --mh-black:      #111111;
  --mh-near-black: #181818;
  --mh-dark-bg:    #111111;
  --mh-mid-gray:   #888888;
  --mh-light-gray: #e8e8e8;
  --mh-off-white:  #f5f0e8;
  --mh-gold:       #cca353;
  --mh-gold-dark:  #a07c35;
  --mh-gold-light: rgba(204,163,83,0.18);
  --mh-font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mh-header-h:   64px;
  --mh-ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Base (scoped — no global margin/padding wipe that Elementor fights) */
html { scroll-behavior: smooth; }

body {
  font-family: var(--mh-font);
  background: var(--mh-off-white);
  color: var(--mh-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scoped link reset — only inside our theme sections */
.site-header a,
main a,
.site-footer a {
  text-decoration: none;
  color: inherit;
}

/* Scoped image reset — only inside our sections, not global (Elementor safety) */
.site-header img,
.hero img,
.mask-section img,
.nyc-section img,
.strip-section img,
.steps-section img,
.capabilities-section img,
.agents-section img,
.beyond-section img,
.blog-section img,
.cta-section img,
.contact-section img,
.site-footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

address { font-style: normal; }

/* ─── Scroll-reveal utility ────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--mh-ease), transform 0.75s var(--mh-ease);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.9s var(--mh-ease), transform 0.9s var(--mh-ease);
}
.reveal-up.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--mh-header-h);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--mh-black);
}
.logo svg { height: 28px; width: auto; }
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain !important;
  display: block;
}

/* Override scoped image reset for logo specifically */
.site-header .logo img,
.site-header .logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mh-black);
  border-radius: 50px;
  transition: background 0.2s;
}
.nav-link:hover { background: rgba(0,0,0,0.06); }

.btn-signin {
  flex-shrink: 0;
  padding: 10px 22px;
  background: var(--mh-gold);
  color: var(--mh-white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-signin:hover { background: var(--mh-gold-dark); transform: scale(1.03); box-shadow: 0 6px 24px rgba(204,163,83,0.35); }

/* ─── Language Switcher ──────────────────────────────────────── */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mh-font);
  color: var(--mh-black);
  cursor: pointer;
  transition: all 0.3s var(--mh-ease);
  white-space: nowrap;
  line-height: 1;
}
.lang-switcher-btn:hover {
  border-color: var(--mh-gold);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}
.lang-current-label {
  display: inline-block;
  opacity: 0.8;
}
/* Badge shown in button — e.g. "EN" */
.lang-switcher-btn .lang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  background: var(--mh-gold);
  color: #fff;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(204,163,83,0.2);
}
.lang-switcher-btn .lang-chevron {
  width: 10px;
  height: 10px;
  transition: transform 0.4s var(--mh-ease);
  flex-shrink: 0;
  opacity: 0.4;
}
.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}
.lang-switcher.open .lang-switcher-btn {
  border-color: var(--mh-gold);
  background: #fff;
}

/* Dropdown list — force reset against WP/Elementor global styles */
ul.lang-dropdown {
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important;
  min-width: 180px !important;
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 16px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 8px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(10px) !important;
  transition: opacity 0.3s var(--mh-ease), transform 0.3s var(--mh-ease) !important;
  z-index: 9990 !important;
}
.lang-switcher.open ul.lang-dropdown {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
ul.lang-dropdown li {
  margin: 0 !important;
  padding: 2px 0 !important;
  list-style: none !important;
}
ul.lang-dropdown li::before,
ul.lang-dropdown li::after {
  display: none !important;
}
ul.lang-dropdown a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: var(--mh-black) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  position: relative;
}
ul.lang-dropdown a:hover {
  background: rgba(204,163,83,0.08) !important;
  color: var(--mh-gold-dark) !important;
  padding-left: 16px !important;
}
ul.lang-dropdown a.active {
  background: rgba(204,163,83,0.12) !important;
  color: var(--mh-gold-dark) !important;
  font-weight: 600 !important;
}
/* Badge inside dropdown rows */
ul.lang-dropdown .lang-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 32px !important;
  height: 22px !important;
  background: rgba(0,0,0,0.05) !important;
  border-radius: 50px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  flex-shrink: 0 !important;
  color: var(--mh-black) !important;
  transition: all 0.2s !important;
}
ul.lang-dropdown a.active .lang-badge,
ul.lang-dropdown a:hover .lang-badge {
  background: var(--mh-gold) !important;
  color: #fff !important;
}
ul.lang-dropdown .lang-item-name { flex: 1; }
ul.lang-dropdown .active-check {
  width: 14px;
  height: 14px;
  color: var(--mh-gold);
}

/* Scrolled header — adjust border */
.site-header.scrolled .lang-switcher-btn {
  border-color: rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .lang-current-label { display: none; }
  .lang-switcher-btn { padding: 6px 10px 6px 6px; }
}

/* ─── RTL Support (Arabic) ────────────────────────────────────── */
.is-rtl .header-inner {
  flex-direction: row; /* dir="rtl" handles item order naturally */
  justify-content: space-between;
}
.is-rtl .logo {
  margin-left: auto; /* Push everything else away from the logo (start/right) */
}
.is-rtl .main-nav {
  margin-right: 0;
  margin-left: 0;
  flex: none; /* Let its natural size define it */
}
.is-rtl .btn-signin {
  margin-left: 12px;
  margin-right: 0;
}
.is-rtl .lang-switcher {
  margin-right: 0;
}
.is-rtl ul.lang-dropdown {
  right: auto !important;
  left: 0 !important;
}
.is-rtl .lang-switcher-btn {
  padding: 6px 8px 6px 14px;
}
.is-rtl .lang-chevron {
  transform: scaleX(-1);
}
.is-rtl.open .lang-chevron {
  transform: scaleX(-1) rotate(180deg);
}
.is-rtl .active-check {
  margin-right: auto;
  margin-left: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 110; /* always above mobile-nav overlay */
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mh-black);
  border-radius: 2px;
  transition: transform 0.35s var(--mh-ease), opacity 0.25s, background 0.3s;
  transform-origin: center;
}

/* Hamburger → X when menu is open */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* White bars when overlay is open (dark background) */
.hamburger[aria-expanded="true"] span {
  background: var(--mh-white);
}

/* ══════════════════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--mh-near-black);
  z-index: 105; /* above header (100) but below hamburger (110) */
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--mh-ease);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}

/* Top bar inside overlay: logo area */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--mh-header-h);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mobile-nav-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); /* Subtile circle */
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mh-white);
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 120; /* Ensure it is clickable above everything */
  opacity: 0.8;
}
.mobile-nav-close svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s var(--mh-ease);
}
.mobile-nav-close:hover {
  background: var(--mh-gold);
  border-color: var(--mh-gold);
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(204, 163, 83, 0.35);
}
.mobile-nav-close:hover svg {
  transform: rotate(90deg); /* Beautiful rotation on hover */
}

/* Nav links */
.mobile-nav-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav nav a {
  display: block;
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.3s var(--mh-ease);
}
.mobile-nav nav a:first-child {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav nav a:hover {
  color: var(--mh-gold);
  padding-left: 8px;
}

/* Stagger link animation on open */
.mobile-nav.open nav a {
  animation: mhNavLinkIn 0.45s var(--mh-ease) both;
}
.mobile-nav.open nav a:nth-child(1) { animation-delay: 0.05s; }
.mobile-nav.open nav a:nth-child(2) { animation-delay: 0.10s; }
.mobile-nav.open nav a:nth-child(3) { animation-delay: 0.15s; }
.mobile-nav.open nav a:nth-child(4) { animation-delay: 0.20s; }
.mobile-nav.open nav a:nth-child(5) { animation-delay: 0.25s; }
.mobile-nav.open nav a:nth-child(6) { animation-delay: 0.30s; }

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

/* Bottom: CTA + socials */
.mobile-nav-footer {
  padding: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.mobile-nav-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--mh-gold);
  color: var(--mh-white);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.mobile-nav-book:hover {
  background: var(--mh-gold-dark);
  transform: scale(1.03);
}
.mobile-nav-book svg { width: 16px; height: 16px; flex-shrink: 0; }

.mobile-nav-socials {
  display: flex;
  gap: 20px;
}
.mobile-nav-socials a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.mobile-nav-socials a:hover { color: var(--mh-white); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(255,200,100,0.5) 0%, transparent 52%),
    radial-gradient(ellipse at 80% 70%, rgba(220,160,80,0.35) 0%, transparent 45%),
    linear-gradient(168deg, #e8dcc8 0%, #ddd0b8 22%, #d4c5a0 46%, #c8b888 72%, #bfad80 100%);
  will-change: transform;
}

.hero-building {
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  width: min(860px, 88vw);
  height: auto;
  aspect-ratio: 860 / 540;
  object-fit: cover !important;
  object-position: top center;
  border-radius: 12px 12px 0 0;
  will-change: transform;
  z-index: 1;
  opacity: 0.9;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-top: -160px;
  will-change: opacity, transform;
  pointer-events: auto;
}

.hero-headline {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: rgba(30,20,10,0.80);
  margin-bottom: 16px;
  animation: mhFadeSlideDown 1.2s var(--mh-ease) 0.2s both;
}
.hero-sub {
  font-size: clamp(15px, 1.7vw, 20px);
  color: rgba(30,20,10,0.55);
  margin-bottom: 36px;
  animation: mhFadeSlideDown 1.2s var(--mh-ease) 0.4s both;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-pill:hover { transform: scale(1.04); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }

.btn-gold {
  background: var(--mh-gold);
  color: var(--mh-white);
  border: none;
}
.btn-gold:hover {
  background: var(--mh-gold-dark);
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(204,163,83,0.35);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--mh-white);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline-sm svg { width: 16px; height: 16px; }
.btn-outline-sm:hover { background: rgba(255,255,255,0.1); }

.btn-pill-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--mh-black);
  color: var(--mh-black);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-pill-sm svg { width: 16px; height: 16px; }
.btn-pill-sm:hover { background: var(--mh-black); color: var(--mh-white); }

/* Scroll hint mouse icon */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: mhBounce 2.4s ease-in-out infinite;
  transition: opacity 0.3s;
}
.mouse-icon {
  width: 22px; height: 34px;
  border: 2px solid rgba(30,30,30,0.4);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.mouse-wheel {
  width: 3px; height: 7px;
  background: rgba(30,30,30,0.4);
  border-radius: 2px;
  animation: mhWheel 2.4s ease-in-out infinite;
}

@keyframes mhFadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mhBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes mhWheel {
  0%  { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(10px); }
  100%{ opacity: 0; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   MASK REVEAL SECTION
══════════════════════════════════════════ */
.mask-section {
  position: relative;
  height: 220vh;
}
.mask-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.mask-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 15% 55%, rgba(220,175,100,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 45%, rgba(200,155,80,0.3) 0%, transparent 45%),
    linear-gradient(170deg, #e8dcc8 0%, #d9c9a8 25%, #ccb888 50%, #c2aa78 80%, #b89d68 100%);
}
.mask-bg {
  position: absolute;
  inset: 0;
  background: url('https://marrakechhome.com/wp-content/uploads/2026/02/DSC_9029-scaled.webp') center/cover no-repeat;
}
.mask-text-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.mask-text {
  display: block;
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
  color: transparent;
  background: none;
  transition: opacity 0.3s;
}
.mask-sub-text {
  display: block;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 1px rgba(80,60,40,0.75);
  color: transparent;
  background: none;
}

/* ══════════════════════════════════════════
   WHY MARRAKECH HOME
══════════════════════════════════════════ */
.why-section {
  background: var(--mh-off-white);
  padding: 120px 32px;
  position: relative;
}
.why-section::before,
.why-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
}
.why-section::before {
  left: 0;
  background: linear-gradient(to right, var(--mh-gold-light), transparent);
}
.why-section::after {
  right: 0;
  background: linear-gradient(to left, var(--mh-gold-light), transparent);
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
.why-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-mid-gray);
  padding-top: 8px;
}
.why-headline {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--mh-black);
}
.why-bold  { font-weight: 700; }
.why-faded { color: var(--mh-mid-gray); }

/* ══════════════════════════════════════════
   NYC / MARRAKECH IMAGE
══════════════════════════════════════════ */
.nyc-section {
  background: var(--mh-off-white);
  padding: 0 32px 80px;
}
.nyc-image-wrap {
  max-width: 1200px;
  margin: 0 auto 48px;
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
}
.nyc-img { border-radius: 12px; }
.nyc-caption {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.nyc-caption p {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 400;
  color: var(--mh-mid-gray);
}
.accent-text { color: var(--mh-black); font-weight: 700; }

/* ══════════════════════════════════════════
   PARALLELOGRAM STRIP
══════════════════════════════════════════ */
.strip-section {
  background: var(--mh-off-white);
  padding: 40px 0 80px;
}
.strip-track {
  display: flex;
  gap: 0;
  height: 200px;
  overflow: hidden;
  margin-bottom: 56px;
}
.strip-item {
  flex: 1;
  position: relative;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  margin-left: -2%;
  overflow: hidden;
  transition: transform 0.35s var(--mh-ease);
}
.strip-item:first-child { clip-path: polygon(0 0, 100% 0%, 92% 100%, 0% 100%); margin-left: 0; }
.strip-item:last-child  { clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%); }
.strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.35s, transform 0.35s var(--mh-ease);
}
.strip-item:hover img { filter: saturate(1); transform: scale(1.05); }

.strip-caption {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}
.strip-caption p {
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.6;
  color: var(--mh-black);
  margin-bottom: 8px;
}
.strip-caption p:last-child { color: var(--mh-mid-gray); }

/* ══════════════════════════════════════════
   ACCOMMODATIONS / STEPS
══════════════════════════════════════════ */
.steps-section {
  padding: 100px 32px;
  background: var(--mh-off-white);
}
.steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.steps-headline {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 40px;
}
.steps-faded { color: var(--mh-mid-gray); }
.steps-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-mid-gray);
  margin-bottom: 24px;
}
.steps-label--spaced { margin-top: 24px; }
.steps-book-btn { margin-top: 32px; }

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.step-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.1); }
.step-num {
  font-size: 12px;
  color: var(--mh-mid-gray);
  font-weight: 500;
  flex-shrink: 0;
  padding-top: 3px;
  width: 28px;
}
.step-sep {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
  margin-top: 2px;
}
.step-text {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--mh-mid-gray);
}
.step-text strong { color: var(--mh-black); font-weight: 700; }

/* ══════════════════════════════════════════
   INCENTIVE / CAPABILITIES  (dark bg)
══════════════════════════════════════════ */
.capabilities-section {
  background: var(--mh-dark-bg);
  padding: 100px 32px;
  position: relative;
}
.capabilities-section::before,
.capabilities-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
}
.capabilities-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(204,163,83,0.12), transparent);
}
.capabilities-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(204,163,83,0.12), transparent);
}
.cap-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.cap-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: -0.02em;
}
.cap-fade { color: var(--mh-mid-gray); }
.cap-item {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
.cap-divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.cap-num-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 450px;
}
.cap-circle {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
  margin-top: 4px;
}
.cap-desc {
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.cap-desc-title { color: rgba(255,255,255,0.85); }

.cap-word {
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: -0.04em;
  line-height: 0.9;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--mh-ease), transform 0.8s var(--mh-ease);
}
.cap-item.in-view .cap-word {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   ABOUT US / AGENTS
══════════════════════════════════════════ */
.agents-section {
  background: var(--mh-off-white);
  padding: 100px 32px;
}
.agents-inner { max-width: 1200px; margin: 0 auto; }
.agents-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-mid-gray);
  margin-bottom: 40px;
}
.agents-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: start;
}
.agents-left .agents-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
}
.agents-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  line-height: 1.1;
}
.agents-faded { color: var(--mh-mid-gray); }
.agents-main-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  margin-bottom: 32px;
}
.agents-main-img { width: 100%; height: 100%; object-fit: cover; }
.agents-body {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--mh-black);
  margin-bottom: 32px;
}
.agents-body-faded { color: var(--mh-mid-gray); }

/* ══════════════════════════════════════════
   FACILITIES / BEYOND (dark bg)
══════════════════════════════════════════ */
.beyond-section {
  background: var(--mh-dark-bg);
  padding: 100px 32px;
  position: relative;
}
.beyond-section::before,
.beyond-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
}
.beyond-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(204,163,83,0.12), transparent);
}
.beyond-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(204,163,83,0.12), transparent);
}
.beyond-inner { max-width: 1200px; margin: 0 auto; }
.beyond-top   { margin-bottom: 80px; }
.beyond-pretitle {
  font-size: 13px;
  color: var(--mh-mid-gray);
  font-weight: 500;
  margin-bottom: 12px;
}
.beyond-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--mh-white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.beyond-faded { color: var(--mh-mid-gray); }
.beyond-description {
  max-width: 600px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-top: 16px;
}

/* Facilities icon grid */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0 64px;
}
.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.facility-item:hover {
  background: rgba(204,163,83,0.15);
  border-color: rgba(204,163,83,0.4);
}
.facility-icon {
  font-size: 32px;
  line-height: 1;
}

/* Service cards */
.beyond-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.beyond-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 340px;
  background: #222;
}
.beyond-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
  transition: transform 0.5s var(--mh-ease), filter 0.5s;
}
.beyond-card:hover img { transform: scale(1.05); filter: brightness(0.7); }
.beyond-card-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.beyond-card-content h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--mh-white);
  line-height: 1.2;
}

/* ══════════════════════════════════════════
   GALLERY / BLOG
══════════════════════════════════════════ */
.blog-section {
  background: var(--mh-off-white);
  padding: 100px 32px;
}
.blog-inner  { max-width: 1200px; margin: 0 auto; }
.blog-header {
  margin-bottom: 60px;
}
.blog-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mh-mid-gray);
  margin-bottom: 12px;
}
.blog-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--mh-black);
}
.blog-entry { margin-bottom: 0; }
.blog-entry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.blog-entry-inner:first-of-type { border-top: 1px solid rgba(0,0,0,0.1); }
.blog-entry-img {
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
}
.blog-entry-img img { border-radius: 12px; }
.blog-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mh-gold);
  margin-bottom: 12px;
}
.blog-entry-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--mh-black);
}
.blog-entry-body {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.65;
  color: var(--mh-mid-gray);
  margin-bottom: 24px;
}
.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--mh-black);
  transition: color 0.2s;
}
.blog-link:hover { color: var(--mh-gold); }

/* ══════════════════════════════════════════
   ESCAPE CTA
══════════════════════════════════════════ */
.cta-section {
  background:
    url('https://images.unsplash.com/photo-1548018560-c7196548c691?w=1600&q=80&fit=crop')
    center/cover no-repeat;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,10,5,0.72) 0%, rgba(40,25,10,0.55) 100%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 32px;
  text-align: center;
}
.cta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mh-gold);
  margin-bottom: 20px;
}
.cta-headline {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--mh-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-body {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  background: var(--mh-off-white);
  padding: 100px 32px;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--mh-black);
}
.contact-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--mh-mid-gray);
  line-height: 1.65;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-dLabel {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mh-gold);
  margin-bottom: 4px;
}
.contact-details a {
  font-size: 16px;
  color: var(--mh-black);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-details a:hover { color: var(--mh-gold); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-input {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  font-family: var(--mh-font);
  font-size: 15px;
  color: var(--mh-black);
  background: var(--mh-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
  box-sizing: border-box;
}
.contact-input:focus {
  border-color: var(--mh-gold);
  box-shadow: 0 0 0 3px rgba(204,163,83,0.15);
}
.contact-input::placeholder { color: rgba(0,0,0,0.35); }
.contact-textarea { min-height: 140px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #0f0f0f;
  color: var(--mh-white);
  padding: 72px 32px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-newsletter { margin-bottom: 56px; }
.footer-newsletter-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  padding-bottom: 12px;
  max-width: 600px;
}
.newsletter-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--mh-white);
  font-family: var(--mh-font);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn {
  background: none;
  border: none;
  color: var(--mh-white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.newsletter-btn:hover { opacity: 1; }
.newsletter-btn svg { width: 20px; height: 20px; }

.footer-upper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--mh-white);
  transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 0.6; }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-social a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--mh-white); }
.footer-nav-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.footer-contact {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-block { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.contact-block a,
.contact-block address {
  font-size: 14px;
  color: var(--mh-white);
  line-height: 1.55;
}
.contact-block a:hover { opacity: 0.7; }

.footer-logo-giant {
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--mh-white);
  line-height: 1;
  padding: 48px 0 40px;
  user-select: none;
}
.footer-com {
  font-size: 0.6em; /* Moins petit (quite large relative to the huge text) */
  color: var(--mh-gold);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.footer-bottom-left {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.footer-bottom-left a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom-left a:hover { color: var(--mh-white); }
.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════
   RESPONSIVE — tablet + mobile (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Switch to hamburger on tablets/mobile */
  .main-nav       { display: none; }
  .btn-signin     { display: none; }
  .hamburger      { display: flex; margin-left: 8px; }
  /* Lang switcher pushes to the right since main-nav is gone */
  .lang-switcher  { margin-left: auto; }
}

@media (max-width: 900px) {
  .why-inner        { grid-template-columns: 1fr; }
  .steps-inner      { grid-template-columns: 1fr; gap: 40px; }
  .agents-content   { grid-template-columns: 1fr; }
  .agents-left      { display: none; }
  .contact-inner    { grid-template-columns: 1fr; gap: 48px; }
  .beyond-cards     { grid-template-columns: 1fr; }
  .footer-upper     { grid-template-columns: 1fr; }
  .footer-nav-social{ align-items: flex-start; }
  .footer-contact   { flex-direction: column; gap: 32px; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; }
  .footer-bottom-right { align-items: flex-start; }
  .facilities-grid  { grid-template-columns: repeat(3, 1fr); }
  .blog-entry-inner { grid-template-columns: 1fr; gap: 32px; }
  .blog-entry-img   { height: 260px; }
}

@media (max-width: 640px) {
  .mask-text          { font-size: 80px; }
  .cap-item           { flex-direction: column; gap: 16px; }
  .beyond-cards       { grid-template-columns: 1fr; }
  .strip-track        { height: 140px; }
  .facilities-grid    { grid-template-columns: repeat(2, 1fr); }
  .cta-inner          { padding: 60px 24px; }
  .blog-entry-inner   { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   PROPERTY CARDS — Airbnb style
══════════════════════════════════════════ */
.prop-section {
  padding: 100px 32px;
  background: var(--mh-off-white);
}
.prop-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.prop-section-head {
  max-width: 440px;
  margin-bottom: 64px;
}

/* Grid: 3 cols on desktop */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card animation */
@keyframes propCardIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card */
.prop-card {
  background: var(--mh-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--mh-ease), box-shadow 0.3s var(--mh-ease);
  display: flex;
  flex-direction: column;
  animation: propCardIn 0.6s var(--mh-ease) both;
  animation-delay: calc((var(--card-i, 1) - 1) * 0.12s);
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13);
}

/* Card image */
.prop-img-wrap {
  display: block;
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--mh-light-gray);
}
.prop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--mh-ease);
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.05); }
.prop-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe0;
  position: relative;
}
.prop-img-placeholder svg { width: 80px; height: 60px; }
.prop-fallback-num {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(204,163,83,0.2);
  line-height: 1;
}

/* Price badge */
.prop-price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--mh-white);
  color: var(--mh-black);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Card body */
.prop-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.prop-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--mh-black);
  line-height: 1.3;
  margin: 0;
}
.prop-title a { color: inherit; }
.prop-title a:hover { color: var(--mh-gold); }

.prop-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--mh-mid-gray);
  margin: 0;
}
.prop-location svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Icon row */
.prop-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
  border-top: 1px solid var(--mh-light-gray);
  border-bottom: 1px solid var(--mh-light-gray);
}
.prop-icon-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--mh-black);
  font-weight: 500;
}
.prop-icon-item svg { width: 16px; height: 16px; color: var(--mh-mid-gray); }

/* Amenity pills */
.prop-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prop-amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f5f0e8;
  border: 1px solid rgba(204,163,83,0.25);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--mh-black);
  font-weight: 500;
}
.prop-amenity-pill svg { width: 13px; height: 13px; color: var(--mh-gold); }

.prop-desc-short {
  font-size: 13px;
  color: var(--mh-mid-gray);
  line-height: 1.55;
  margin: 0;
}

/* View button */
.prop-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--mh-gold);
  border-top: 1px solid var(--mh-light-gray);
  transition: gap 0.2s;
}
.prop-view-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.prop-view-btn:hover { gap: 12px; }
.prop-view-btn:hover svg { transform: translateX(3px); }

/* Responsive grid */
@media (max-width: 1024px) { .prop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .prop-grid { grid-template-columns: 1fr; } .prop-section { padding: 72px 20px; } }

/* ══════════════════════════════════════════
   SINGLE PROPERTY PAGE
══════════════════════════════════════════ */
.sp-main {
  padding-top: var(--mh-header-h);
  background: var(--mh-white);
  min-height: 100vh;
}

/* Gallery */
.sp-gallery { width: 100%; overflow: hidden; }
.sp-gallery-grid {
  display: grid;
  height: 480px;
  gap: 6px;
}
.sp-gallery-1 { grid-template-columns: 1fr; }
.sp-gallery-2 { grid-template-columns: 2fr 1fr; }
.sp-gallery-3 { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; }
.sp-gallery-4 { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
.sp-gallery-5 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.sp-gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--mh-light-gray);
  cursor: pointer;
}
.sp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--mh-ease);
  display: block;
}
.sp-gallery-item:hover img { transform: scale(1.04); }

/* First image spans full height on left */
.sp-gallery-5 .sp-gallery-item-1,
.sp-gallery-4 .sp-gallery-item-1,
.sp-gallery-3 .sp-gallery-item-1 { grid-row: 1 / 3; }

/* "More photos" overlay */
.sp-gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mh-white);
  font-size: 18px;
  font-weight: 700;
}

.sp-gallery-single { height: 480px; }
.sp-gallery-single img { width: 100%; height: 100%; object-fit: cover; }

.sp-gallery-placeholder {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0ebe0;
}
.sp-gallery-placeholder svg { width: 120px; opacity: 0.5; }

/* Content layout */
.sp-content-wrap {
  padding: 48px 32px 80px;
  background: var(--mh-white);
}
.sp-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* Breadcrumb */
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mh-mid-gray);
  margin-bottom: 20px;
}
.sp-breadcrumb a { color: var(--mh-mid-gray); }
.sp-breadcrumb a:hover { color: var(--mh-black); }

.sp-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--mh-black);
}
.sp-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--mh-mid-gray);
  margin: 0 0 28px;
}
.sp-location svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Stats row */
.sp-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.sp-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sp-stat svg { width: 28px; height: 28px; color: var(--mh-gold); }
.sp-stat div { display: flex; flex-direction: column; }
.sp-stat strong { font-size: 20px; font-weight: 700; color: var(--mh-black); line-height: 1.1; }
.sp-stat span { font-size: 12px; color: var(--mh-mid-gray); }

.sp-divider { border: none; border-top: 1px solid var(--mh-light-gray); margin: 32px 0; }

/* Description */
.sp-description { font-size: 16px; line-height: 1.75; color: #333; }
.sp-description p { margin-bottom: 16px; }

/* Amenities grid */
.sp-section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--mh-black);
}
.sp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sp-amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--mh-black);
}
.sp-amenity-item svg { width: 24px; height: 24px; color: var(--mh-black); flex-shrink: 0; }

/* Booking card — sticky sidebar */
.sp-booking-card {
  position: sticky;
  top: calc(var(--mh-header-h) + 24px);
  background: var(--mh-white);
  border: 1px solid var(--mh-light-gray);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.sp-booking-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}
.sp-price-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--mh-black);
}
.sp-price-per {
  font-size: 15px;
  color: var(--mh-mid-gray);
}
.sp-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--mh-gold);
  color: var(--mh-white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: background 0.2s, transform 0.2s;
}
.sp-book-btn svg { width: 18px; height: 18px; }
.sp-book-btn:hover { background: var(--mh-gold-dark); transform: scale(1.02); }

.sp-contact-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border: 1.5px solid var(--mh-black);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: var(--mh-black);
  margin-bottom: 20px;
  transition: background 0.2s;
}
.sp-contact-btn:hover { background: var(--mh-black); color: var(--mh-white); }

.sp-booking-info {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-booking-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--mh-mid-gray);
}
.sp-booking-info li svg { width: 16px; height: 16px; flex-shrink: 0; }

.sp-booking-note {
  font-size: 12px;
  color: var(--mh-mid-gray);
  text-align: center;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--mh-light-gray);
}

/* ══════════════════════════════════════════
   PROPERTY IMAGE SLIDER
══════════════════════════════════════════ */
.sp-slider {
  width: 100%;
  background: #111;
  user-select: none;
}

/* Main view */
.sp-slider-main {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  cursor: zoom-in;
}
.sp-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.sp-slider-track.is-sliding { pointer-events: none; }
.sp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.sp-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Arrows */
.sp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: background 0.2s, transform 0.2s;
}
.sp-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.sp-arrow svg { width: 20px; height: 20px; color: #111; }
.sp-arrow-prev { left: 16px; }
.sp-arrow-next { right: 16px; }

/* Counter */
.sp-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* Fullscreen button */
.sp-fullscreen-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.sp-fullscreen-btn:hover { background: #fff; }
.sp-fullscreen-btn svg { width: 18px; height: 18px; color: #111; }

/* Thumbnail strip */
.sp-thumbs-wrap {
  background: #1a1a1a;
  padding: 10px 16px;
  overflow: hidden;
}
.sp-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 2px;
}
.sp-thumbs::-webkit-scrollbar { display: none; }
.sp-thumb {
  flex: 0 0 88px;
  height: 60px;
  border: 2.5px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #333;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-thumb:hover { opacity: 0.85; }
.sp-thumb.is-active {
  border-color: var(--mh-gold);
  opacity: 1;
}

/* No gallery placeholder */
.sp-no-gallery {
  height: 300px;
  background: #f0ebe0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-no-gallery svg { width: 120px; opacity: 0.5; }

/* ── Lightbox ──────────────────────────────────────────────── */
.sp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sp-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}
.sp-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.sp-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.sp-lightbox-close:hover { background: rgba(255,255,255,0.25); }
.sp-lightbox-close svg { width: 20px; height: 20px; color: #fff; }
.sp-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.sp-lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.sp-lightbox-arrow svg { width: 22px; height: 22px; color: #fff; }
.sp-lb-prev { left: 16px; }
.sp-lb-next { right: 16px; }
.sp-lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Single property responsive */
@media (max-width: 900px) {
  .sp-content-inner    { grid-template-columns: 1fr; }
  .sp-booking-card     { position: static; }
  .sp-slider-main      { height: 360px; }
  .sp-amenities-grid   { grid-template-columns: 1fr; }
  .sp-content-wrap     { padding: 32px 20px 60px; }
}
@media (max-width: 640px) {
  .sp-slider-main { height: 260px; }
  .sp-arrow       { width: 38px; height: 38px; }
  .sp-arrow svg   { width: 16px; height: 16px; }
  .sp-thumb       { flex: 0 0 68px; height: 48px; }
}

/* ══════════════════════════════════════════
   ELEMENTOR COMPATIBILITY OVERRIDES
   These ensure our theme CSS never breaks
   Elementor widget rendering.
══════════════════════════════════════════ */

/* Restore auto img sizing inside Elementor widgets */
.elementor-widget-image img,
.elementor-widget-image-carousel img,
.elementor-widget-media-carousel img,
.elementor-image img,
.elementor img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: unset;
}

/* Restore Elementor container sizing */
.elementor-section,
.elementor-container,
.elementor-column {
  box-sizing: border-box;
}

/* Prevent our reveal classes from hiding Elementor elements */
.elementor-widget-wrap .reveal-up,
.elementor-widget-wrap .reveal-scale {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Page-level content wrapper for non-homepage pages */
.page-content-wrap {
  padding-top: var(--mh-header-h);
  min-height: 60vh;
}
.page-article-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px;
}
