/* ==========================================================================
   FEHMI LIGHTS — Homepage Stylesheet
   Palette: warm neutral base + deep charcoal + brass/gold accent
   ========================================================================== */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F1ECE3;
  --surface: #FFFFFF;
  --charcoal: #211E1C;
  --charcoal-soft: #35312D;
  --charcoal-2: #2A2622;
  --brass: #B8935B;
  --brass-light: #D4B483;
  --brass-dark: #8C6D3F;
  --text: #211E1C;
  --text-muted: #6B655C;
  --text-on-dark: #F3EEE4;
  --border: #E4DDD0;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(33, 30, 28, 0.08);
  --shadow-lg: 0 20px 60px rgba(33, 30, 28, 0.25);
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
input { font-family: inherit; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Icons ---------- */
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--xs { width: 14px; height: 14px; }
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 30px; height: 30px; }
#icon-star, symbol#icon-award, symbol#icon-quote, symbol#icon-whatsapp, symbol#icon-facebook, symbol#icon-youtube, symbol#icon-instagram { fill: currentColor; stroke: none; }
.topbar__link svg:has(use[href="#icon-whatsapp"]),
.mobile-nav__foot svg:has(use[href="#icon-whatsapp"]) { color: #25D366; }
.stars { display: flex; align-items: center; gap: 2px; color: var(--brass); }
.stars .icon { fill: currentColor; stroke: none; }
.stars .icon--half { opacity: .4; }
.stars__count { color: var(--text-muted); font-size: 0.8rem; margin-left: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
.eyebrow { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-dark); font-weight: 600; margin-bottom: 10px; }
.eyebrow--light { color: var(--brass-light); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.02em; white-space: nowrap;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms ease,
    background var(--transition), color var(--transition), border-color var(--transition);
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-20deg); pointer-events: none; transition: left 650ms ease;
}
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(0.98); }
.btn--brass {
  color: #fff; background: linear-gradient(120deg, var(--brass-light), var(--brass) 45%, var(--brass-dark));
  box-shadow: 0 6px 18px rgba(140,109,63,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn--brass:hover {
  background: linear-gradient(120deg, #dcbb84, #c49f6a 45%, #96753f);
  box-shadow: 0 14px 30px rgba(140,109,63,0.5), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn--ghost-light { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.14); border-color: #fff; box-shadow: 0 12px 26px rgba(0,0,0,0.28); }
.btn--outline { border: 1.5px solid var(--charcoal); color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: #fff; box-shadow: 0 12px 26px rgba(33,30,28,0.25); }
.btn--block { width: 100%; }

/* ---------- Top bar ---------- */
.topbar { background: var(--charcoal); color: var(--text-on-dark); font-size: 0.78rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 20px; }
.topbar__msg { opacity: 0.85; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.topbar__link { display: flex; align-items: center; gap: 6px; opacity: 0.9; transition: opacity var(--transition); }
.topbar__link:hover { opacity: 1; color: var(--brass-light); }
.currency-toggle { display: flex; border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; overflow: hidden; }
.currency-toggle__btn { padding: 3px 12px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.6); }
.currency-toggle__btn.is-active { background: var(--brass); color: var(--charcoal); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--charcoal-2); border-bottom: none; transition: box-shadow var(--transition); }
.site-header.is-scrolled { box-shadow: var(--shadow); }
.site-header::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass-light), var(--brass) 45%, var(--brass-light), transparent);
  background-size: 200% 100%;
  animation: footerShimmer 9s linear infinite;
}
/* Three-column grid (not flex) so the nav sits in a track flanked by two
   equal 1fr columns — that's what makes it land dead-center regardless of
   the logo and header-actions groups having different natural widths. */
.site-header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; height: 84px; transition: height var(--transition); color: var(--text-on-dark); }
.site-header.is-scrolled .site-header__inner { height: 68px; }

