/* ═══════════════════════════════════════════════════
   Diar Jnen El Guebsi — Global Stylesheet
   Style: Dark Editorial Hotel (Emily Hotel inspired)
   ═══════════════════════════════════════════════════ */

:root {
  --dark:       #18181590;
  --bg-dark:    #181815;
  --bg-olive:   #2b3526;
  --bg-cream:   #f2ebe0;
  --bg-offwhite:#faf7f2;
  --text-light: #ede8dc;
  --text-cream: #c8bfae;
  --text-dark:  #1c1b18;
  --accent:     #c9a96e;
  --primary:    #265f82;
  --border-d:   rgba(255,255,255,0.1);
  --border-l:   rgba(0,0,0,0.1);
  --gray:       #888;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg-cream); color: var(--text-dark); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── ROOM CARD PRICE ── */
.room-card-price { margin: 6px 0 14px; font-size: 0.78rem; color: var(--text-cream); }
.room-card-price strong { font-size: 1.35rem; font-family: 'Playfair Display', serif; color: var(--accent); font-weight: 400; }
.room-card-price span { font-size: 0.72rem; opacity: 0.7; }

/* ── REVIEWS SECTION ── */
.reviews-section { background: var(--bg-offwhite); padding: 96px 0 80px; }
.reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-global { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 14px; }
.reviews-stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }
.reviews-score { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); }
.reviews-score em { font-size: 0.8rem; color: var(--gray); font-style: normal; }
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.review-card {
  background: #fff; border: 1px solid var(--border-l); border-radius: 12px;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; }
.review-text { font-size: 0.83rem; color: #444; line-height: 1.75; flex: 1; font-style: italic; }
.review-author { display: flex; flex-direction: column; gap: 2px; padding-top: 10px; border-top: 1px solid var(--border-l); }
.review-name { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.review-origin { font-size: 0.72rem; color: var(--gray); }
.reviews-cta { display: flex; justify-content: center; }
.airbnb-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF5A5F; color: #fff; text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em;
  padding: 14px 28px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.airbnb-cta-btn:hover { background: #e04e53; transform: translateY(-1px); }

/* ── LANGUAGE SWITCHER DROPDOWN ── */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
  padding: 5px 10px 5px 8px; cursor: pointer; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--text-light); transition: all 0.2s;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.lang-current:hover { border-color: var(--accent); color: var(--accent); }
.lang-chevron { width: 11px; height: 11px; transition: transform 0.2s; flex-shrink: 0; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-switcher.open .lang-current { border-color: var(--accent); color: var(--accent); }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #1e1e1b; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 6px; min-width: 80px;
  display: none; flex-direction: column; gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4); z-index: 300;
}
.lang-switcher.open .lang-dropdown { display: flex; }
.lang-opt {
  display: flex; align-items: center; gap: 8px;
  background: none; border: none; border-radius: 6px;
  padding: 7px 10px; cursor: pointer; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.06em; color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif; transition: all 0.15s; width: 100%;
}
.lang-opt:hover { background: rgba(255,255,255,0.07); color: var(--accent); }
.lang-opt.active { color: var(--accent); background: rgba(201,169,110,0.1); }
.lang-opt span:first-child { font-size: 1rem; }

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 72px; padding: 0 48px;
  background: var(--bg-offwhite);
  border-bottom: 1px solid var(--border-l);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.nav-left  { display: flex; align-items: center; gap: 36px; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.nav-link {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--text-dark); transition: color 0.2s; opacity: 0.75;
}
.nav-link:hover { color: var(--accent); opacity: 1; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.nav-logo:hover .nav-logo-img { opacity: 0.85; }
/* Lang buttons — fond clair */
.site-nav .lang-current { color: var(--text-dark); border-color: rgba(0,0,0,0.12); }
.site-nav .lang-current:hover { border-color: var(--accent); color: var(--accent); }
.site-nav .lang-dropdown { background: #fff; border-color: rgba(0,0,0,0.1); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.site-nav .lang-opt { color: rgba(0,0,0,0.55); }
.site-nav .lang-opt:hover { background: rgba(201,169,110,0.08); color: var(--accent); }
.site-nav .lang-opt.active { color: var(--accent); background: rgba(201,169,110,0.08); }
.nav-book {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: white; background: var(--bg-dark);
  padding: 9px 22px; border-radius: 1px; transition: background 0.2s;
}
.nav-book:hover { background: var(--accent); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text-dark); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 640px; position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 72px 64px 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.08) 40%, rgba(15,15,10,0.78) 100%);
}
.hero-content { position: relative; z-index: 2; color: white; max-width: 800px; }
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; display: block;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 400; line-height: 0.95; font-style: italic;
  margin-bottom: 24px; color: var(--text-light);
}
.hero-sub {
  font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.6);
  max-width: 420px; line-height: 1.75; margin-bottom: 40px; letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg-dark);
  padding: 13px 28px; font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; border-radius: 1px;
  transition: opacity 0.2s; font-weight: 500;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.35);
  padding: 13px 28px; font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; border-radius: 1px;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; border-color: white; }
