/* ══════════════════════════════════════════
   SOULSETTERS PUBLIC — Dark Luxury Theme
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --bg: #0a0a0a;
  --bg-card: #111;
  --bg-section: #0e0e0e;
  --gold: #c4a882;
  --gold-light: #d4bc9a;
  --gold-dim: #8a7560;
  --text: #f5f0eb;
  --text-dim: #a09890;
  --text-muted: #6a6260;
  --border: #1e1c1a;
  --green: #5a6b4a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(196,168,130,0.08);
}
.navbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  max-width: 1400px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ── Brands Dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); cursor: pointer; transition: color 0.3s;
  display: flex; align-items: center; gap: 4px;
}
.nav-dropdown-toggle:hover { color: var(--gold); }
.nav-dropdown-toggle::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; margin-left: 2px;
}
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 10px; min-width: 200px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 24px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: all 0.2s; white-space: nowrap;
  background: rgba(15,15,15,0.97);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.nav-dropdown-menu a:first-child {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.nav-dropdown-menu a:last-child {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(15,15,15,0.97); }
.nav-book {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid var(--gold-dim);
  border-radius: 24px;
  color: var(--gold); transition: all 0.3s;
}
.nav-book:hover { background: var(--gold); color: var(--bg); }
.book-mobile { display: none; }
.book-desktop { display: inline; }

/* ── Hamburger ── */
.nav-hamburger {
  display: none; cursor: pointer; flex-direction: column;
  gap: 5px; padding: 8px; z-index: 101;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: var(--text-dim); padding: 12px 0;
  transition: color 0.3s; letter-spacing: 2px;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-book {
  margin-top: 32px; font-family: var(--sans);
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 40px; border: 1px solid var(--gold-dim);
  color: var(--gold); font-weight: 400;
}

/* ── Mobile Hero & Brand Picker ── */
.mobile-hero {
  display: none; /* shown via media query */
  position: relative; height: 100vh; height: 100dvh;
  overflow: hidden;
}
/* Slider slides */
.hero-slide-bg {
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide-bg.active { opacity: 1; }
.hero-text-slide, .mobile-hero-brand-text {
  display: none;
}
.hero-text-slide.active, .mobile-hero-brand-text.active {
  display: block;
  animation: fadeSlideText 0.8s ease;
}
@keyframes fadeSlideText {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 36px; width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%; transition: all 0.3s;
  backdrop-filter: blur(4px); line-height: 1;
}
.hero-arrow:hover { background: rgba(196,168,130,0.3); border-color: var(--gold); }
.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }

/* Hero Dots */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.2); }
.hero-dot:hover { background: rgba(255,255,255,0.6); }

.mobile-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.mobile-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.1) 30%,
    rgba(0,0,0,0.1) 60%,
    rgba(0,0,0,0.6) 100%
  );
}

/* Brand Picker */
.brand-picker {
  position: absolute; top: 90px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 360px;
  z-index: 10;
}

/* Closed state: pill button with text + chevron below */
.brand-picker-toggle {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 32px 14px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.brand-picker-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 3px;
  color: #fff; text-transform: uppercase;
}
.brand-picker-chevron {
  color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1;
  margin-top: 6px;
  transition: transform 0.3s;
}