.hamburger { display: none; justify-self: start; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; justify-self: start; }
.logo__img { height: 42px; width: auto; display: block; }
.logo__mark { width: 38px; height: 38px; border: 1.5px solid var(--brass); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-weight: 700; font-size: 0.9rem; color: var(--brass-dark); }
.logo__text { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; letter-spacing: 0.03em; color: var(--charcoal); }
.logo__text em { font-style: normal; color: var(--brass-dark); }

.main-nav__list { display: flex; align-items: center; gap: 28px; }
.main-nav__link { display: flex; align-items: center; gap: 4px; font-size: 0.9rem; font-weight: 500; padding: 8px 0; position: relative; }
.main-nav__link::after { content: ''; position: absolute; left: 0; bottom: 2px; width: 0; height: 1.5px; background: var(--brass); transition: width var(--transition); }
.main-nav__item:hover .main-nav__link::after { width: 100%; }
.main-nav__item:hover .main-nav__link { color: var(--brass-light); }

.main-nav__item.has-mega { position: static; }
.mega-menu {
  position: absolute; left: 0; right: 0; top: 100%; background: var(--surface); color: var(--text);
  border-top: 1px solid var(--border); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 150;
}
.main-nav__item.has-mega:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu__grid { max-width: var(--container); margin: 0 auto; padding: 44px 24px; display: grid; grid-template-columns: repeat(4, 1fr) 1.15fr; gap: 40px; }
.mega-menu__col h4 { font-family: var(--font-sans); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding-bottom: 12px; margin-bottom: 10px; border-bottom: 1px solid var(--border); }
.mega-menu__col a { display: block; padding: 7px 4px; margin: 0 -4px; border-radius: var(--radius); font-size: 0.92rem; transition: color var(--transition), background var(--transition), transform var(--transition); }
.mega-menu__col a:hover { color: var(--brass-dark); background: var(--bg-alt); transform: translateX(3px); }
.mega-menu__col a.mega-menu__all { color: var(--brass-dark); font-weight: 600; margin-top: 4px; }
.mega-menu__promo { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 240px; }
.mega-menu__promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.16,1,.3,1); }
.mega-menu__promo:hover img { transform: scale(1.06); }
.mega-menu__promo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0) 38%, rgba(20,18,16,0.86) 100%); pointer-events: none; }
.mega-menu__promo-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--brass); color: var(--charcoal); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; }
.mega-menu__promo-link { position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2; color: #fff; }
.mega-menu__promo-link strong { display: block; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.mega-menu__promo-link span { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--brass-light); }
.mega-menu__promo-link .icon { width: 14px; height: 14px; transition: transform var(--transition); }
.mega-menu__promo:hover .mega-menu__promo-link .icon { transform: translateX(4px); }

.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; justify-self: end; }
.header-actions__btn { position: relative; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--transition); }
.header-actions__btn:hover { background: var(--bg-alt); }
.site-header__inner .header-actions__btn:hover { background: rgba(255,255,255,0.12); }
.badge { position: absolute; top: 2px; right: 2px; background: var(--brass); color: var(--charcoal); font-size: 0.62rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Search overlay */
.search-overlay { position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); z-index: 190; max-height: 0; overflow: hidden; opacity: 0; transition: max-height var(--transition), opacity var(--transition); }
.search-overlay.is-open { max-height: 420px; opacity: 1; }
.search-overlay__inner { display: flex; align-items: center; gap: 14px; padding: 22px 24px; color: var(--text-muted); }
.search-overlay__inner input { flex: 1; border: none; outline: none; font-size: 1.4rem; font-family: var(--font-serif); color: var(--text); background: transparent; }
.search-suggestions { padding: 0 24px 22px; max-width: var(--container); margin: 0 auto; }
.search-suggestions li a { display: block; padding: 10px 0; border-top: 1px solid var(--border); font-size: 0.9rem; }
.search-suggestions li a:hover { color: var(--brass-dark); }