.hero-scroll {
  position: absolute; right: 64px; bottom: 72px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-scroll::after { content: ''; width: 1px; height: 56px; background: rgba(255,255,255,0.25); }

/* ── STORY SECTION ── */
.story-section { background: var(--bg-offwhite); padding: 112px 64px; }
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.story-text .eyebrow {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; display: block;
}
.story-text h2 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400; font-style: italic; line-height: 1.2; margin-bottom: 24px;
  color: var(--text-dark);
}
.story-text p { font-size: 0.92rem; color: #666; line-height: 1.85; margin-bottom: 36px; }
.story-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dark); border-bottom: 1px solid var(--text-dark);
  text-decoration: none; padding-bottom: 3px; transition: gap 0.2s, color 0.2s;
}
.story-link:hover { gap: 16px; color: var(--accent); border-color: var(--accent); }
.story-photos { position: relative; height: 520px; }
.story-photo-main {
  position: absolute; right: 0; top: 0; width: 80%; height: 78%;
  object-fit: cover; border-radius: 2px;
}
.story-photo-accent {
  position: absolute; left: 0; bottom: 0; width: 52%; height: 55%;
  object-fit: cover; border-radius: 2px;
  outline: 8px solid var(--bg-offwhite);
}
.story-stats {
  display: flex; gap: 0; margin-top: 40px;
  border-top: 1px solid var(--border-l);
}
.story-stat {
  flex: 1; padding: 24px 0 0; border-right: 1px solid var(--border-l);
  padding-right: 24px; margin-right: 24px;
}
.story-stat:last-child { border-right: none; }
.story-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--accent); }
.story-stat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); margin-top: 4px; }

/* ── ROOMS / BUNGALOWS ── */
.rooms-section { background: var(--bg-dark); }
.rooms-header {
  padding: 96px 64px 56px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--border-d);
}
.rooms-header-left .eyebrow { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.rooms-header-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 400; font-style: italic; color: var(--text-light); line-height: 1.1; }
.rooms-header-right { font-size: 0.85rem; color: var(--text-cream); max-width: 360px; line-height: 1.75; text-align: right; }

.room-panel {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border-d);
  min-height: 520px;
}
.room-panel:nth-child(even) .room-img { order: 2; }
.room-panel:nth-child(even) .room-info { order: 1; }
.room-img { position: relative; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.room-panel:hover .room-img img { transform: scale(1.04); }
.room-info {
  padding: 64px; display: flex; flex-direction: column; justify-content: center;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-d);
}
.room-panel:nth-child(even) .room-info { border-left: none; border-right: 1px solid var(--border-d); }
.room-num { font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.room-name { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 400; font-style: italic; color: var(--text-light); line-height: 1.05; margin-bottom: 10px; }
.room-sub { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-cream); margin-bottom: 28px; }
.room-desc { font-size: 0.88rem; color: var(--text-cream); line-height: 1.8; margin-bottom: 32px; max-width: 380px; }
.room-feats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.room-feat { font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 6px; }
.room-feat::before { content: '—'; color: var(--accent); }
.room-cta {
  display: inline-flex; align-items: center; gap: 12px; width: fit-content;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--accent);
  padding-bottom: 4px; transition: gap 0.25s;
}
.room-cta:hover { gap: 18px; }