/* Open state: single unified panel */
.brand-picker.open .brand-picker-toggle {
  border-radius: 16px 16px 0 0;
  border-bottom-color: rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
.brand-picker-list {
  display: none; flex-direction: column; align-items: center;
  padding: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.brand-picker.open .brand-picker-list { display: flex; }

.brand-picker-item {
  display: block; width: 100%; text-align: center;
  font-family: var(--sans); font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.brand-picker-item:last-child { border-bottom: none; }
.brand-picker-item:hover { color: var(--gold-light); }
.brand-picker-item.active { color: var(--gold); font-weight: 500; }

/* Chevron at the bottom of the open panel */
.brand-picker-bottom {
  display: none; padding: 10px 0 14px; text-align: center;
  cursor: pointer;
}
.brand-picker.open .brand-picker-bottom { display: block; }
.brand-picker-bottom-chevron {
  color: rgba(255,255,255,0.5); font-size: 14px;
}

/* Bottom Brand Display */
.mobile-hero-brand {
  position: absolute; bottom: 48px; left: 0; right: 0;
  text-align: center; z-index: 10;
}
.mobile-hero-brand-name {
  font-family: var(--serif); font-size: 32px; font-weight: 200;
  color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.mobile-hero-brand-name em {
  font-style: italic; color: var(--gold-light);
}
.mobile-hero-brand-tagline {
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.4); z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.6) 70%, #0a0a0a 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 0 20px; }
.hero-badge {
  display: inline-block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); padding: 8px 20px; border: 1px solid rgba(196,168,130,0.3);
  margin-bottom: 24px;
}
.hero-brand {
  font-size: 12px; letter-spacing: 8px; text-transform: uppercase;
  color: rgba(196,168,130,0.5); margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif); font-size: 72px; font-weight: 200;
  line-height: 1.1; margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 24px;
}
.hero-desc {
  font-size: 16px; color: var(--text-dim); font-weight: 300;
  line-height: 1.8; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ── */
.btn-gold {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; padding: 14px 32px;
  background: var(--gold); color: var(--bg); transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-block; font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; padding: 14px 32px;
  border: 1px solid var(--gold-dim); color: var(--gold); transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ── Section ── */
.section {
  padding: 100px 40px;
  max-width: 1200px; margin: 0 auto;
}
.section-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--text); margin-bottom: 20px;
}
.section-desc {
  font-size: 15px; color: var(--text-dim); line-height: 1.8;
  max-width: 600px; margin-bottom: 40px;
}

/* ── Brand Cards ── */
.brands-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.brand-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.4s;
}
.brand-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.brand-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.35); transition: all 0.6s;
}
.brand-card:hover .brand-card-bg { filter: brightness(0.45); transform: scale(1.05); }
.brand-card-content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
}
.brand-card-type {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.brand-card-name {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--text); margin-bottom: 8px;
}
.brand-card-tagline {
  font-size: 13px; color: var(--text-dim); font-style: italic;
  margin-bottom: 16px;
}
.brand-card-link {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
}

/* ── Room Cards ── */
.rooms-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.room-card {
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.4s;
}
.room-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.room-card-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  background: linear-gradient(135deg, #1a1510 0%, #0e0e0e 100%);
  background-size: cover; background-position: center;
}
.room-card-body { padding: 24px; }
.room-card-brand {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.room-card-name {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--text); margin-bottom: 6px;
}
.room-card-sub {
  font-size: 12px; color: var(--text-muted); font-style: italic;
  margin-bottom: 12px;
}
.room-card-meta {
  display: flex; gap: 16px; font-size: 11px; color: var(--text-dim);
  margin-bottom: 16px;
}
.room-card-meta span { display: flex; align-items: center; gap: 4px; }
.room-card-price {
  font-family: var(--serif); font-size: 20px; color: var(--gold);
  font-weight: 300;
}
.room-card-price small { font-size: 11px; color: var(--text-muted); font-family: var(--sans); }