/* ---------- Mobile nav ---------- */
.mobile-nav-backdrop { position: fixed; inset: 0; background: rgba(33,30,28,0.5); z-index: 290; opacity: 0; visibility: hidden; transition: opacity var(--transition); }
.mobile-nav-backdrop.is-open { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; left: -100%; width: min(340px, 86vw); height: 100%; background: var(--surface); z-index: 300; transition: left var(--transition); display: flex; flex-direction: column; }
.mobile-nav.is-open { left: 0; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid var(--border); }
.mobile-nav__list { padding: 10px 20px; overflow-y: auto; flex: 1; }
.mobile-nav__list > li > a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-accordion__trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-accordion__trigger .icon { transition: transform var(--transition); }
.mobile-accordion.is-open .mobile-accordion__trigger .icon { transform: rotate(180deg); }
.mobile-accordion__panel { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.mobile-accordion.is-open .mobile-accordion__panel { max-height: 500px; }
.mobile-accordion__panel a { display: block; padding: 10px 0 10px 14px; color: var(--text-muted); font-size: 0.9rem; }
.mobile-nav__foot { padding: 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.mobile-nav__foot a { display: flex; align-items: center; gap: 8px; font-weight: 500; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 88vh; min-height: 560px; max-height: 820px; display: flex; align-items: center; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video-wrap { position: absolute; inset: 0; overflow: hidden; opacity: 0; transition: opacity 1000ms ease; }
.hero__video-wrap.is-loaded { opacity: 1; }
.hero__video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 60% at 50% 42%, rgba(20,18,16,0.42) 0%, rgba(20,18,16,0) 100%),
    linear-gradient(180deg, rgba(20,18,16,0.42) 0%, rgba(20,18,16,0.26) 34%, rgba(20,18,16,0.62) 100%);
}
.hero__content { position: relative; color: #fff; max-width: 960px; margin: 0 auto; text-align: center; }
.hero__content h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.18; }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 32px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 38px 0; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 16px;
  padding: 2px 26px; border-left: 1px solid var(--border);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}