/* ── GALLERY ── */
.gallery-section { background: var(--bg-olive); padding: 96px 0 80px; overflow: hidden; }
.gallery-head { padding: 0 64px 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.gallery-head .eyebrow { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; display: block; }
.gallery-head h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 400; font-style: italic; color: var(--text-light); }
.gallery-nav { display: flex; gap: 10px; }
.gal-arrow {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.25);
  background: none; color: var(--text-light); cursor: pointer; border-radius: 50%;
  font-size: 1.1rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.gal-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--bg-dark); }
.gallery-track-wrap { overflow: hidden; }
.gallery-track { display: flex; gap: 14px; padding: 0 64px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.gal-item { flex-shrink: 0; overflow: hidden; border-radius: 2px; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item:nth-child(1) { width: 500px; height: 360px; }
.gal-item:nth-child(2) { width: 320px; height: 360px; }
.gal-item:nth-child(3) { width: 400px; height: 360px; }
.gal-item:nth-child(4) { width: 440px; height: 360px; }
.gal-item:nth-child(5) { width: 300px; height: 360px; }
.gal-item:nth-child(6) { width: 380px; height: 360px; }

/* ── EXPERIENCE ── */
.exp-section { display: grid; grid-template-columns: 1fr 1fr; }
.exp-img { overflow: hidden; min-height: 580px; }
.exp-img img { width: 100%; height: 100%; object-fit: cover; }
.exp-content { background: var(--bg-olive); padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; }
.exp-content .eyebrow { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }
.exp-content h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 400; font-style: italic; color: var(--text-light); line-height: 1.2; margin-bottom: 48px; }
.exp-list { display: flex; flex-direction: column; }
.exp-item { display: flex; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--border-d); }
.exp-item:first-of-type { border-top: 1px solid var(--border-d); }
.exp-n { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--accent); min-width: 28px; padding-top: 2px; font-style: italic; }
.exp-t strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--text-light); margin-bottom: 4px; letter-spacing: 0.02em; }
.exp-t span { font-size: 0.82rem; color: var(--text-cream); line-height: 1.65; }

/* ── CONTACT ── */
.contact-section { background: var(--bg-offwhite); padding: 112px 64px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 96px; align-items: start; max-width: 1200px; margin: 0 auto; }
.contact-left .eyebrow { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: block; }
.contact-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; font-style: italic; line-height: 1.15; margin-bottom: 24px; color: var(--text-dark); }
.contact-left p { font-size: 0.9rem; color: #666; line-height: 1.8; margin-bottom: 40px; max-width: 420px; }
.contact-right { padding-top: 16px; }
.ci-row { display: flex; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--border-l); align-items: flex-start; }
.ci-row:first-child { border-top: 1px solid var(--border-l); }
.ci-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.ci-val { font-size: 0.9rem; color: var(--text-dark); text-align: right; }
.ci-val a { text-decoration: none; transition: color 0.2s; }
.ci-val a:hover { color: var(--accent); }
.contact-map { margin-top: 64px; border-radius: 2px; overflow: hidden; grid-column: span 2; border: 1px solid var(--border-l); }

/* ── FOOTER ── */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.45); padding: 72px 64px 40px; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid var(--border-d); margin-bottom: 32px; }
.footer-brand img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  background: rgba(255,255,255,0.9);
  border-radius: 30px;
  padding: 4px 14px;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p { font-size: 0.8rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; }
.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; margin-left: 20px; }
.footer-bottom a:hover { color: var(--accent); }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 2px; }
.lb-close { position: absolute; top: 28px; right: 36px; color: rgba(255,255,255,0.6); font-size: 2rem; cursor: pointer; background: none; border: none; transition: color 0.2s; }
.lb-close:hover { color: white; }