/* ── Room Detail ── */
.room-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 85vh; margin-top: 70px;
}
.room-hero-img {
  background-size: cover; background-position: center;
  min-height: 500px;
}
.room-hero-info {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px;
}
.room-hero-brand {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.room-hero-name {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  color: var(--text); margin-bottom: 8px;
}
.room-hero-subtitle {
  font-size: 15px; color: var(--text-dim); font-style: italic;
  margin-bottom: 24px;
}
.room-hero-price {
  font-family: var(--serif); font-size: 28px; color: var(--gold);
  font-weight: 300; margin-bottom: 24px;
}
.room-hero-price small { font-size: 12px; color: var(--text-muted); font-family: var(--sans); }
.room-hero-desc {
  font-size: 15px; color: var(--text-dim); line-height: 1.8;
  margin-bottom: 32px;
}
.room-hero-desc p { margin-bottom: 16px; }
.room-hero-meta {
  display: flex; gap: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.room-meta-item { text-align: center; }
.room-meta-num {
  font-family: var(--serif); font-size: 24px; color: var(--gold); font-weight: 300;
}
.room-meta-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 4px;
}

/* ── Features/Amenities Grid ── */
.features-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.features-title {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  margin-bottom: 32px; color: var(--text);
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.feature-item {
  padding: 14px 18px; border: 1px solid var(--border);
  font-size: 13px; color: var(--text-dim);
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.3s;
}
.feature-item:hover { border-color: var(--gold-dim); }
.feature-icon { color: var(--gold); font-size: 14px; }

/* ── Gallery ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4px; margin-top: 32px;
}
.gallery-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: filter 0.3s; cursor: pointer;
}
.gallery-img:hover { filter: brightness(1.1); }

/* ── Related Rooms ── */
.related { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }

/* ══════════════════════════════════════════
   BRAND PAGES — Light/Airy Sub-Site
   ══════════════════════════════════════════ */

/* ── Brand Hero (slim) ── */
.brand-hero {
  position: relative; height: 50vh; min-height: 320px; max-height: 500px;
  overflow: hidden; margin-top: 68px; /* navbar height */
}
.brand-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.brand-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.5) 100%);
}
.brand-hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 2; text-align: center;
}
.brand-hero-logo {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  color: #fff; letter-spacing: 6px; text-transform: uppercase;
}
.brand-hero-logo-img {
  max-width: 280px; max-height: 80px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.brand-hero-full .brand-hero-logo-img {
  max-width: 340px; max-height: 100px;
}
.brand-hero-byline {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 4px;
}
.brand-hero-tagline {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  font-style: italic; color: rgba(255,255,255,0.85);
  margin-top: 20px; letter-spacing: 1px;
}
.brand-hero-full {
  height: 70vh; min-height: 450px; max-height: 700px;
}
.brand-hero-full .brand-hero-logo {
  font-size: 64px;
}

/* ── Brand Sub-Nav (sticky) ── */
.brand-subnav {
  background: #fff; border-bottom: 1px solid #e8e4df;
  z-index: 90; position: relative;
  transition: box-shadow 0.3s;
}
.brand-subnav.stuck {
  position: fixed; left: 0; right: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.brand-subnav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 48px;
}
.brand-subnav-links {
  display: flex; gap: 32px;
}
.brand-subnav-links a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #888; padding: 18px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s; font-weight: 400;
}
.brand-subnav-links a:hover { color: #333; }
.brand-subnav-links a.active {
  color: #1a1a1a; border-bottom-color: var(--gold); font-weight: 500;
}
.brand-subnav-book {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 20px; background: var(--gold); color: #fff;
  border-radius: 4px; transition: all 0.3s; font-weight: 500;
}
.brand-subnav-book:hover { background: #b89a74; }

/* ── Brand Intro ── */
.brand-intro {
  background: #faf8f5; padding: 80px 48px;
}
.brand-intro-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.brand-intro-tagline {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  font-style: italic; color: #2a2520; line-height: 1.4;
  margin-bottom: 24px;
}
.brand-intro-desc {
  font-size: 15px; line-height: 1.8; color: #666; margin-bottom: 16px;
}
.brand-intro-location {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-top: 16px;
}

/* ── Rooms Zigzag ── */
.brand-rooms {
  background: #fff; padding: 80px 48px;
}
.brand-rooms-inner {
  max-width: 1200px; margin: 0 auto;
}
.brand-rooms-header {
  text-align: center; margin-bottom: 60px;
}
.brand-rooms-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.brand-rooms-title {
  font-family: var(--serif); font-size: 42px; font-weight: 300;
  color: #1a1a1a;
}
.brand-rooms-empty {
  text-align: center; color: #999; font-size: 15px;
}

.room-zigzag {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 80px;
  padding-bottom: 80px; border-bottom: 1px solid #eee;
}
.room-zigzag:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.room-zigzag.reverse { direction: rtl; }
.room-zigzag.reverse > * { direction: ltr; }

.room-zigzag-img img {
  width: 100%; height: 400px; object-fit: cover; border-radius: 4px;
}
.room-zigzag-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, #f0ece6, #e8e4de);
  border-radius: 4px;
}

.room-zigzag-price {
  margin-bottom: 8px;
}
.room-zigzag-price .price-label {
  font-size: 11px; color: #999; margin-right: 4px;
}
.room-zigzag-price .price-amount {
  font-family: var(--serif); font-size: 28px; color: #1a1a1a;
}
.room-zigzag-price .price-unit {
  font-size: 11px; color: #999; margin-left: 4px; text-transform: uppercase;
}

.room-zigzag-name {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: #1a1a1a; margin-bottom: 8px;
}
.room-zigzag-subtitle {
  font-size: 13px; font-style: italic; color: #999;
  margin-bottom: 16px;
}
.room-zigzag-desc {
  font-size: 14px; line-height: 1.8; color: #666; margin-bottom: 20px;
}
.room-zigzag-features {
  margin-bottom: 24px;
}
.room-zigzag-features-label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: #999; margin-bottom: 8px;
}
.room-zigzag-features-list {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.room-zigzag-features-list span {
  font-size: 13px; color: #555;
}

.room-zigzag-actions {
  display: flex; gap: 12px;
}
.btn-brand-primary {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 28px; background: var(--gold); color: #fff;
  border-radius: 4px; transition: all 0.3s; font-weight: 500;
}
.btn-brand-primary:hover { background: #b89a74; }
.btn-brand-outline {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 28px; border: 1px solid #ccc; color: #555;
  border-radius: 4px; transition: all 0.3s; font-weight: 400;
}
.btn-brand-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── Brand Sections & Containers ── */
.brand-section { padding: 80px 48px; }
.brand-container { max-width: 1200px; margin: 0 auto; }
.brand-container-narrow { max-width: 800px; margin: 0 auto; text-align: center; }
.brand-bg-dark { background: #0e0c0a; }
.brand-bg-cream { background: #faf8f5; }
.brand-bg-white { background: #fff; }

/* ── Experience Cards Carousel ── */
.exp-cards-section {
  position: relative;
  background: #0e0c0a;
  padding: 48px 0;
  display: flex;
  align-items: center;
}
.exp-cards-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 80px;
  scroll-behavior: smooth;
}
.exp-cards-track::-webkit-scrollbar { display: none; }
.exp-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  height: 560px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.3s;
}
.exp-card:hover { transform: translateY(-4px); }
.exp-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}
.exp-card:hover .exp-card-bg { transform: scale(1.04); }
.exp-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}
.exp-card-content {
  position: relative; z-index: 2;
  padding: 32px 28px;
  text-align: center;
  width: 100%;
}
.exp-card-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.exp-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.exp-card-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 8px;
}
.exp-card-divider::before,
.exp-card-divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.exp-card-desc {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.exp-cards-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 48px;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s;
  line-height: 1;
}
.exp-cards-arrow:hover { color: #fff; }
.exp-cards-arrow.left { left: 8px; }
.exp-cards-arrow.right { right: 8px; }

/* ── Room Carousel ── */
.room-carousel {
  position: relative; padding: 0 48px;
}
.room-carousel-track {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; -ms-overflow-style: none;
  scrollbar-width: none; padding: 16px 0;
}
.room-carousel-track::-webkit-scrollbar { display: none; }
.room-carousel-card {
  flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start;
  text-decoration: none; transition: transform 0.3s;
}
.room-carousel-card:hover { transform: translateY(-4px); }
.room-carousel-img {
  width: 100%; height: 280px; overflow: hidden; border-radius: 4px;
  margin-bottom: 16px;
}
.room-carousel-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.room-carousel-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2a2520, #1a1a1a);
}
.room-carousel-name {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  color: #fff; margin-bottom: 8px;
}
.room-carousel-desc {
  font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5);
}
.room-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 32px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 50%; transition: all 0.3s;
  line-height: 1;
}
.room-carousel-arrow:hover { background: rgba(196,168,130,0.3); border-color: var(--gold); }
.room-carousel-arrow.left { left: 0; }
.room-carousel-arrow.right { right: 0; }