.trust-item:first-child { border-left: none; padding-left: 2px; }
.trust-item:last-child { padding-right: 2px; }
.trust-item:hover { transform: translateY(-3px); }
.trust-item__icon {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(184,147,91,0.08); border: 1px solid rgba(184,147,91,0.3); color: var(--brass-dark);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.trust-item__icon .icon { width: 24px; height: 24px; }
.trust-item:hover .trust-item__icon { background: var(--brass); border-color: var(--brass); color: #fff; }
.trust-item div { display: flex; flex-direction: column; gap: 3px; color: var(--text); min-width: 0; }
.trust-item strong { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em; }
.trust-item span { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { margin-bottom: 40px; }
.section__head--row { display: flex; justify-content: space-between; align-items: flex-end; }
.section__head--center { text-align: center; }
.section__head--center .eyebrow { display: block; }

/* ---------- Category grid (all categories visible at once, no scrolling) ---------- */
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 2px 14px rgba(33,30,28,0.06); transition: box-shadow var(--transition), transform var(--transition); }
.category-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.16,1,.3,1); }
.category-card:hover img { transform: scale(1.08); }
.category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0) 40%, rgba(20,18,16,0.78) 100%); z-index: 1; pointer-events: none; }
.category-card span { position: absolute; left: 16px; bottom: 16px; right: 16px; z-index: 2; color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 1.08rem; text-shadow: 0 2px 8px rgba(0,0,0,0.7); transition: transform var(--transition); }
.category-card:hover span { transform: translateY(-2px); }
.category-card--all { background: linear-gradient(135deg, var(--charcoal), #2b2724); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.category-card--all::after { display: none; }
.category-card--all .category-card--all__icon { position: static; display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.35); color: var(--brass-light); transition: background var(--transition), border-color var(--transition); text-shadow: none; }
.category-card--all:hover .category-card--all__icon { background: var(--brass); border-color: var(--brass); color: var(--charcoal); }
.category-card--all span:last-child { position: static; text-align: center; text-shadow: none; }

/* ---------- Product carousel / cards ---------- */
.carousel-controls { display: flex; gap: 8px; }
.carousel-btn { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.carousel-btn:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

.product-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: none; }
.product-carousel::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 270px; scroll-snap-align: start; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition); }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.product-card__media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge { position: absolute; top: 14px; left: 14px; background: var(--charcoal); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; z-index: 2; }
.product-card__badge--sale { background: #A8433B; }
.product-card__badge--stock { background: var(--text-muted); }
.product-card__wish { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; transition: transform var(--transition); z-index: 2; }
.product-card__wish:hover { transform: scale(1.1); }
.product-card__wish.is-active { color: #C6534B; }
.product-card__wish.is-active .icon { fill: currentColor; stroke: currentColor; }
.product-card__body { padding: 18px 16px; }
.product-card__eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-dark); margin-bottom: 8px; }
.product-card__body h3 { font-size: 0.98rem; font-weight: 600; margin: 0 0 8px; }
.product-card__body h3 a:hover { color: var(--brass-dark); }
.product-card__body .stars { margin: 2px 0 4px; }
.price { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; }
.price--lg { font-size: 1.4rem; margin: 6px 0 18px; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.price-block { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price__original { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; font-weight: 500; }
.product-card__addbtn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--charcoal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition); box-shadow: 0 2px 8px rgba(33,30,28,0.08); }
.product-card__addbtn:hover { background: linear-gradient(135deg, var(--brass-light), var(--brass-dark)); border-color: var(--brass); color: #fff; transform: scale(1.08); box-shadow: 0 8px 20px rgba(140,109,63,0.4); }
.product-card__addbtn .icon { width: 18px; height: 18px; }

/* ---------- Room grid ---------- */
.room-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-template-rows: repeat(2, 260px); gap: 16px; }
.room-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; grid-row: span 1; box-shadow: 0 2px 14px rgba(33,30,28,0.06); transition: box-shadow var(--transition); }
.room-tile:hover { box-shadow: var(--shadow); }
.room-tile--lg { grid-row: span 2; }
.room-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.16,1,.3,1); }
.room-tile:hover img { transform: scale(1.08); }
.room-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0) 42%, rgba(20,18,16,0.78) 100%); z-index: 1; pointer-events: none; }
.room-tile span { position: absolute; left: 18px; bottom: 18px; color: #fff; font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,0.7); transition: transform var(--transition); }
.room-tile:hover span { transform: translateY(-2px); }

/* ---------- Hotels CTA ---------- */
/* Full-bleed split: text column stays aligned to the site's container edge,
   media column runs edge-to-edge to the true viewport right edge (no .container
   wrapper, no aspect-ratio box — a cover background always fills its row with
   zero gap and zero letterbox, at the cost of a light crop on extreme widths). */
.hotels-cta { background: var(--charcoal); color: var(--text-on-dark); }
.hotels-cta__inner { display: grid; grid-template-columns: 35% 65%; align-items: stretch; min-height: 560px; }
.hotels-cta__text { display: flex; align-items: center; padding: 70px 40px 70px max(24px, calc((100vw - var(--container)) / 2 + 24px)); }
.hotels-cta__text-inner { max-width: 460px; }
.hotels-cta__text h2 { color: #fff; margin: 10px 0 18px; }
.hotels-cta__text p { color: rgba(255,255,255,0.75); margin-bottom: 30px; }
.hotels-cta__media { background-size: cover; background-position: center; }

/* ---------- Heritage ---------- */
.heritage__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.heritage__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.heritage__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.heritage__text p { color: var(--text-muted); margin: 18px 0 24px; max-width: 480px; }
.heritage__badges { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }

/* ---------- Inline content-block video (e.g. Heritage section) ----------
   Same cover-fit-and-crop technique as the hero video, generalized: any
   element with [data-inline-video] gets an iframe injected by main.js and
   fades in once it's loaded. */
[data-inline-video] { position: absolute; inset: 0; overflow: hidden; opacity: 0; transition: opacity 900ms ease; }
[data-inline-video].is-loaded { opacity: 1; }
.inline-video__frame { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.heritage__badges li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; color: var(--charcoal); }
.heritage__badges .icon { color: var(--brass-dark); }

/* ---------- Style row ---------- */
.style-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.style-pill { text-align: center; width: 140px; }
.style-pill img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; transition: transform var(--transition), box-shadow var(--transition); box-shadow: 0 0 0 0 rgba(184,147,91,0); }
.style-pill:hover img { transform: scale(1.06); box-shadow: 0 8px 24px rgba(33,30,28,0.18), 0 0 0 3px var(--brass-light); }
.style-pill span { font-weight: 600; font-size: 0.9rem; transition: color var(--transition); }
.style-pill:hover span { color: var(--brass-dark); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.testimonial .icon--lg { color: var(--brass-light); margin-bottom: 14px; }
.testimonial p { font-size: 0.98rem; color: var(--charcoal-soft); margin-bottom: 22px; }
.testimonial footer { display: flex; flex-direction: column; gap: 8px; }
.testimonial cite { font-style: normal; font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Newsletter (inline) ---------- */
.newsletter { position: relative; padding: 110px 0; overflow: hidden; background: var(--charcoal); }
.newsletter__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: translateY(var(--parallax, 0)) scale(1.22); will-change: transform; }
.newsletter__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(20,18,16,0.35) 0%, rgba(20,18,16,0.72) 100%),
    linear-gradient(180deg, rgba(20,18,16,0.55) 0%, rgba(20,18,16,0.4) 40%, rgba(20,18,16,0.68) 100%);
}
.newsletter__inner { position: relative; max-width: 620px; margin: 0 auto; text-align: center; color: #fff; }
.newsletter__inner h2 { color: #fff; margin: 10px 0 14px; }
.newsletter__inner p { color: rgba(255,255,255,0.82); max-width: 460px; margin: 0 auto; }
.newsletter__form { display: flex; gap: 12px; margin: 30px auto 0; max-width: 460px; }
.newsletter__form input {
  flex: 1; min-width: 0; padding: 15px 20px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.08);
  color: #fff; font-size: 0.92rem; backdrop-filter: blur(6px);
  transition: border-color var(--transition), background var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter__form input:focus { outline: none; border-color: var(--brass-light); background: rgba(255,255,255,0.14); }
.newsletter__inner .newsletter__note { margin-top: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.newsletter__form input { flex: 1; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; }
.newsletter__form input:focus { outline: none; border-color: var(--brass); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: var(--charcoal); color: rgba(255,255,255,0.8); padding: 70px 0 0; }
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass-light), var(--brass) 45%, var(--brass-light), transparent);
  background-size: 200% 100%;
  animation: footerShimmer 9s linear infinite;
}
@keyframes footerShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h5 { color: #fff; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--brass-light); }
.footer-col--brand p { font-size: 0.88rem; margin: 14px 0 18px; opacity: 0.75; max-width: 260px; }
.logo--footer .logo__text { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8); transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition); }
.footer-social a .icon { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; transform: translateY(-2px); }
.footer-address { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; padding: 6px 0; }
.footer-col a[href^="tel"], .footer-col a[href^="https://wa"] { display: flex; align-items: center; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; font-size: 0.78rem; opacity: 0.6; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(255,255,255,0.35); transition: color var(--transition), text-decoration-color var(--transition); }
.footer-bottom a:hover { color: var(--brass-light); text-decoration-color: var(--brass-light); }