/* ── BUNGALOW PAGE STYLES ── */
.page-hero { height: 70vh; min-height: 500px; position: relative; display: flex; align-items: flex-end; padding: 72px 64px 64px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%); }
.page-hero-content { position: relative; z-index: 2; color: white; }
.page-breadcrumb { font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.page-breadcrumb a { color: inherit; text-decoration: none; }
.page-breadcrumb a:hover { color: var(--accent); }
.page-breadcrumb span { margin: 0 8px; }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; font-style: italic; color: var(--text-light); line-height: 1; margin-bottom: 10px; }
.page-subtitle { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

.bung-layout { display: grid; grid-template-columns: 1fr 360px; gap: 0; max-width: 100%; }
.bung-main { padding: 80px 64px; background: var(--bg-offwhite); border-right: 1px solid var(--border-l); }
.bung-sidebar { padding: 48px 40px; background: var(--bg-dark); }

.bung-section-label { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.bung-desc-text { font-size: 0.95rem; color: #555; line-height: 1.9; margin-bottom: 48px; }
.bung-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 56px; }
.bung-photo-grid img { width: 100%; object-fit: cover; border-radius: 2px; cursor: pointer; transition: opacity 0.2s; }
.bung-photo-grid img:hover { opacity: 0.88; }
.bung-photo-grid img:first-child { grid-column: span 2; height: 380px; }
.bung-photo-grid img:not(:first-child) { height: 240px; }
.bung-photo-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 400; font-style: italic; margin-bottom: 20px; color: var(--text-dark); }

.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.amenity-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: white; border: 1px solid var(--border-l); border-radius: 2px; }
.amenity-icon { font-size: 1.1rem; }
.amenity-text { font-size: 0.82rem; color: var(--text-dark); }

/* ── AMENITIES REDESIGN ── */
.amen-highlights {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  max-width: 600px; margin: 0 auto 20px;
}
.amen-hl {
  background: var(--bg-offwhite); border: 1px solid var(--border-l); border-radius: 12px;
  padding: 20px 12px 18px; display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center; transition: box-shadow 0.2s;
}
.amen-hl:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.amen-hl-icon {
  width: 48px; height: 48px; background: #fff; border: 1px solid var(--border-l);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.amen-hl span { font-size: 0.78rem; font-weight: 500; color: var(--text-dark); line-height: 1.3; }
.amen-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.amen-cat {
  background: var(--bg-offwhite); border: 1px solid var(--border-l); border-radius: 12px;
  padding: 20px 20px 18px;
}
.amen-cat-title {
  font-family: 'Playfair Display', serif; font-size: 0.88rem; font-weight: 600; font-style: italic;
  color: var(--text-dark); margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border-l); letter-spacing: 0.01em;
}
.amen-cat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.amen-cat-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.8rem; color: #3c3c37; line-height: 1.3;
}
.amen-cat-list li svg { flex-shrink: 0; color: var(--accent); opacity: 0.85; }

/* Sidebar booking */
.booking-widget { background: var(--bg-olive); border-radius: 2px; padding: 32px 28px; margin-bottom: 24px; position: sticky; top: 88px; }
.booking-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; font-style: italic; color: var(--text-light); margin-bottom: 6px; }
.booking-avail { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-cream); margin-bottom: 24px; }
.booking-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; color: var(--accent); }
.booking-price small { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--text-cream); font-weight: 300; }
.booking-details { margin: 20px 0; }
.booking-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-d); font-size: 0.82rem; }
.booking-row:last-child { border-bottom: none; }
.booking-row .lbl { color: var(--text-cream); }
.booking-row .val { color: var(--text-light); font-weight: 400; }
.book-cta { display: block; width: 100%; background: var(--accent); color: var(--bg-dark); padding: 14px; text-align: center; border: none; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; text-decoration: none; margin-top: 20px; transition: opacity 0.2s; font-family: 'Inter', sans-serif; font-weight: 500; }
.book-cta:hover { opacity: 0.85; }
.book-cta.ghost { background: transparent; border: 1px solid var(--accent); color: var(--accent); margin-top: 10px; }

.other-rooms { margin-top: 24px; }
.other-rooms h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.other-room-link { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border-d); text-decoration: none; color: var(--text-light); transition: color 0.2s; }
.other-room-link:last-child { border-bottom: none; }
.other-room-link:hover { color: var(--accent); }
.other-room-link.active { color: var(--accent); }
.other-room-link img { width: 48px; height: 48px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.other-room-link .orname { font-size: 0.88rem; font-style: italic; font-family: 'Playfair Display', serif; }
.other-room-link small { font-size: 0.68rem; color: rgba(255,255,255,0.35); display: block; }

/* ── RESERVATION PAGE ── */
.res-hero { background: var(--bg-dark); padding: 110px 64px 80px; border-bottom: 1px solid var(--border-d); }
.res-hero .eyebrow { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; display: block; }
.res-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 400; font-style: italic; color: var(--text-light); margin-bottom: 12px; }
.res-hero p { font-size: 0.88rem; color: var(--text-cream); font-weight: 300; }