/* ── 3. Editorial Title Section (centered, cream bg) ── */
.brand-editorial {
  background: #faf8f5;
  padding: 80px 32px;
  text-align: center;
}
.brand-editorial-inner {
  max-width: 900px;
  margin: 0 auto;
}
.brand-editorial-title {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: #2a2520;
  line-height: 1.2;
  margin-bottom: 32px;
}
.brand-editorial-title em {
  font-style: italic;
  font-weight: 300;
}
.editorial-gold {
  color: var(--gold);
  font-style: italic;
}
.editorial-small {
  font-size: 0.55em;
  font-weight: 300;
}
.brand-editorial-line {
  width: 60px;
  height: 2px;
  background: var(--gold-dim);
  margin: 0 auto 32px;
}
.brand-editorial-desc {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
  color: #666;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

/* ── 4. Contained Banner ("Rooted, Rising" style) ── */
.brand-contained-banner {
  background: #faf8f5;
  padding: 0 32px 80px;
}
.brand-contained-banner-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
}
.brand-cb-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.brand-cb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.brand-cb-content {
  position: relative; z-index: 2;
  padding: 60px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.brand-cb-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.brand-cb-title em {
  font-style: italic;
  display: block;
}
.brand-cb-title span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
}
.brand-cb-desc {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

/* ── 6. Panorama + Floating Booking Widget ── */
.brand-panorama {
  background: #faf8f5;
  padding: 0 32px 80px;
  position: relative;
}
.brand-panorama-img {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}
.brand-panorama-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.booking-widget {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  border-radius: 2px;
}
.booking-widget-field {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid #e8e4df;
}
.booking-widget-field label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}
.booking-widget-field .booking-input {
  border: none;
  font-family: var(--serif);
  font-size: 22px;
  color: #2a2520;
  width: 100%;
  background: transparent;
  outline: none;
}
.booking-widget-btn {
  padding: 20px 28px;
  background: #4a5c4a;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s;
}
.booking-widget-btn:hover {
  background: #3a4c3a;
}

