/* =========================================================
   GALLIVANTO INN BADLI — Boutique Hotel Site
   Theme: "Desert Rose" layout system — recolored to the
   plaster / sand / teal / azure / walnut palette.
   Wood (walnut) is reserved strictly for CTA buttons.
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root{
  --bg:            #FAF7F2;   /* warm plaster — the walls */
  --surface:       #F0EAE1;   /* soft sand — the textured feature wall */
  --surface-warm:  #F0EAE1;   /* soft sand (card fill) */
  --cream:         #FAF7F2;   /* header / hero / booking bar */
  --white:         #FFFFFF;

  --primary:       #1B6C82;   /* deep teal — the bed runner */
  --primary-dark:  #134E5E;
  --primary-light: #A4C4CD;

  --accent:        #3FA3BF;   /* bright azure — the cushions */
  --accent-dark:   #2F7A8F;

  --wood:          #8B5E3C;   /* walnut — reserved for CTAs */
  --wood-dark:     #68462D;
  --wood-light:    #C9A876;   /* light gold/tan */

  --text:   #221F1C;   /* espresso */
  --muted:  #766D64;   /* warm grey */
  --border: #E3DAD0;   /* sand hairline */

  --footer-dark:   #2E1A14;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-accent:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius-lg: 0px;
  --radius-md: 0px;
  --radius-sm: 0px;

  --shadow-soft: 0 20px 45px -22px rgba(34,31,28,0.22);
  --shadow-card: 0 14px 30px -18px rgba(34,31,28,0.18);
  --shadow-lift: 0 26px 54px -20px rgba(34,31,28,0.28);

  --ease: cubic-bezier(.22,1,.36,1);
  --dur-fast: .35s;
  --dur-med: .6s;

  --container: 1400px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; font-size: 16px; }
body{
  margin:0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; background:none; border:none; }
.material-symbols-outlined{
  font-family: 'Material Symbols Outlined'; font-weight:normal; font-style:normal;
  line-height:1; letter-spacing:normal; text-transform:none; display:inline-block;
  white-space:nowrap; word-wrap:normal; direction:ltr; -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; color: var(--text); margin:0; letter-spacing:-.01em; }