.res-layout { display: grid; grid-template-columns: 1fr 340px; gap: 0; max-width: 100%; }
.res-main { padding: 64px; background: var(--bg-offwhite); border-right: 1px solid var(--border-l); }
.res-aside { padding: 48px 36px; background: var(--bg-dark); }

.res-section-title { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.res-form-card { background: white; border: 1px solid var(--border-l); border-radius: 2px; padding: 36px; margin-bottom: 28px; }
.res-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; font-style: italic; color: var(--text-dark); margin-bottom: 6px; }
.res-form-card > p { font-size: 0.82rem; color: var(--gray); margin-bottom: 28px; }

/* Bungalow selector */
.bung-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.bung-opt { border: 1px solid var(--border-l); border-radius: 2px; padding: 14px; cursor: pointer; transition: all 0.2s; text-align: center; position: relative; background: var(--bg-offwhite); }
.bung-opt input { position: absolute; opacity: 0; }
.bung-opt:hover { border-color: var(--accent); }
.bung-opt.checked { border-color: var(--accent); background: white; }
.bung-opt img { width: 100%; height: 64px; object-fit: cover; border-radius: 1px; margin-bottom: 8px; }
.bung-opt .bc-name { font-size: 0.8rem; font-style: italic; font-family: 'Playfair Display', serif; color: var(--text-dark); }
.bung-opt .bc-tag { font-size: 0.67rem; color: var(--gray); margin-top: 2px; }
.bung-opt .bc-check { display: none; position: absolute; top: 8px; right: 8px; background: var(--accent); color: var(--bg-dark); border-radius: 50%; width: 18px; height: 18px; font-size: 0.62rem; align-items: center; justify-content: center; font-weight: 700; }
.bung-opt.checked .bc-check { display: flex; }