/* ---------- WhatsApp FAB & back to top ---------- */
.whatsapp-fab { display: none; position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; background: #25D366; color: #fff; border-radius: 50%; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 250; transition: transform var(--transition); }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab .icon { width: 26px; height: 26px; fill: currentColor; }
.back-to-top { position: fixed; right: 24px; bottom: 90px; width: 44px; height: 44px; background: var(--charcoal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 250; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Modals ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(20,18,16,0.6); z-index: 390; opacity: 0; visibility: hidden; transition: opacity var(--transition); }
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%); background: var(--surface); border-radius: var(--radius-lg); z-index: 400; opacity: 0; visibility: hidden; transition: opacity var(--transition), transform var(--transition); box-shadow: var(--shadow-lg); }
.modal.is-open { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg-alt); z-index: 2; }

.quick-view { width: min(880px, 92vw); max-height: 88vh; overflow-y: auto; }
.quick-view__grid { display: grid; grid-template-columns: 1fr 1fr; }
.quick-view__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.quick-view__info { padding: 40px; }
.variant-block { margin-bottom: 22px; }
.variant-block__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); font-weight: 600; margin-bottom: 10px; }
.swatches { display: flex; gap: 10px; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15); transition: transform var(--transition); }
.swatch.is-active { border-color: var(--charcoal); transform: scale(1.1); }
.chip-select { display: flex; gap: 10px; }
.chip { padding: 8px 16px; border: 1px solid var(--border); border-radius: 20px; font-size: 0.85rem; font-weight: 500; transition: all var(--transition); }
.chip.is-active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-stepper button { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; transition: background var(--transition), color var(--transition); }
.qty-stepper button:hover { background: var(--brass); color: #fff; }
.qty-stepper span { width: 34px; text-align: center; font-weight: 600; }
.qv-note { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; }

.newsletter-modal { width: min(420px, 90vw); padding: 44px; text-align: center; }
.newsletter-modal h3 { margin: 6px 0 10px; }
.newsletter-modal p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.92rem; }
.newsletter-modal form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-modal input { padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.9rem; }
.newsletter-modal input:focus { outline: none; border-color: var(--brass); }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); background: var(--charcoal); color: #fff; padding: 14px 24px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; opacity: 0; visibility: hidden; transition: all var(--transition); z-index: 500; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ==========================================================================
   Premium micro-interactions: scroll-reveal, add-to-cart, cart badge
   ========================================================================== */