/* ── Full-Width Banner ── */
.brand-banner {
  position: relative; height: 70vh; min-height: 480px;
  overflow: hidden; display: flex; align-items: center;
  justify-content: center;
}
.brand-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.brand-banner-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}
.brand-banner-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px; padding: 0 32px;
}
.brand-banner-title {
  font-family: var(--serif); font-size: 52px; font-weight: 300;
  color: #fff; line-height: 1.15; margin-bottom: 28px;
}
.brand-banner-title em { font-style: italic; color: var(--gold-light); }
.brand-banner-title span { font-weight: 200; font-size: 0.7em; }
.brand-banner-desc {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; line-height: 1.9; color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.brand-banner-btn {
  display: inline-block; padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.5); color: #fff;
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  transition: all 0.3s;
}
.brand-banner-btn:hover {
  background: rgba(255,255,255,0.12); border-color: #fff;
}

/* ── Features Showcase ── */
.brand-features-showcase {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.feature-showcase-card {
  text-align: center; padding: 40px 20px;
  border: 1px solid #eee; border-radius: 4px;
  transition: all 0.3s;
}
.feature-showcase-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.feature-showcase-number {
  font-family: var(--serif); font-size: 36px; color: var(--gold);
  font-weight: 300; margin-bottom: 12px;
}
.feature-showcase-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: #333;
}

/* ── Booking Bar ── */
.booking-bar {
  display: flex; align-items: flex-end; gap: 24px;
  justify-content: center; padding: 16px 0;
}
.booking-bar-field { display: flex; flex-direction: column; gap: 6px; }
.booking-bar-field label {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.booking-input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 12px 16px; font-family: var(--sans);
  font-size: 14px; border-radius: 4px; min-width: 140px;
}
.booking-input:focus { outline: none; border-color: var(--gold); }
.booking-bar-btn {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 28px; background: var(--gold); color: #fff;
  border-radius: 4px; font-weight: 500; transition: all 0.3s;
  white-space: nowrap;
}
.booking-bar-btn:hover { background: #b89a74; }

/* ── Brand About ── */
.brand-about {
  background: #faf8f5; padding: 80px 48px;
}
.brand-about-inner {
  max-width: 1000px; margin: 0 auto; text-align: center;
}
.brand-about-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.brand-about-title {
  font-family: var(--serif); font-size: 38px; font-weight: 300;
  color: #1a1a1a; margin-bottom: 40px;
}
.brand-features-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
}
.brand-feature-item {
  font-size: 14px; color: #555; display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid #e0dcd6; border-radius: 4px;
}
.brand-feature-dot { color: var(--gold); }