/* Calendar */
.calendars-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.cal { border: 1px solid var(--border-l); border-radius: 2px; overflow: hidden; }
.cal-hdr { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: white; border-bottom: 1px solid var(--border-l); }
.cal-hdr h3 { font-size: 0.82rem; font-weight: 500; color: var(--text-dark); }
.cal-nav-btn { background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--accent); padding: 2px 6px; }
.cal-body { padding: 10px; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; margin-bottom: 4px; }
.cal-dow span { font-size: 0.63rem; font-weight: 600; color: var(--gray); padding: 3px 0; }
.cal-days-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-d { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.78rem; border-radius: 2px; cursor: pointer; border: none; background: none; color: var(--text-dark); transition: all 0.15s; }
.cal-d:hover:not(.disabled):not(.empty) { background: var(--bg-offwhite); }
.cal-d.empty { cursor: default; }
.cal-d.disabled { color: #ccc; cursor: not-allowed; }
.cal-d.sel-start { background: var(--accent); color: var(--bg-dark); border-radius: 2px 0 0 2px; font-weight: 600; }
.cal-d.sel-end { background: var(--accent); color: var(--bg-dark); border-radius: 0 2px 2px 0; font-weight: 600; }
.cal-d.in-range { background: rgba(201,169,110,0.15); border-radius: 0; }
.cal-d.sel-start.sel-end { border-radius: 2px; }
.cal-d.today { font-weight: 700; }

.date-summary { background: var(--bg-dark); border-radius: 2px; padding: 14px 18px; display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.ds-item { display: flex; flex-direction: column; gap: 2px; }
.ds-item span { font-size: 0.63rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.ds-item strong { color: var(--text-light); font-size: 0.85rem; font-weight: 400; }
.ds-sep { color: var(--accent); font-size: 1.1rem; }
.nights-pill { background: var(--accent); color: var(--bg-dark); border-radius: 20px; padding: 3px 12px; font-size: 0.72rem; font-weight: 600; margin-left: auto; }

/* Form fields */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grid.trio { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.full { grid-template-columns: 1fr; }
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-group label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.f-group input, .f-group select, .f-group textarea {
  border: 1px solid var(--border-l); border-radius: 2px; padding: 11px 14px;
  font-size: 0.88rem; color: var(--text-dark); font-family: 'Inter', sans-serif;
  background: var(--bg-offwhite); transition: border-color 0.2s; outline: none; width: 100%;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--accent); background: white; }
.f-group textarea { resize: vertical; min-height: 90px; }
.date-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.submit-btn { width: 100%; background: var(--accent); color: var(--bg-dark); border: none; padding: 16px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 600; border-radius: 2px; transition: opacity 0.2s; margin-top: 10px; }
.submit-btn:hover { opacity: 0.85; }
.submit-btn:disabled { background: #ccc; cursor: not-allowed; }
.success-box { display: none; background: #f0faf0; border: 1px solid #a5d6a7; border-radius: 2px; padding: 20px 24px; text-align: center; margin-top: 16px; }
.success-box.show { display: block; }
.success-box h3 { color: #2e7d32; font-size: 1rem; margin-bottom: 6px; }
.success-box p { color: #555; font-size: 0.85rem; }

/* Aside info */
.aside-info-card { margin-bottom: 24px; }
.aside-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 400; font-style: italic; color: var(--text-light); margin-bottom: 16px; }
.aside-row { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-d); }
.aside-row:last-child { border-bottom: none; }
.aside-icon { font-size: 1rem; margin-top: 1px; }
.aside-text { font-size: 0.8rem; line-height: 1.5; }
.aside-text strong { display: block; color: var(--text-light); font-weight: 400; font-size: 0.82rem; }
.aside-text span { color: var(--text-cream); }
.wa-cta { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: white; padding: 13px; text-align: center; text-decoration: none; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px; margin-top: 20px; transition: opacity 0.2s; }
.wa-cta:hover { opacity: 0.88; }
.aside-divider { height: 1px; background: var(--border-d); margin: 24px 0; }
.aside-bung-item { display: flex; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-d); }
.aside-bung-item:last-child { border-bottom: none; }
.aside-bung-label { font-size: 0.8rem; color: var(--text-light); }
.aside-bung-label small { display: block; font-size: 0.68rem; color: var(--text-cream); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-photos { height: 320px; margin-top: 40px; }
  .room-panel { grid-template-columns: 1fr; min-height: auto; }
  .room-panel:nth-child(even) .room-img, .room-panel:nth-child(even) .room-info { order: unset; }
  .room-img { height: 320px; }
  .room-info { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border-d); padding: 44px 40px; }
  .exp-section { grid-template-columns: 1fr; }
  .exp-img { min-height: 280px; }
  .exp-content { padding: 64px 40px; }
  .bung-layout { grid-template-columns: 1fr; }
  .bung-main { border-right: none; }
  .bung-sidebar { background: var(--bg-dark); }
  .booking-widget { position: static; }
  .res-layout { grid-template-columns: 1fr; }
  .res-main { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-map { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-left { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 0 24px 56px; }
  .hero-scroll { display: none; }
  .story-section, .contact-section { padding: 72px 24px; }
  .rooms-header, .gallery-head { padding: 56px 24px 36px; }
  .rooms-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rooms-header-right { text-align: left; }
  .gallery-track { padding: 0 24px; }
  .gal-item { width: 280px !important; height: 240px !important; }
  .exp-content { padding: 48px 24px; }
  .bung-main { padding: 48px 24px; }
  .bung-sidebar { padding: 36px 24px; }
  .page-hero { padding: 0 24px 48px; }
  .bung-photo-grid img:first-child { height: 240px; }
  .bung-photo-grid img:not(:first-child) { height: 160px; }
  .amenities-grid { grid-template-columns: 1fr; }
  .amen-highlights { grid-template-columns: repeat(3,1fr); max-width: 100%; }
  .amen-categories { grid-template-columns: 1fr; }
  .reviews-inner { padding: 0 24px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
  .res-hero { padding: 120px 24px 56px; }
  .res-main { padding: 36px 24px; }
  .res-aside { padding: 36px 24px; }
  .bung-selector, .calendars-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid.trio { grid-template-columns: 1fr; }
  .date-inputs { grid-template-columns: 1fr; }
  .site-footer { padding: 56px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .amen-highlights { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .amen-hl { padding: 14px 8px 12px; }
  .amen-hl-icon { width: 40px; height: 40px; }
  .amen-hl span { font-size: 0.72rem; }
}