h2, .h2, .heading-2{
  overflow-wrap: break-word;
  font-family: "TiemposHeadline-Light", var(--font-display), serif;
  color: #2e3928;
  line-height: 1.16;
  letter-spacing: .03em;
  font-weight: 300;
}
p{ margin:0; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
::selection{ background: var(--primary); color:#fff; }

.skip-link{
  position:absolute; left:16px; top:-60px; z-index:2000;
  background: var(--primary); color:#fff; padding:12px 20px;
  font-size:.85rem; transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus{ top:16px; }

a:focus-visible, button:focus-visible, iframe:focus-visible, input:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- 4. SCROLL PROGRESS ---------- */
.scroll-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: var(--accent);
  z-index: 1200;
  transition: width .1s linear;
}

/* ---------- 5. BUTTONS (rounded / pill — wood is CTA-only) ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 15px 34px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-sm{ padding: 11px 24px; font-size: .74rem; }
.btn-primary{
  background: var(--wood);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover{ background: var(--wood-dark); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-outline{
  color: var(--wood-dark);
  border: 1.5px solid var(--wood);
  background: transparent;
}
.btn-outline:hover{ background: var(--wood); color:#fff; transform: translateY(-2px); }

/* ---------- 6. HEADER ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  padding: 20px 0;
  background: var(--footer-dark);
  box-shadow: 0 2px 0 rgba(255,255,255,0.08);
  transition: padding var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.site-header.is-scrolled{
  padding: 10px 0;
  box-shadow: 0 10px 26px -18px rgba(0,0,0,0.5);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap: 24px; }
.brand{ display:flex; align-items:center; }
.brand-logo{
  height: 52px; width:auto; display:block;
  transition: height var(--dur-fast) var(--ease);
}
.site-header.is-scrolled .brand-logo{ height: 40px; }

.main-nav ul{ display:flex; gap: 28px; }
.nav-link{
  font-size: .82rem; letter-spacing:.04em; font-weight:500;
  color: rgba(255,255,255,0.85);
  position:relative; padding: 4px 0;
  transition: color var(--dur-fast) var(--ease);
}
.nav-link::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--accent); transition: right var(--dur-med) var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after{ right:0; }
.nav-link:hover, .nav-link.is-active{ color: var(--accent); }

.header-actions{ display:flex; align-items:center; gap:20px; }
.header-phone{ display:flex; align-items:center; gap:8px; font-size:.82rem; color: rgba(255,255,255,0.85); transition: color var(--dur-fast) var(--ease); }
.header-phone:hover{ color: var(--accent); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:30px; padding: 6px 0; }
.nav-toggle span{ height:2px; width:100%; background: #fff; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. HERO (floating rounded card, inset from the viewport edges) ---------- */
.hero{ background: #F6F3EE; padding: 160px min(80px, 6vw) 60px; }

.hero-frame{
  max-width: 1560px; margin: 0 auto; padding: 16px;
  border-radius: 46px; border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 30px 70px -45px rgba(20,16,12,0.18);
}
.hero-card{
  position:relative;
  background:#fff; border-radius: 32px; overflow:hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 60px 110px -50px rgba(20,16,12,0.28), 0 16px 40px -20px rgba(20,16,12,0.12);
}
.hero-split{ display:grid; grid-template-columns: 40% 60%; align-items:stretch; min-height: 640px; }

.hero-left{ display:flex; align-items:center; background: var(--cream); }
.hero-left-inner{ width:100%; max-width: 440px; margin:0 auto; padding: 60px 44px; }

.eyebrow{
  display:inline-block; font-family: var(--font-body);
  font-size: .78rem; letter-spacing:.3em; text-transform:uppercase;
  color: var(--primary); margin-bottom: 16px; font-weight:500;
  position: relative; padding-left: 34px;
}
.eyebrow::before{
  content:""; position:absolute; left:0; top:50%; width:24px; height:1px;
  background: var(--primary); transform: translateY(-50%);
}

.hero-title{
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  line-height:1.18; margin-bottom: 18px; color: var(--text);
  font-weight: 700; letter-spacing: -.02em;
}
.hero-title-line{ display:block; }
.hero-title-sub{ font-size: .5em; font-weight: 600; line-height:1; margin-top:2px; }
.hero-title-accent{
  font-family: var(--font-accent); color: var(--primary);
  font-style: italic; font-weight: 600;
}
.hero-lede{ font-size: .96rem; line-height: 1.7; color: var(--muted); margin-bottom: 28px; font-weight: 300; }

.hero-cta{ margin-bottom: 32px; }
.btn-madu{
  display:inline-flex; align-items:center; gap:16px;
  background: var(--text); color:#fff;
  padding: 8px 8px 8px 26px; border-radius: 999px;
  font-size:.86rem; font-weight:600; letter-spacing:.02em;
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.btn-madu:hover{ background: var(--primary-dark); box-shadow: 0 14px 30px -12px rgba(19,78,94,0.55); }
.btn-madu-icon{
  width:38px; height:38px; border-radius:50%; background: var(--wood-light); color: var(--text);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: transform var(--dur-fast) var(--ease);
}
.btn-madu-icon svg{ width:16px; height:16px; }
.btn-madu:hover .btn-madu-icon{ transform: translateX(3px); }

.hero-tags{ display:flex; flex-wrap:wrap; gap: 14px 18px; }
.hero-tags li{
  position:relative; font-size:.8rem; color: var(--muted); padding-right:18px;
}
.hero-tags li::after{
  content:""; position:absolute; right:0; top:50%; transform:translateY(-50%);
  width:1px; height:14px; background: var(--border);
}
.hero-tags li:last-child{ padding-right:0; }
.hero-tags li:last-child::after{ display:none; }

/* ----- Right: full-height slider (rounded corners come from .hero-card clipping) ----- */
.hero-right{ position:relative; }
.hero-slides{ position:relative; width:100%; height:100%; min-height: 420px; overflow:hidden; }
.hero-slide{
  position:absolute; inset:0;
  background-size: cover; background-position:center;
  opacity:0; transform: scale(1.08);
  transition: opacity 1.1s var(--ease), transform 7s linear;
}
.hero-slide.is-active{ opacity:1; transform: scale(1); z-index:1; }
.hero-slide-overlay{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(10,8,6,0.68) 0%, rgba(10,8,6,0.04) 42%, rgba(10,8,6,0.05) 56%, rgba(10,8,6,0.42) 100%);
}
.hero-slide-content{
  position:absolute; left:40px; right:40px; bottom:96px; z-index:1;
  opacity:0; transform: translateY(20px);
  transition: opacity .9s var(--ease) .2s, transform .9s var(--ease) .2s;
}
.hero-slide.is-active .hero-slide-content{ opacity:1; transform: translateY(0); }
.hero-slide-kicker{
  display:block; font-size:.7rem; letter-spacing:.26em; text-transform:uppercase;
  color: var(--wood-light); margin-bottom:8px; font-weight:600;
}
.hero-slide-title{ font-size: clamp(1.4rem, 2vw, 2rem); color:#fff; }

.hero-slide-nav{ position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; padding:0 20px; z-index:2; pointer-events:none; }
.hero-arrow{
  pointer-events:auto;
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#fff;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.hero-arrow svg{ width:17px; height:17px; }
.hero-arrow:hover{ background: rgba(255,255,255,0.28); transform: scale(1.08); }

.hero-slide-counter{
  position:absolute; left:40px; bottom: 34px; z-index:2;
  font-family: var(--font-accent); font-style:italic; font-weight:600; font-size:1.05rem; color:#fff;
  display:flex; align-items:center; gap:6px;
}
.hero-slide-counter-sep{ color: rgba(255,255,255,0.5); font-style:normal; }

.hero-dots{ position:absolute; left:50%; bottom:34px; transform: translateX(-50%); display:flex; gap:7px; z-index:2; }
.hero-dots button{ width:7px; height:7px; border-radius:999px; background: rgba(255,255,255,0.6); transition: all var(--dur-fast) var(--ease); }
.hero-dots button.is-active{ width:20px; background:#fff; }

.hero-stat-card{
  position:absolute; right: 28px; bottom: 34px; z-index:3;
  width: 200px; background: rgba(255,255,255,0.94); border-radius: 18px;
  padding: 18px 20px; box-shadow: var(--shadow-lift);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-stat-card-top{ display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.hero-stat-card-icon{
  width:26px; height:26px; border-radius:50%; background: var(--surface-warm);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hero-stat-card-icon .material-symbols-outlined{ font-size:15px; color: var(--wood); }
.hero-stat-card-label{ font-size:.7rem; font-weight:600; color: var(--muted); }
.hero-stat-card-value{ font-family: var(--font-accent); font-style:italic; font-weight:700; font-size:2.1rem; color: var(--primary); line-height:1; }
.hero-stat-card-value span{ font-family: var(--font-body); font-style:normal; font-size:.85rem; color: var(--muted); }
.hero-stat-card-caption{ font-size:.76rem; color: var(--muted); margin-top:4px; }
.hero-stat-card-rule{ display:block; height:1px; background: var(--border); margin: 12px 0 10px; }
.hero-stat-card-links{ display:flex; flex-direction:column; gap:6px; }
.hero-stat-card-links a{ font-size:.74rem; font-weight:600; color: var(--primary); }
.hero-stat-card-links a:hover{ color: var(--primary-dark); text-decoration:underline; }

/* ---------- 8. BOOKING BAR ---------- */
.booking-bar{
  background: #23758c;
  padding: 48px 0;
  
}
.booking-inner{ display:flex; flex-direction:column; gap: 18px; align-items:center; }
.booking-form{
  width:100%; max-width: 980px;
  display:flex; align-items:stretch; justify-content:space-between; flex-wrap:nowrap;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  padding: 8px;
  overflow-x:auto;
}
.booking-field{
  display:flex; align-items:center; gap:12px; flex:0 1 auto; min-width:0;
  padding: 12px 18px; position:relative;
}
.booking-field:not(.booking-field--nights):not(.booking-field--submit)::after{
  content:""; position:absolute; right:0; top:50%; transform:translateY(-50%);
  width:1px; height:34px; background: rgba(255,255,255,0.16);
}
.booking-field-icon{ font-size:20px; color: var(--accent); flex-shrink:0; }
.booking-field-text{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.booking-field label{ font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color: rgba(255,255,255,0.55); font-weight:500; }
.booking-field-input-wrap{ position:relative; display:flex; align-items:center; min-width:0; }
.booking-field-input-wrap .booking-field-icon{
  position:absolute; left:12px; top:50%; transform:translateY(-50%);
  font-size:18px; pointer-events:none;
}
.booking-field input{
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 12px;
  height: 52px;
  width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: .96rem;
  font-weight:500;
  color: #fff;
  color-scheme: dark;
  accent-color: var(--accent);
}
.booking-field-input-wrap input{ padding-left: 38px; }
.booking-field input.calendar{ cursor:pointer; }
.booking-field input::placeholder{
  color: rgba(255,255,255,0.7);
}
.booking-field input:focus{
  outline: 2px solid rgba(255,255,255,0.45);
  outline-offset: 2px;
}
.booking-field--nights{ flex:0 1 auto; }
.booking-field--nights output{ font-family: var(--font-accent); font-style: italic; font-weight:600; font-size:1.3rem; color: var(--wood-light); }
.booking-field--submit{ flex:0 0 auto; padding-right:8px; }
.booking-field-label-spacer{ visibility:hidden; }
.booking-submit{ margin:0; display:inline-flex; align-items:center; justify-content:center; gap:10px; flex-shrink:0; white-space:nowrap; height:52px; padding:0 34px; }
.booking-submit .material-symbols-outlined{ font-size:18px; transition: transform var(--dur-fast) var(--ease); }
.booking-submit:hover .material-symbols-outlined{ transform: translateX(3px); }
.booking-note{ font-size:.82rem; color: rgba(255,255,255,0.65); text-align:center; }

/* ---------- 8b. BOOKING DATEPICKER (brand override for jQuery UI popup) ---------- */
.ui-datepicker{
  font-family: var(--font-body) !important;
  background: var(--cream) !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  box-shadow: var(--shadow-card);
  padding: 8px 10px 10px !important;
  z-index: 9999 !important;
}
.ui-datepicker .ui-datepicker-header{
  background: var(--primary) !important;
  background-image: none !important;
  border: none !important;
  border-radius: 2px;
  color: #fff;
}
.ui-datepicker .ui-datepicker-title{
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next{
  border: none !important; background: transparent !important; top: 4px;
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover{
  background: rgba(255,255,255,0.15) !important; border: none !important;
}
.ui-datepicker .ui-datepicker-calendar{ margin-top: 8px; }
.ui-datepicker .ui-datepicker-calendar th{
  color: var(--muted); font-size:.66rem; text-transform:uppercase; letter-spacing:.06em; font-weight:600; padding-bottom:6px;
}
.ui-datepicker td{ padding: 1px; }
.ui-datepicker td a, .ui-datepicker td span{
  text-align: center; border-radius: 4px; border: none !important;
  background: transparent !important; color: var(--text) !important;
  font-weight: 500;
}
.ui-datepicker td a.ui-state-hover{ background: var(--accent) !important; color: #fff !important; }
.ui-datepicker td a.ui-state-active{ background: var(--wood) !important; color: #fff !important; font-weight: 600; }
.ui-datepicker td span.ui-state-disabled{ color: var(--border) !important; opacity: .6; }
.ui-datepicker .ui-datepicker-today a{ border: 1px solid var(--wood-light) !important; }

/* ---------- 9. SECTION SHARED ---------- */
section{ padding: 110px 0; position: relative; }
.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-title{ font-size: clamp(2.1rem, 4vw, 3.1rem); margin-bottom:16px; }
.section-lede{ color: var(--muted); font-size: 1.06rem; line-height:1.7; font-weight:300; max-width: 560px; }

/* ---------- 10. ABOUT (asymmetric image cluster + copy) ---------- */
.about{ background: var(--bg); padding: 100px 0; }
.about-split{ display:grid; grid-template-columns: 1fr 1fr; min-height: 640px; }

.about-text{
  display:flex; flex-direction:column; justify-content:center; gap:20px;
  padding: 70px 60px 70px min(16vw, 190px);
}
.about-text .section-title{ margin-bottom:0; }
.about-text p{ color: var(--muted); font-size:1.02rem; line-height:1.75; max-width:480px; }
.about-actions{ display:flex; flex-direction:row; flex-wrap:wrap; align-items:center; gap:14px; margin-top:8px; }

.about-photo{ position:relative; overflow:hidden; }
.about-photo img{
  position:absolute; top:-15%; left:0; width:100%; height:130%; object-fit:cover; display:block;
  will-change: transform;
}

/* ---------- 11. ROOMS (alternating feature rows) ---------- */
.rooms{ background: var(--surface); }
.rooms .section-head{ max-width: none; }
.rooms .section-title{ white-space: nowrap; }
.rooms .section-lede{ max-width: none;}
.room-filter{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.room-filter-btn{
  padding:10px 22px; border:1px solid var(--border); border-radius:999px;
  background:#fff; color: var(--muted);
  font-family: var(--font-body); font-size:.78rem; font-weight:500;
  letter-spacing:.06em; text-transform:uppercase;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.room-filter-btn:hover{ border-color: var(--wood); color: var(--wood); }
.room-filter-btn.is-active{ background: var(--text); border-color: var(--text); color:#fff; }
.room-feature.is-hidden{ display:none; }
.rooms-features{ display:flex; flex-direction:column; gap: 110px; }
.room-feature{
  display:grid; grid-template-columns: 1fr 1.4fr 0.85fr; gap: 36px; align-items:center;
}
.room-feature--reverse{ grid-template-columns: 0.85fr 1.4fr 1fr; }
.room-feature-text{ display:flex; flex-direction:column; align-items:flex-start; gap:14px; }
.room-badge{
  background: var(--primary); color:#fff; font-size:.68rem; letter-spacing:.08em;
  text-transform:uppercase; padding:6px 16px; font-weight:600;
}
.room-feature-title{ font-size: clamp(1.8rem, 2.6vw, 2.4rem); color: var(--primary); }
.room-feature-desc{ color: var(--muted); font-size:.98rem; line-height:1.75; max-width: 380px; }
.room-specs{ display:flex; flex-wrap:wrap; gap: 8px 14px; }
.room-specs li{ font-size:.76rem; color: var(--muted); position:relative; padding-left:14px; }
.room-specs li::before{ content:""; position:absolute; left:0; top:7px; width:5px; height:5px; border-radius:50%; background: var(--primary); }
.room-highlights{ display:flex; flex-direction:column; gap:8px; }
.room-highlights li{ display:flex; align-items:center; gap:9px; font-size:.9rem; color: var(--text); }
.room-highlights .material-symbols-outlined{ font-size:18px; color: var(--primary); }
.room-feature-actions{ display:flex; align-items:center; gap:20px; margin-top:6px; }
.room-view-link{ font-size:.78rem; letter-spacing:.04em; color: var(--primary); position:relative; padding-bottom:2px; }
.room-view-link::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:1px; background: var(--primary); transition: right var(--dur-fast) var(--ease); }
.room-view-link:hover::after{ right:0; }

.room-feature-media-main{ position:relative; overflow:hidden; border-radius: var(--radius-sm); aspect-ratio: 3/4; }
.room-feature-media-accent{ position:relative; overflow:hidden; border-radius: var(--radius-sm); aspect-ratio: 1/1; align-self:center; }
.room-feature-media-main img, .room-feature-media-accent img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform 1s var(--ease); }
.room-feature:hover .room-feature-media-main img, .room-feature:hover .room-feature-media-accent img{ transform: scale(1.06); }

.room-hours{ margin-top: 50px; display:flex; align-items:center; gap:18px; background: var(--cream); border-radius: var(--radius-md); padding: 24px 30px; }
.room-hours-icon{ color: var(--accent); flex-shrink:0; }
.room-hours p{ color: var(--muted); font-size:.92rem; }
.room-hours strong{ color: var(--text); }

/* ---------- 12. AMENITIES ---------- */
.amenities{ background: var(--white); padding: 0; }
.amenity-grid{
  display:grid; grid-template-columns: repeat(4, 1fr);
  row-gap: 30px; column-gap: 20px;
  padding: 40px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.amenity-item{
  display:flex; flex-direction:row; align-items:center; text-align:left; gap:12px;
}
.amenity-item .material-symbols-outlined{ font-size:22px; color: var(--text); flex-shrink:0; }
.amenity-item span{ font-size:.95rem; letter-spacing:.01em; color: var(--text); }
.amenity-item:hover span{ color: var(--accent); }

/* ---------- 13. WHY US ---------- */
.why-us{ background: var(--bg); }
.why-us .section-head{ max-width: none; }
.why-us .section-title{ white-space: nowrap; }
.why-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
    /* background: var(--white); */
    padding: 32px 26px 28px;
    /* border-radius: 20px; */
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    /* box-shadow: 0 10px 30px rgba(19, 78, 94, 0.07); */
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.why-card:hover{ transform: translateY(-6px); box-shadow: 0 16px 40px rgba(19,78,94,0.14); }
.why-icon{
  width:60px; height:60px; border-radius:50%;
  border: 2px solid var(--wood-light); display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; position:relative; z-index:1;
}
.why-icon .material-symbols-outlined{
  font-size:26px; color: var(--wood-light);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.why-index{ font-family: var(--font-accent); font-style:italic; font-weight:400; font-size: 2.2rem; color: var(--accent); position:absolute; top:28px; right:22px; opacity:.9; }
.why-card h3{ font-size: 1.2rem; margin: 0 0 12px; position:relative; z-index:1; color: var(--primary-dark); line-height:1.3; max-width: 78%; }
.why-card-rule{ width:34px; height:2px; background: #d7b176; margin-bottom:14px; }
.why-card p{ font-size:.88rem; color: var(--muted); line-height:1.65; position:relative; z-index:1; }

/* ---------- 14. EXPERIENCES ---------- */
.experiences{ background: var(--surface); }
.experiences-topbar{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  margin-bottom: 54px;
}
.experiences-topbar .section-title{ margin-bottom:0; }

.experiences-showcase{ position:relative; display:grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 50px; align-items:start; }
.experiences-media, .experiences-panel{ min-width:0; }

.experiences-media{ overflow:hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3; }
.experiences-media img{ width:100%; height:100%; object-fit:cover; }

.experiences-panel{ padding-top: 10px; }
.experiences-intro .eyebrow{ padding-left:0; }
.experiences-intro .eyebrow::before{ display:none; }
.experiences-intro h3{ font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom:16px; }
.experiences-intro p{ color: var(--muted); font-size:1rem; line-height:1.75; max-width:460px; }

.experiences-carousel{
  position:relative; display:flex; align-items:center; gap:14px;
  margin-top: 40px; margin-left: -340px; z-index:2;
}
.exp-track{
  display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding-bottom:4px; -ms-overflow-style:none; scrollbar-width:none;
}
.exp-track::-webkit-scrollbar{ display:none; }
.exp-card{
  position:relative; flex: 0 0 220px; aspect-ratio: 4/5; overflow:hidden;
  scroll-snap-align:start; box-shadow: var(--shadow-card);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.exp-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.exp-card-media{
  position:absolute; inset:0; background-size:cover; background-position:center;
  transition: transform 1s var(--ease);
}
.exp-card:hover .exp-card-media{ transform: scale(1.08); }
.exp-card-media::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.exp-card-caption{
  position:absolute; left:18px; right:18px; bottom:18px; z-index:1;
  display:flex; flex-direction:column; gap:4px;
}
.exp-card-title{ font-family: var(--font-display); font-weight:700; font-size:1.08rem; color:#fff; line-height:1.25; }
.exp-card-meta{ font-size:.72rem; letter-spacing:.04em; color: rgba(255,255,255,0.8); }

.exp-nav{
  flex-shrink:0; width:44px; height:44px;
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-card);
  display:flex; align-items:center; justify-content:center; color: var(--text);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.exp-nav svg{ width:18px; height:18px; }
.exp-nav:hover{ background: var(--wood); color:#fff; transform: scale(1.06); }

/* ---------- 15. GALLERY (masonry) ---------- */
.gallery{ background: var(--bg); }
.gallery-grid{ display:flex; gap:14px; align-items:flex-start; }
.gallery-col{ display:flex; flex-direction:column; gap:14px; flex:1 1 0; min-width:0; }
.gallery-col:nth-child(even){ margin-top: 48px; }
.gallery-item{
  display:block; width:100%;
  position:relative; overflow:hidden; cursor: pointer;
}
.gallery-item img{ width:100%; height:auto; display:block; transition: transform 1s var(--ease); }
.gallery-item::after{
  content:"\002B"; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-size: 1.8rem; color:#fff; background: rgba(63,163,191,0.55);
  opacity:0; transition: opacity var(--dur-fast) var(--ease);
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item:hover img{ transform: scale(1.1); }

/* ---------- 16. LOCATION ---------- */
.location{ background: var(--surface); }
.location-split{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:stretch; }
.location-content{ display:flex; flex-direction:column; }
.location-map{ width:100%; min-height:420px; overflow:hidden; }
.location-map iframe{ width:100%; height:100%; border:0; filter: saturate(.9) contrast(1.02); }
.location-grid{ display:flex; flex-direction:column; gap: 18px; margin-top:36px; }
.location-card{ background: var(--surface-warm); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 26px; }
.location-badge{
  display:inline-block; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase;
  color: var(--primary); background: rgba(27,108,130,0.12); padding:5px 14px; margin-bottom:14px; font-weight:600;
}
.location-card h3{ font-size:1.1rem; font-weight:700; margin-bottom:8px; }
.location-card p{ font-size:.85rem; color: var(--muted); }

/* ---------- 17. REVIEWS ---------- */
.reviews{ background: var(--bg); }
.review-score{ display:flex; align-items:center; gap:14px; margin-top:18px; flex-wrap:wrap; }
.review-score-value{ font-family: var(--font-accent); font-weight:600; font-style:italic; font-size:2rem; color: var(--primary); }
.review-stars{ color: var(--primary); letter-spacing:2px; font-size:.9rem; }
.review-score-count{ font-size:.82rem; color: var(--muted); }

.reviews-carousel{ display:flex; align-items:center; gap:16px; margin-top:20px; }
.reviews-track{
  flex:1; display:flex; gap:26px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  padding: 4px 4px 10px; -ms-overflow-style:none; scrollbar-width:none;
}
.reviews-track::-webkit-scrollbar{ display:none; }
.review-card{
  position:relative; background: var(--white); border-radius: var(--radius-md) var(--radius-md) var(--radius-sm) var(--radius-sm);
  border-top: 4px solid var(--primary); padding: 40px 30px 30px;
  box-shadow: var(--shadow-card); margin:0; display:flex; flex-direction:column; gap:14px;
  transition: transform var(--dur-fast) var(--ease);
  flex: 0 0 calc(50% - 13px); scroll-snap-align:start;
}
.review-card:hover{ transform: translateY(-6px); }
.review-quote{ position:absolute; top:6px; left:22px; font-family: var(--font-accent); font-size: 3.4rem; font-style:italic; color: var(--primary-light); line-height:1; }
.review-card p{ font-family: var(--font-accent); font-style: italic; font-weight:500; color: var(--text); font-size:1.14rem; line-height:1.6; }
.review-rule{ width:100%; height:1px; background: var(--border); display:block; }
.review-card footer{ display:flex; flex-direction:column; gap:2px; }
.review-card footer strong{ font-size:.94rem; color: var(--text); }
.review-origin{ display:block; font-size:.76rem; color: var(--muted); font-style:italic; }
.reviews-cta{ margin-top: 30px; }
.reviews-cta a{ color: var(--primary-dark); font-size:.88rem; letter-spacing:.03em; }
.reviews-cta a:hover{ text-decoration: underline; }

/* ---------- 18. FAQ ---------- */
.faq{ background: var(--surface); }
.faq-grid{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
.faq-item{ border-bottom: 1px solid var(--border); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap: 20px;
  padding: 22px 0; text-align:left; font-family: var(--font-display); font-size:1.15rem; color: var(--text); font-weight:600;
}
.faq-icon{ position:relative; width:18px; height:18px; flex-shrink:0; }
.faq-icon::before, .faq-icon::after{ content:""; position:absolute; background: var(--accent); transition: transform var(--dur-fast) var(--ease); }
.faq-icon::before{ width:100%; height:1px; top:50%; left:0; transform: translateY(-50%); }
.faq-icon::after{ width:1px; height:100%; left:50%; top:0; transform: translateX(-50%); }
.faq-item.is-open .faq-icon::after{ transform: translateX(-50%) rotate(90deg); opacity:0; }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height var(--dur-med) var(--ease); }
.faq-answer p{ padding-bottom: 22px; color: var(--muted); font-size:.92rem; max-width: 60ch; }
.faq-item.is-open .faq-answer{ max-height: 240px; }

/* ---------- 20. FOOTER ---------- */
.site-footer{ background: var(--footer-dark); color: rgba(255,255,255,0.85); }

.footer-hero{
  position:relative; min-height: 640px; background-size:cover; background-position:center;
}
.footer-hero::before{
  content:""; position:absolute; top:0; left:0; right:0; height:150px; z-index:1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(250,247,242,0) 100%);
  pointer-events:none;
}
.footer-hero-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgb(240 234 225) 0%, rgba(10, 8, 6, 0.15) 30%, rgba(10, 8, 6, 0.3) 62%, rgba(10, 8, 6, 0.72) 100%)
}
.footer-hero-inner{
  position:relative; z-index:2; min-height: 640px;
  display:flex; flex-direction:column; justify-content:space-between; gap:60px;
  padding-top: 60px; padding-bottom: 40px;
}

.footer-hero-top{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px; }
.footer-mark {
    height: 100px;
    margin-bottom: 4px;
    padding: 18px;
    background: var(--footer-dark);
}
.footer-hero-top h2{ color:#fff; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.footer-hero-top > p{ font-size:.96rem; color: rgba(255,255,255,0.85); }
.footer-hero-top .btn{
  margin-top:6px;
  background: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(63,163,191,0.35), var(--shadow-lift);
}
.footer-hero-top .btn:hover{ background: var(--accent-dark); box-shadow: 0 0 0 4px rgba(63,163,191,0.45), var(--shadow-lift); }

.footer-hero-nav{ margin-top: 22px; display:flex; flex-direction:column; align-items:center; gap:12px; }
.footer-hero-nav-row{ display:flex; gap:30px; flex-wrap:wrap; justify-content:center; }
.footer-hero-nav-row a{ font-family: var(--font-display); font-size:1.1rem; color:#fff; }
.footer-hero-nav-row a:hover{ color: var(--accent); }
.footer-hero-nav-row--small a{ font-family: var(--font-body); font-size:.9rem; color: rgba(255,255,255,0.72); }
.footer-hero-nav-row--small a:hover{ color: var(--accent); }

.footer-hero-bottom{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap: 30px; }
.footer-contact-block{ display:flex; flex-direction:column; gap:16px; }
.footer-contact-lines{ display:flex; gap:26px; flex-wrap:wrap; font-size:1rem; color: rgba(255,255,255,0.8); }
.footer-contact-lines a{ color:#fff; }
.footer-contact-lines a:hover{ color: var(--accent); }
.footer-contact-lines a[href^="mailto:"]{ color: var(--wood-light); font-weight:600; }
.footer-contact-lines a[href^="mailto:"]:hover{ color:#fff; }
.footer-share{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.footer-share > span{ font-family: var(--font-display); font-size:1.18rem; color:#fff; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; background: rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.35); color:#fff;
  display:flex; align-items:center; justify-content:center; transition: all var(--dur-fast) var(--ease);
}
.footer-social svg{ width:16px; height:16px; }
.footer-social a:hover{ background:#fff; color: var(--text); }

.footer-rating{ display:flex; flex-direction:column; align-items:flex-end; text-align:right; gap:4px; }
.footer-rating-stars{ color: var(--accent); letter-spacing:2px; font-size:1.02rem; }
.footer-rating-value{ font-family: var(--font-accent); font-style:italic; font-weight:600; font-size:1.9rem; color:#fff; }
.footer-rating-value small{ font-family: var(--font-body); font-style:normal; font-size:.8rem; color: rgba(255,255,255,0.7); }
.footer-rating-label{ font-size:.88rem; color: rgba(255,255,255,0.72); }

.footer-bottom{ background: var(--footer-dark); padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom-inner p{ font-size:.9rem; color: rgba(255,255,255,0.55); }
.footer-bottom-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom-links a{ font-size:.88rem; color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover{ color:#fff; }

/* ---------- 21. FLOATING BUTTONS ---------- */
.whatsapp-float, .back-to-top{
  position: fixed; right: 24px; z-index: 900;
  width: 50px; height:50px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-card);
  transition: all var(--dur-fast) var(--ease);
}
.whatsapp-float{
  bottom: 92px; background: var(--wood); color:#fff;
}
.whatsapp-float svg{ width:22px; height:22px; }
.whatsapp-float:hover{ background: var(--wood-dark); transform: translateY(-3px); }

.back-to-top{
  bottom: 26px; background: var(--text); color: var(--primary-light);
  opacity:0; visibility:hidden; transform: translateY(16px);
}
.back-to-top svg{ width:18px; height:18px; }
.back-to-top.is-visible{ opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--accent); color:#fff; }

/* ---------- 22. LIGHTBOX ---------- */
.lightbox{
  position: fixed; inset:0; z-index: 2000; background: rgba(46,26,20,0.94);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease);
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:88vw; max-height:84vh; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.lightbox-close{ position:absolute; top: 26px; right: 30px; color: var(--accent); font-size:2rem; line-height:1; }
.lightbox-nav{
  position:absolute; top:50%; transform: translateY(-50%); color:#fff; font-size:1.4rem;
  width:52px; height:52px; background: rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease);
}
.lightbox-nav:hover{ background: var(--accent); }
.lightbox-prev{ left: 24px; }
.lightbox-next{ right: 24px; }

/* ---------- 23. SCROLL REVEAL ---------- */
.reveal{ opacity:0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

.rooms-features .room-feature:nth-child(2){ transition-delay: .08s; }
.rooms-features .room-feature:nth-child(3){ transition-delay: .16s; }
.why-grid .why-card:nth-child(2){ transition-delay:.05s; }
.why-grid .why-card:nth-child(3){ transition-delay:.1s; }
.why-grid .why-card:nth-child(4){ transition-delay:.15s; }
.why-grid .why-card:nth-child(6){ transition-delay:.05s; }
.why-grid .why-card:nth-child(7){ transition-delay:.1s; }
.why-grid .why-card:nth-child(8){ transition-delay:.15s; }
.amenity-grid .amenity-item:nth-child(2n){ transition-delay:.06s; }
.amenity-grid .amenity-item:nth-child(3n){ transition-delay:.12s; }
.location-grid .location-card:nth-child(2){ transition-delay:.06s; }
.location-grid .location-card:nth-child(3){ transition-delay:.12s; }
.gallery-grid .gallery-item:nth-child(2n){ transition-delay:.05s; }
.gallery-grid .gallery-item:nth-child(3n){ transition-delay:.1s; }
.reviews-track .review-card:nth-child(2n){ transition-delay:.08s; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count:1 !important; transition-duration: .001ms !important; scroll-behavior:auto !important; }
}

/* ---------- 24. RESPONSIVE ---------- */
@media (max-width: 1080px){
  .hero{ padding: 120px min(6vw, 40px) 40px; }
  .hero-frame{ padding:12px; border-radius:40px; }
  .hero-card{ border-radius:28px; }
  .hero-split{ grid-template-columns: 1fr; min-height:0; }
  .hero-right{ order:-1; }
  .hero-slides{ min-height: 360px; }
  .hero-left-inner{ padding: 40px 32px; max-width:none; }
  .about{ padding: 80px 0; }
  .about-split{ grid-template-columns: 1fr; min-height:0; }
  .about-photo{ aspect-ratio: 16/9; order:-1; }
  .about-text{ padding: 60px 40px; }
  .rooms-features{ gap: 70px; }
  .room-feature, .room-feature--reverse{ display:flex; flex-direction:column; gap:24px; }
  .room-feature-media-main{ aspect-ratio: 16/10; }
  .why-grid{ grid-template-columns: repeat(2,1fr); }
  .amenity-grid{ grid-template-columns: repeat(2,1fr); }
  .experiences-showcase{ grid-template-columns: 1fr; }
  .experiences-media{ max-width: 480px; margin: 0 auto; aspect-ratio: 16/9; }
  .experiences-panel{ padding-top: 40px; }
  .experiences-carousel{ margin-left: 0; }
  .location-split{ grid-template-columns: 1fr; }
  .location-map{ min-height: 320px; }
  .gallery-grid{ flex-wrap: wrap; }
  .gallery-col{ flex: 1 1 calc(33.333% - 10px); }
  .gallery-col:nth-child(even){ margin-top: 0; }
  .faq-grid{ grid-template-columns: 1fr; gap: 30px; }
  .footer-hero{ min-height:0; }
  .footer-hero-inner{ min-height:0; padding-top: 50px; padding-bottom: 36px; }
  .footer-hero-nav-row{ gap:20px; }
}

@media (max-width: 860px){
  .main-nav{
    position: fixed; inset:0; z-index: 950;
    background: var(--footer-dark);
    display:flex; align-items:center; justify-content:center;
    opacity:0; visibility:hidden; transition: opacity var(--dur-med) var(--ease), visibility var(--dur-med) var(--ease);
  }
  .main-nav.is-open{ opacity:1; visibility:visible; }
  .main-nav ul{ flex-direction:column; gap: 26px; text-align:center; }
  .nav-link{ font-size:1.2rem; }
  .nav-toggle{ display:flex; z-index:960; }
  .header-phone{ display:none; }
}

@media (max-width: 640px){
  .booking-bar{ display:none; }
  .hero{ display:none; }
  section{ padding: 76px 0; }
  .container{ padding: 0 20px; }
  .hero{ padding: 108px 12px 24px; }
  .hero-frame{ padding:8px; border-radius:32px; }
  .hero-card{ border-radius:24px; }
  .hero-left-inner{ padding: 36px 22px; }
  .hero-slides{ min-height: 300px; }
  .hero-slide-content{ left:20px; right:20px; bottom:70px; }
  .hero-slide-title{ font-size:1.3rem; }
  .hero-arrow{ width:38px; height:38px; }
  .hero-arrow svg{ width:14px; height:14px; }
  .hero-slide-counter{ left:20px; bottom:16px; font-size:.9rem; }
  .hero-dots{ bottom:16px; }
  .hero-stat-card{ position:static; width:auto; margin:16px 20px 20px; }
  .hero-stat-card-links{ flex-direction:row; gap:16px; }
  .booking-form{ flex-direction:column; align-items:stretch; }
  .booking-field{ width:100%; }
  .booking-field:not(.booking-field--nights)::after{ display:none; }
  .booking-field:not(:last-of-type){ border-bottom:1px solid rgba(255,255,255,0.16); }
  .booking-submit{ margin:10px 6px 6px; justify-content:center; }
  .about{ padding: 60px 0; }
  .about-text{ padding: 46px 24px; }
  .about-photo{ aspect-ratio: 4/3; }
  .room-feature-media-main{ aspect-ratio: 4/3; }
  .rooms .section-title{ white-space: normal; }
  .rooms .section-lede{ white-space: normal; }
  .why-us .section-title{ white-space: normal; }
  .why-grid{ grid-template-columns: 1fr; }
  .amenity-grid{ grid-template-columns: 1fr; row-gap:22px; }
  .experiences-topbar{ flex-direction:column; align-items:flex-start; }
  .exp-card{ flex-basis: 180px; }
  .location-map{ min-height: 240px; }
  .gallery-col{ flex: 1 1 calc(50% - 7px); }
  .review-card{ flex-basis: 82%; }
  .footer-hero-bottom{ flex-direction:column; align-items:flex-start; }
  .footer-rating{ align-items:flex-start; text-align:left; }
  .footer-bottom-inner{ flex-direction:column; text-align:center; }
  .btn-madu{ width:100%; justify-content:space-between; }
  .whatsapp-float{ bottom: 86px; right:18px; }
  .back-to-top{ bottom: 20px; right:18px; }
}

/* ---------- Our Properties dropdown ---------- */
.properties-dropdown{ position: relative; }
.properties-toggle{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size:.74rem; letter-spacing:.1em; text-transform:uppercase; font-weight:600;
  color: var(--accent);
  background: rgba(63,163,191,0.14);
  border: 1px solid rgba(63,163,191,0.5);
  border-radius: 999px;
  cursor:pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.properties-toggle:hover, .properties-toggle:focus-visible{
  background: rgba(63,163,191,0.26); border-color: var(--accent);
  box-shadow: 0 6px 18px -8px rgba(63,163,191,0.6);
}
.properties-toggle svg{ width:11px; height:11px; flex:none; transition: transform var(--dur-fast) var(--ease); }
.properties-dropdown:hover .properties-toggle svg,
.properties-dropdown:focus-within .properties-toggle svg,
.properties-dropdown.is-open .properties-toggle svg{ transform: rotate(180deg); }
.properties-menu{
  position:absolute; top:calc(100% + 14px); left:50%; transform: translateX(-50%) translateY(-6px);
  width:270px; background: var(--cream); border:1px solid var(--border);
  box-shadow: var(--shadow-lift); padding:6px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease);
  z-index:1100;
}
.properties-dropdown:hover .properties-menu,
.properties-dropdown:focus-within .properties-menu,
.properties-dropdown.is-open .properties-menu{
  opacity:1; visibility:visible; pointer-events:auto; transform: translateX(-50%) translateY(0);
}
.properties-menu a{ display:block; padding:12px 14px; text-decoration:none; transition: background var(--dur-fast) var(--ease); }
.properties-menu a:hover, .properties-menu a:focus-visible{ background: rgba(63,163,191,0.1); }
.properties-menu-name{ display:block; font-family: var(--font-display); font-size:.95rem; color: var(--text); font-weight:700; }
.properties-menu-sub{ display:block; font-size:.72rem; color: var(--muted); margin-top:2px; }
@media (max-width: 860px){
  .properties-toggle{ padding:8px 16px; font-size:.68rem; }
}