/* ── Brand Page Responsive ── */
@media (max-width: 768px) {
  .brand-hero { height: 40vh; min-height: 260px; margin-top: 56px; }
  .brand-hero-full { height: 50vh; min-height: 320px; }
  .brand-hero-logo { font-size: 32px; letter-spacing: 3px; }
  .brand-hero-full .brand-hero-logo { font-size: 36px; }
  .brand-hero-tagline { font-size: 20px; }
  .brand-subnav-inner { padding: 0 16px; }
  .brand-subnav-links { gap: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .brand-subnav-links a { font-size: 10px; white-space: nowrap; padding: 14px 0; }
  .brand-subnav-book { display: none; }
  .brand-section { padding: 48px 20px; }
  .brand-intro { padding: 48px 20px; }
  .brand-intro-tagline { font-size: 24px; }
  .brand-rooms { padding: 48px 20px; }
  .room-zigzag { grid-template-columns: 1fr; gap: 24px; }
  .room-zigzag.reverse { direction: ltr; }
  .room-zigzag-img img { height: 260px; }
  .room-zigzag-name { font-size: 26px; }
  .brand-rooms-title { font-size: 30px; }
  .brand-about { padding: 48px 20px; }
  .room-carousel { padding: 0; }
  .room-carousel-card { flex: 0 0 80%; }
  .room-carousel-arrow { display: none; }
  /* Editorial */
  .brand-editorial { padding: 48px 20px; }
  .brand-editorial-title { font-size: 34px; }
  .editorial-small { font-size: 0.5em; }
  .brand-editorial-desc { font-size: 14px; line-height: 1.8; }

  /* Contained Banner */
  .brand-contained-banner { padding: 0 16px 48px; }
  .brand-contained-banner-inner { height: 350px; }
  .brand-cb-content { padding: 32px 24px; }
  .brand-cb-title { font-size: 32px; }
  .brand-cb-desc { font-size: 13px; }

  /* Panorama + Booking Widget */
  .brand-panorama { padding: 0 16px 48px; }
  .brand-panorama-img img { height: 260px; }
  .booking-widget { flex-direction: column; max-width: 100%; margin: -30px 16px 0; }
  .booking-widget-field { border-right: none; border-bottom: 1px solid #e8e4df; padding: 14px 20px; }
  .booking-widget-field .booking-input { font-size: 18px; }
  .booking-widget-btn { text-align: center; padding: 16px; }

  /* Experience Cards */
  .exp-cards-track { padding: 0 16px; gap: 16px; }
  .exp-card { flex: 0 0 85%; min-width: 260px; height: 460px; }
  .exp-cards-arrow { display: none; }
  .exp-card-title { font-size: 22px; }

  /* Full-width Banner */
  .brand-banner { height: 60vh; min-height: 350px; }
  .brand-banner-title { font-size: 32px; }
  .brand-banner-content { padding: 0 20px; }
  .brand-banner-desc { font-size: 13px; line-height: 1.7; }
  .brand-banner-btn { padding: 12px 32px; font-size: 11px; }
  .brand-features-showcase { grid-template-columns: 1fr 1fr; gap: 16px; }
  .booking-bar { flex-direction: column; align-items: stretch; gap: 16px; }
  .booking-input { min-width: auto; }
}

/* ── Footer ── */
.footer {
  padding: 60px 40px; text-align: center;
  border-top: 1px solid var(--border);
}
.footer-logo-img { height: 32px; width: auto; margin: 0 auto 8px; }
.footer-tagline {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 24px;
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; }
.footer-links a {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 10px; color: var(--text-muted); }

/* ── Filter Buttons ── */
.rooms-filter {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  font-family: var(--sans); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 20px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--gold-dim); color: var(--gold); }
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(196,168,130,0.08); }

/* ── Responsive: Tablet (switch to hamburger) ── */
@media (max-width: 1100px) {
  .navbar-inner { padding: 16px 24px; }
  .navbar-inner {
    display: grid; grid-template-columns: 1fr auto 1fr;
  }
  .navbar-inner .nav-hamburger { justify-self: start; order: 1; display: flex; }
  .navbar-inner .nav-logo { justify-self: center; order: 2; }
  .navbar-inner .nav-links { display: none; order: 0; }
  .navbar-inner .nav-book { justify-self: end; order: 3; }
  .nav-links { display: none; }
  .book-mobile { display: inline; }
  .book-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .navbar { background: #000; }
  .navbar-inner {
    padding: 14px 16px;
  }
  .nav-book {
    font-size: 9px; letter-spacing: 1px; padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.35); color: #fff;
    border-radius: 20px;
  }
  .nav-book:hover { background: #fff; color: var(--bg); }
  .nav-logo-img { height: 22px; }
  .mobile-hero { display: block; }
  .desktop-hero { display: none; }
  .mobile-hero .hero-dots { bottom: 16px; }
  .hero-arrow { display: none; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 38px; }
  .hero-desc { font-size: 14px; }
  .hero-badge { font-size: 9px; padding: 6px 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-gold, .btn-outline { width: 100%; max-width: 280px; text-align: center; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 30px; }
  .section-desc { font-size: 14px; }
  .room-hero { grid-template-columns: 1fr; min-height: auto; }
  .room-hero-img { min-height: 260px; }
  .room-hero-info { padding: 28px 20px; }
  .room-hero-name { font-size: 30px; }
  .room-hero-subtitle { font-size: 13px; }
  .room-hero-price { font-size: 24px; }
  .room-hero-desc { font-size: 14px; }
  .room-hero-meta { gap: 20px; flex-wrap: wrap; }
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { aspect-ratio: 4/3; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card-img { aspect-ratio: 16/9; }
  .features-section { padding: 50px 20px; }
  .features-title { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .related { padding: 50px 20px; }
  .footer { padding: 40px 20px; }
  .footer-logo { font-size: 18px; letter-spacing: 6px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .rooms-filter { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 9px; }
}