/* Scroll-reveal: elements fade + rise into view as the page scrolls */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
[data-reveal-group] > * { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1); }
[data-reveal-group].is-revealed > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-group].is-revealed > *:nth-child(2) { transition-delay: 70ms; }
[data-reveal-group].is-revealed > *:nth-child(3) { transition-delay: 140ms; }
[data-reveal-group].is-revealed > *:nth-child(4) { transition-delay: 210ms; }
[data-reveal-group].is-revealed > *:nth-child(5) { transition-delay: 280ms; }
[data-reveal-group].is-revealed > *:nth-child(6) { transition-delay: 350ms; }
[data-reveal-group].is-revealed > *:nth-child(7) { transition-delay: 420ms; }
[data-reveal-group].is-revealed > *:nth-child(8) { transition-delay: 490ms; }
[data-reveal-group].is-revealed > *:nth-child(9) { transition-delay: 560ms; }
[data-reveal-group].is-revealed > *:nth-child(10) { transition-delay: 630ms; }

/* Hero: gentle entrance + subtle parallax on the background image */
.hero__img { transform: translateY(var(--parallax, 0)) scale(1.08); transition: transform 60ms linear; }
.hero__content > * { opacity: 0; transform: translateY(18px); animation: heroRise 900ms cubic-bezier(.16,1,.3,1) forwards; }
.hero__content .eyebrow { animation-delay: 150ms; }
.hero__content h1 { animation-delay: 280ms; }
.hero__content .hero__sub { animation-delay: 420ms; }
.hero__content .hero__actions { animation-delay: 560ms; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* Add-to-cart button: tactile click bounce (card quick-add opens the variant picker) */
.product-card__addbtn { position: relative; overflow: visible; }
.product-card__addbtn.is-clicked { animation: addBounce 450ms cubic-bezier(.34,1.56,.64,1); }
@keyframes addBounce { 0% { transform: scale(1); } 35% { transform: scale(0.82); } 65% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* Real add-to-cart success state (Quick View modal button + PDP add-to-cart button) */
#qvAddToCart.is-success, #pdpAddToCart.is-success { background: #4A7C59; color: #fff; }
#qvAddToCart .icon-check, #pdpAddToCart .icon-check { display: inline-block; width: 16px; height: 16px; vertical-align: -3px; margin-right: 6px; opacity: 0; transform: scale(0.4); transition: opacity 200ms ease, transform 200ms ease; }
#qvAddToCart.is-success .icon-check, #pdpAddToCart.is-success .icon-check { opacity: 1; transform: scale(1); }

/* Fly-to-cart flying dot */
.fly-dot { position: fixed; z-index: 600; width: 14px; height: 14px; border-radius: 50%; background: var(--brass); box-shadow: 0 2px 10px rgba(184,147,91,0.6); pointer-events: none; transition: transform 700ms cubic-bezier(.2,.8,.2,1), opacity 700ms ease 400ms; }

/* Cart / wishlist badge pulse on update */
.badge.is-bumped { animation: badgeBump 480ms cubic-bezier(.34,1.56,.64,1); }
@keyframes badgeBump { 0% { transform: scale(1); } 40% { transform: scale(1.5); } 100% { transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal-group] > *, .hero__content > * { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .hero__img, .newsletter__img { transform: none !important; }
  .hero__video-wrap, [data-inline-video] { display: none !important; }
  .site-footer::before, .site-header::after { animation: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .main-nav, .header-actions #wishlistBtn, .header-actions a[aria-label="Account"] { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .site-header__inner { display: flex; align-items: center; gap: 10px; }
  .header-actions { margin-left: auto; }
  .trust-bar { padding: 28px 0; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-item { border-left: none; padding: 18px 20px; background: var(--bg-alt); border-radius: var(--radius-lg); }
  .trust-item:first-child, .trust-item:last-child { padding: 18px 20px; }
  .hotels-cta__inner { grid-template-columns: 1fr; min-height: 0; }
  .hotels-cta__text { padding: 60px 24px; }
  .hotels-cta__text-inner { max-width: none; }
  .hotels-cta__media { aspect-ratio: 3 / 2; }
  .heritage__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .room-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 220px); }
  .room-tile--lg { grid-row: span 1; grid-column: span 2; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .topbar__msg { display: none; }
  .section { padding: 60px 0; }
  h1 { font-size: 2.4rem; }
  .hero { height: 78vh; min-height: 460px; }
  .hero__content .eyebrow { display: none; }
  .hero__content h1 { font-size: clamp(1.5rem, 6.5vw, 2rem); margin-bottom: 12px; }
  .hero__sub { font-size: 0.88rem; margin-bottom: 24px; max-width: 300px; }
  .hero__actions--secondary { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .trust-bar { padding: 24px 0; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-item { flex-direction: column; text-align: center; align-items: center; gap: 10px; padding: 20px 10px; }
  .trust-item__icon { width: 44px; height: 44px; }
  .trust-item__icon .icon { width: 20px; height: 20px; }
  .trust-item strong { font-size: 0.8rem; line-height: 1.3; }
  .trust-item span { font-size: 0.7rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-col--brand { grid-column: span 2; }
  .newsletter { padding: 80px 0; }
  .newsletter__form { width: 100%; min-width: 0; flex-direction: column; }
  .quick-view__grid { grid-template-columns: 1fr; }
  .quick-view__grid img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 1/1; }
  .quick-view { width: min(420px, 92vw); }
  .room-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .room-tile, .room-tile--lg { grid-column: span 1; height: 240px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
