/* ============================================================
   RUMHUYS — Main Stylesheet
   ============================================================ */

:root {
  --rh-dark:      #0d0805;
  --rh-espresso:  #1a0f07;
  --rh-mahogany:  #3a1a0a;
  --rh-amber:     #b8621a;
  --rh-gold:      #c9922a;
  --rh-pale-gold: #ddb84a;
  --rh-cream:     #f2e2c0;
  --rh-parchment: #f8f0dc;
  --rh-muted:     #a08050;
  --rh-teal:      #2a6b6b;
  --rh-border:    rgba(200,146,42,.18);
  --rh-display:   'Playfair Display', Georgia, serif;
  --rh-body:      'EB Garamond', Georgia, serif;
  --rh-sans:      'Josefin Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.rumhuys-site {
  background: var(--rh-dark);
  color: var(--rh-cream);
  font-family: var(--rh-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

body.rumhuys-site a { color: var(--rh-pale-gold); }
body.rumhuys-site p { margin-bottom: 1em; }
body.rumhuys-site p:last-child { margin-bottom: 0; }

/* ── TYPOGRAPHY ─────────────────────────────────── */
.rh-label {
  font-family: var(--rh-sans);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rh-amber);
  margin-bottom: 12px;
  display: block;
}
.rh-section-title {
  font-family: var(--rh-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--rh-cream);
  margin-bottom: 20px;
}
.rh-section-title em { color: var(--rh-pale-gold); font-style: italic; font-weight: 400; }
.rh-divider {
  width: 56px; height: 2px;
  background: linear-gradient(to right, var(--rh-amber), var(--rh-pale-gold));
  margin-bottom: 28px;
}
.rh-section-sub { color: var(--rh-muted); max-width: 640px; font-size: 1.05rem; }
.rh-eyebrow {
  font-family: var(--rh-sans);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rh-pale-gold);
  margin-bottom: 16px;
  display: block;
}
.rh-eyebrow a { color: var(--rh-muted); text-decoration: none; }
.rh-eyebrow a:hover { color: var(--rh-pale-gold); }

/* ── LAYOUT ─────────────────────────────────────── */
.rh-container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.rh-section   { padding: 100px 0; }
.rh-bg-dark      { background: var(--rh-dark); }
.rh-bg-espresso  { background: var(--rh-espresso); }
.rh-bg-mahogany  { background: var(--rh-mahogany); }
.rh-center { text-align: center; }
.rh-section-header { margin-bottom: 64px; }

/* ── BUTTONS ─────────────────────────────────────── */
.rh-btn-primary {
  display: inline-block;
  background: var(--rh-amber);
  color: var(--rh-dark) !important;
  font-family: var(--rh-sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 36px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.rh-btn-primary:hover { background: var(--rh-pale-gold); transform: translateY(-2px); }
.rh-btn-ghost {
  display: inline-block;
  border: 1px solid rgba(242,226,192,.3);
  color: var(--rh-cream) !important;
  font-family: var(--rh-sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 15px 36px;
  text-decoration: none !important;
  transition: border-color .2s, color .2s;
}
.rh-btn-ghost:hover { border-color: var(--rh-pale-gold); color: var(--rh-pale-gold) !important; }
.rh-btn-submit {
  width: 100%;
  background: var(--rh-amber);
  color: var(--rh-dark);
  font-family: var(--rh-sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none; padding: 15px;
  cursor: pointer;
  transition: background .2s;
}
.rh-btn-submit:hover { background: var(--rh-pale-gold); }
.rh-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff !important;
  font-family: var(--rh-sans); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 13px 22px; text-decoration: none !important;
  transition: background .2s;
}
.rh-btn-whatsapp:hover { background: #1ebe5d; }

/* ── NAV ─────────────────────────────────────────── */
.rh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(13,8,5,.97) 60%, transparent);
  transition: padding .3s, background .3s;
}
.rh-nav.scrolled { padding: 13px 48px; background: rgba(13,8,5,.98); }
.rh-nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.rh-nav-logo-img { display: flex; align-items: center; }
.rh-logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* Logo has black bg — use mix-blend-mode so it sits cleanly on dark nav */
  mix-blend-mode: lighten;
  transition: opacity .2s;
}
.rh-nav-logo:hover .rh-logo-img { opacity: .85; }
.rh-nav-links { display: flex; gap: 32px; list-style: none; }
.rh-nav-links a {
  font-family: var(--rh-sans); font-size: .67rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rh-muted); text-decoration: none;
  transition: color .2s;
}
.rh-nav-links a:hover, .rh-nav-links li.active a { color: var(--rh-pale-gold); }
.rh-nav-cta {
  background: transparent; border: 1px solid var(--rh-gold);
  color: var(--rh-pale-gold) !important; font-family: var(--rh-sans);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 10px 22px; text-decoration: none !important;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.rh-nav-cta:hover { background: var(--rh-gold); color: var(--rh-dark) !important; }
/* Mobile menu Book Now button */
.rh-mobile-menu-book {
  background: var(--rh-amber);
  border: none;
  color: var(--rh-dark) !important;
  font-family: var(--rh-display);
  font-size: 2rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.rh-mobile-menu-book:hover { color: var(--rh-espresso) !important; }
.rh-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.rh-hamburger span { display: block; width: 22px; height: 2px; background: var(--rh-cream); transition: .3s; }
.rh-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rh-hamburger.open span:nth-child(2) { opacity: 0; }
.rh-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.rh-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,8,5,.97); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.rh-mobile-menu.open { display: flex; }
.rh-mobile-menu a {
  font-family: var(--rh-display); font-size: 2rem; font-weight: 700;
  color: var(--rh-cream); text-decoration: none;
}
.rh-mobile-menu a:hover { color: var(--rh-pale-gold); }
.rh-mobile-menu .rh-wa-link { font-size: 1rem; color: var(--rh-muted); font-family: var(--rh-sans); letter-spacing: .2em; }

/* ── HERO ─────────────────────────────────────────── */
.rh-hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center 30%;
}
.rh-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,8,5,.52);
}
.rh-hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(180,100,20,.15) 0%, transparent 65%),
              linear-gradient(to top, rgba(13,8,5,1) 0%, transparent 55%);
  z-index: 1;
}
.rh-hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px; animation: rhFadeUp .9s ease both;
}
.rh-hero-title {
  font-family: var(--rh-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900; line-height: .9;
  color: var(--rh-cream); margin-bottom: 8px;
}
.rh-hero-title em {
  display: block; font-style: italic; font-weight: 400;
  color: var(--rh-pale-gold); font-size: .52em;
}
.rh-hero-sub {
  font-style: italic; font-size: 1.15rem;
  color: var(--rh-muted); max-width: 520px;
  margin: 0 auto 40px;
}
.rh-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.rh-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-family: var(--rh-sans); font-size: .66rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--rh-muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: rhPulse 2.2s infinite;
}
.rh-scroll-hint::after {
  content: ''; display: block; width: 1px; height: 34px;
  background: linear-gradient(to bottom, var(--rh-muted), transparent);
}

/* ── PAGE HERO (inner pages) ─────────────────────── */
.rh-page-hero {
  position: relative; height: 55vh; min-height: 420px;
  display: flex; align-items: flex-end; padding-bottom: 64px;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center;
  margin-top: 0; padding-top: 80px;
}
.rh-page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(13,8,5,.6); }
.rh-page-hero-short { height: 42vh; min-height: 320px; }
.rh-page-hero .rh-hero-overlay { z-index: 1; }
.rh-page-hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 0 40px; width: 100%;
}
.rh-page-hero-content h1 {
  font-family: var(--rh-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900; line-height: 1;
  color: var(--rh-cream); margin-bottom: 12px;
}
.rh-page-hero-content .rh-hero-sub { text-align: left; margin: 0; }

/* ── TRUST BAR ───────────────────────────────────── */
.rh-trust-bar {
  background: var(--rh-espresso);
  border-bottom: 1px solid var(--rh-border);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0; padding: 14px 24px;
}
.rh-trust-bar span {
  font-family: var(--rh-sans); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--rh-muted); padding: 4px 18px;
  border-right: 1px solid var(--rh-border);
}
.rh-trust-bar span:last-child { border-right: none; }

/* ── EXPERIENCE CARDS (home/overview) ────────────── */
.rh-exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.rh-exp-card { position: relative; overflow: hidden; background: var(--rh-espresso); }
.rh-exp-img {
  width: 100%; height: 380px; object-fit: cover;
  display: block; transition: transform .5s ease, filter .4s;
  filter: brightness(.55) saturate(.85);
}
.rh-exp-card:hover .rh-exp-img { transform: scale(1.05); filter: brightness(.7) saturate(1); }
.rh-exp-card-body { padding: 28px 24px 32px; }
.rh-exp-tag {
  font-family: var(--rh-sans); font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rh-amber); display: block; margin-bottom: 8px;
}
.rh-exp-card-body h3 {
  font-family: var(--rh-display); font-size: 1.5rem;
  font-weight: 700; color: var(--rh-cream); margin-bottom: 10px;
}
.rh-exp-card-body h3 a { color: inherit; text-decoration: none; }
.rh-exp-card-body h3 a:hover { color: var(--rh-pale-gold); }
.rh-exp-card-body p { font-size: 1rem; color: var(--rh-muted); margin-bottom: 18px; }
.rh-exp-footer { display: flex; justify-content: space-between; align-items: center; }
.rh-exp-price { font-family: var(--rh-display); font-size: 1.1rem; color: var(--rh-pale-gold); }
.rh-exp-cta {
  font-family: var(--rh-sans); font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--rh-pale-gold);
  text-decoration: none; border-bottom: 1px solid var(--rh-amber); padding-bottom: 2px;
}

/* ── EXP FULL PAGE GRID (experiences.php) ────────── */
.rh-exp-full-grid { display: flex; flex-direction: column; gap: 2px; }
.rh-exp-full-card {
  display: grid; grid-template-columns: 420px 1fr;
  background: var(--rh-espresso); overflow: hidden;
}
.rh-exp-full-card:nth-child(even) { direction: rtl; }
.rh-exp-full-card:nth-child(even) > * { direction: ltr; }
.rh-exp-full-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }
.rh-exp-full-body { padding: 48px 44px; }
.rh-exp-full-body h2 {
  font-family: var(--rh-display); font-size: 2rem; font-weight: 700;
  color: var(--rh-cream); margin: 12px 0 16px;
}
.rh-exp-full-body h2 a { color: inherit; text-decoration: none; }
.rh-exp-full-body h2 a:hover { color: var(--rh-pale-gold); }
.rh-exp-full-body p { color: var(--rh-muted); margin-bottom: 20px; }
.rh-exp-cta-row { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.rh-exp-price-lg { font-family: var(--rh-display); font-size: 1.4rem; color: var(--rh-pale-gold); }

/* ── EXPERIENCE DETAIL LAYOUT ─────────────────────── */
.rh-exp-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start;
}
.rh-exp-main-img { width: 100%; max-height: 500px; object-fit: cover; margin-bottom: 48px; display: block; }
.rh-exp-body h2 {
  font-family: var(--rh-display); font-size: 1.9rem; font-weight: 700;
  color: var(--rh-cream); margin: 40px 0 16px;
}
.rh-exp-body h2:first-child { margin-top: 0; }
.rh-exp-body h3 {
  font-family: var(--rh-display); font-size: 1.35rem; font-weight: 700;
  color: var(--rh-pale-gold); margin: 28px 0 12px;
}
.rh-exp-body p { color: var(--rh-muted); }

/* Quick facts bar */
.rh-quick-facts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--rh-border);
  margin-bottom: 40px;
}
.rh-fact {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-right: 1px solid var(--rh-border);
  border-bottom: 1px solid var(--rh-border);
}
.rh-fact:nth-child(3n) { border-right: none; }
.rh-fact:nth-child(n+4) { border-bottom: none; }
.rh-fact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.rh-fact div { display: flex; flex-direction: column; }
.rh-fact strong { font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rh-amber); margin-bottom: 3px; }
.rh-fact span { font-size: 1rem; color: var(--rh-muted); }

/* Checklist */
.rh-checklist { list-style: none; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.rh-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--rh-muted); font-size: 1.05rem;
}
.rh-checklist li::before {
  content: '✓'; color: var(--rh-amber); flex-shrink: 0;
  font-family: var(--rh-sans); font-weight: 600; margin-top: 2px;
}

/* Info box */
.rh-info-box {
  background: rgba(200,146,42,.07);
  border-left: 3px solid var(--rh-amber);
  padding: 20px 24px; margin: 32px 0;
}
.rh-info-box strong { display: block; color: var(--rh-cream); font-family: var(--rh-sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px; }
.rh-info-box p { color: var(--rh-muted); font-size: .95rem; margin: 0; }

/* ── BOOKING SIDEBAR ─────────────────────────────── */
.rh-exp-sidebar { position: sticky; top: 100px; }
.rh-booking-sidebar {
  background: var(--rh-espresso); border: 1px solid var(--rh-border); padding: 32px 28px;
}
.rh-sidebar-price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px;
  padding-bottom: 20px; border-bottom: 1px solid var(--rh-border);
}
.rh-price-from { font-family: var(--rh-sans); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rh-muted); }
.rh-price-amount { font-family: var(--rh-display); font-size: 2.6rem; font-weight: 700; color: var(--rh-pale-gold); line-height: 1; }
.rh-price-per { font-size: .85rem; color: var(--rh-muted); }
.rh-sidebar-badges { display: flex; flex-direction: column; gap: 7px; margin-bottom: 24px; }
.rh-sidebar-badges span { font-family: var(--rh-sans); font-size: .68rem; letter-spacing: .1em; color: var(--rh-muted); }
.rh-sidebar-whatsapp { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--rh-border); text-align: center; }
.rh-sidebar-whatsapp p { font-size: .85rem; color: var(--rh-muted); margin-bottom: 12px; }
.rh-sidebar-whatsapp .rh-btn-whatsapp { width: 100%; justify-content: center; }
.rh-sidebar-others { margin-top: 20px; }
.rh-sidebar-others h4 { font-family: var(--rh-sans); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rh-amber); margin-bottom: 12px; }
.rh-sidebar-exp-link {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 0; border-bottom: 1px solid var(--rh-border);
  text-decoration: none;
}
.rh-sidebar-exp-link:last-child { border-bottom: none; }
.rh-sidebar-exp-link strong { color: var(--rh-cream); font-size: .95rem; transition: color .2s; }
.rh-sidebar-exp-link:hover strong { color: var(--rh-pale-gold); }
.rh-sidebar-exp-link span { font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .1em; color: var(--rh-muted); }

/* ── BOOKING FORM ────────────────────────────────── */
.rh-booking-wrap { }
.rh-form-title { font-family: var(--rh-display); font-size: 1.4rem; font-weight: 700; color: var(--rh-cream); margin-bottom: 24px; }
.rh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rh-form-group { margin-bottom: 14px; }
.rh-form label {
  display: block; font-family: var(--rh-sans); font-size: .65rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--rh-muted); margin-bottom: 6px;
}
.rh-form input, .rh-form select, .rh-form textarea {
  width: 100%; background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,146,42,.22);
  color: var(--rh-cream); font-family: var(--rh-body); font-size: 1.05rem;
  padding: 11px 13px; outline: none; transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.rh-form input:focus, .rh-form select:focus, .rh-form textarea:focus { border-color: var(--rh-amber); }
.rh-form input::placeholder, .rh-form textarea::placeholder { color: rgba(160,128,80,.45); }
.rh-form select option { background: var(--rh-espresso); color: var(--rh-cream); }
.rh-form textarea { resize: vertical; min-height: 80px; }
.rh-form-note { font-size: .9rem; color: var(--rh-muted); font-style: italic; margin-bottom: 18px; }
#rh-form-success { text-align: center; padding: 32px 20px; }
#rh-form-success .rh-success-icon { font-size: 2.8rem; margin-bottom: 14px; }
#rh-form-success h3 { font-family: var(--rh-display); font-size: 1.6rem; color: var(--rh-pale-gold); margin-bottom: 10px; }
#rh-form-success p { color: var(--rh-muted); }

/* ── RUM GRID ────────────────────────────────────── */
.rh-rum-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.rh-rum-card {
  background: var(--rh-espresso); border: 1px solid var(--rh-border);
  overflow: hidden; transition: transform .3s, border-color .3s;
}
.rh-rum-card:hover { transform: translateY(-5px); border-color: var(--rh-gold); }
.rh-rum-card img { width: 100%; height: 190px; object-fit: cover; object-position: top; display: block; transition: transform .4s; }
.rh-rum-card:hover img { transform: scale(1.04); }
.rh-rum-body { padding: 16px 14px 20px; }
.rh-rum-type { font-family: var(--rh-sans); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rh-amber); margin-bottom: 6px; }
.rh-rum-name { font-family: var(--rh-display); font-size: 1.05rem; font-weight: 700; color: var(--rh-cream); margin-bottom: 8px; }
.rh-rum-notes { font-size: .95rem; color: var(--rh-muted); line-height: 1.55; }
.rh-rum-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--rh-border); }
.rh-rum-abv { font-family: var(--rh-sans); font-size: .64rem; letter-spacing: .1em; color: var(--rh-muted); }
.rh-rum-price { font-family: var(--rh-display); font-size: 1rem; color: var(--rh-pale-gold); }

/* ── RUM TASTING LIST (tasting page) ─────────────── */
.rh-rum-tasting-list { display: flex; flex-direction: column; gap: 0; margin: 28px 0; }
.rh-rum-tasting-item {
  display: grid; grid-template-columns: 140px 1fr; gap: 28px;
  padding: 24px 0; border-bottom: 1px solid var(--rh-border);
  align-items: start;
}
.rh-rum-tasting-item:last-child { border-bottom: none; }
.rh-rum-tasting-img { width: 140px; height: 100px; object-fit: cover; object-position: top; display: block; }
.rh-rum-tasting-info h4 { font-family: var(--rh-display); font-size: 1.2rem; font-weight: 700; color: var(--rh-cream); margin-bottom: 4px; }
.rh-rum-tasting-info p { font-size: 1rem; color: var(--rh-muted); margin: 8px 0 0; }
.rh-rum-type { font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rh-amber); }

/* ── PROCESS STEPS ───────────────────────────────── */
.rh-process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.rh-process-step { }
.rh-step-num { font-family: var(--rh-display); font-size: 3rem; font-weight: 900; color: rgba(200,146,42,.2); line-height: 1; margin-bottom: 12px; }
.rh-process-step h3 { font-family: var(--rh-display); font-size: 1.2rem; font-weight: 700; color: var(--rh-cream); margin-bottom: 10px; }
.rh-process-step p { font-size: 1rem; color: var(--rh-muted); }

/* ── ABOUT GRID ──────────────────────────────────── */
.rh-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.rh-about-images { position: relative; height: 540px; }
.rh-about-img-main { position: absolute; right: 0; top: 0; width: 80%; height: 76%; object-fit: cover; }
.rh-about-img-secondary { position: absolute; left: 0; bottom: 0; width: 58%; height: 50%; object-fit: cover; border: 4px solid var(--rh-espresso); }
.rh-about-text p { color: var(--rh-muted); }
.rh-about-text strong { color: var(--rh-cream); font-style: italic; }
.rh-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.rh-value h3 { font-family: var(--rh-display); font-size: 1.2rem; font-weight: 700; color: var(--rh-pale-gold); margin-bottom: 10px; }
.rh-value p { font-size: .95rem; color: var(--rh-muted); }

/* ── FAQ ACCORDION ───────────────────────────────── */
.rh-faq { margin-top: 56px; }
.rh-faq h2 { font-family: var(--rh-display); font-size: 1.8rem; font-weight: 700; color: var(--rh-cream); margin-bottom: 28px; }
.rh-faq-item { border-bottom: 1px solid var(--rh-border); }
.rh-faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--rh-cream); font-family: var(--rh-display); font-size: 1.05rem;
  font-weight: 600; padding: 20px 36px 20px 0; cursor: pointer;
  position: relative; transition: color .2s;
}
.rh-faq-q:hover { color: var(--rh-pale-gold); }
.rh-faq-q::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--rh-amber); font-weight: 300; transition: transform .3s;
}
.rh-faq-item.open .rh-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.rh-faq-a { display: none; padding: 0 0 20px; }
.rh-faq-item.open .rh-faq-a { display: block; }
.rh-faq-a p { color: var(--rh-muted); font-size: 1.05rem; margin: 0; }

/* ── BOOKING PAGE ────────────────────────────────── */
.rh-booking-page-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; }
.rh-booking-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.rh-booking-feature { display: flex; gap: 16px; align-items: flex-start; }
.rh-booking-feature > span { color: var(--rh-amber); flex-shrink: 0; margin-top: 3px; }
.rh-booking-feature strong { color: var(--rh-cream); display: block; margin-bottom: 3px; }
.rh-booking-feature p { font-size: .9rem; color: var(--rh-muted); margin: 0; }
.rh-wa-block { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rh-border); }
.rh-booking-page-form {
  background: rgba(255,255,255,.03); border: 1px solid var(--rh-border); padding: 40px 36px;
}

/* ── CONTACT PAGE ────────────────────────────────── */
.rh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.rh-info-blocks { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.rh-info-block { display: flex; gap: 16px; align-items: flex-start; }
.rh-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.rh-info-label { font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rh-amber); margin-bottom: 3px; display: block; }
.rh-info-val { color: var(--rh-cream); font-size: 1rem; text-decoration: none; display: block; }
a.rh-info-val:hover { color: var(--rh-pale-gold); }

/* ── CTA BANNER ──────────────────────────────────── */
.rh-cta-banner {
  background: linear-gradient(135deg, var(--rh-mahogany) 0%, var(--rh-espresso) 100%);
  padding: 88px 40px; text-align: center;
  border-top: 1px solid var(--rh-border);
  border-bottom: 1px solid var(--rh-border);
}

/* ── FOOTER ──────────────────────────────────────── */
.rh-footer { background: var(--rh-espresso); border-top: 1px solid var(--rh-border); padding: 64px 0 32px; }
.rh-footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  margin-bottom: 48px;
}
.rh-footer-logo { margin-bottom: 10px; }
.rh-footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: lighten;
}
.rh-footer-tagline { font-style: italic; color: var(--rh-muted); font-size: .95rem; margin-bottom: 10px; }
.rh-footer-address { font-size: .88rem; color: var(--rh-muted); }
.rh-footer-links h4 { font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rh-amber); margin-bottom: 16px; }
.rh-footer-links a { display: block; font-size: .95rem; color: var(--rh-muted); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.rh-footer-links a:hover { color: var(--rh-pale-gold); }
.rh-footer-contact h4 { font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rh-amber); margin-bottom: 16px; }
.rh-footer-contact a { display: block; font-size: .95rem; color: var(--rh-muted); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
.rh-footer-contact a:hover { color: var(--rh-pale-gold); }
.rh-footer-contact p { font-size: .85rem; color: var(--rh-muted); margin-top: 10px; }
.rh-footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.rh-footer-social a { font-family: var(--rh-sans); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rh-muted); text-decoration: none; border: 1px solid var(--rh-border); padding: 7px 12px; transition: color .2s, border-color .2s; }
.rh-footer-social a:hover { color: var(--rh-pale-gold); border-color: var(--rh-gold); }
.rh-footer-bottom { max-width: 1180px; margin: 0 auto; padding: 24px 40px 0; border-top: 1px solid var(--rh-border); text-align: center; }
.rh-footer-bottom p { font-size: .9rem; color: rgba(160,128,80,.5); }
.rh-legal { margin-top: 6px; font-size: .76rem !important; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes rhFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rhPulse {
  0%, 100% { opacity: .4; } 50% { opacity: 1; }
}
/* rh-reveal: content visible by default.
   JS adds .rh-animate to body when ready, enabling scroll animations. */
.rh-reveal { opacity: 1; transform: none; }
body.rh-js-ready .rh-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
body.rh-js-ready .rh-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .rh-rum-grid { grid-template-columns: repeat(3, 1fr); }
  .rh-exp-full-card { grid-template-columns: 1fr; }
  .rh-exp-full-card:nth-child(even) { direction: ltr; }
  .rh-exp-full-card img { height: 280px; }
  .rh-process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .rh-nav { padding: 16px 24px; }
  .rh-nav-links, .rh-nav-cta { display: none; }
  .rh-hamburger { display: flex; }
  .rh-container { padding: 0 24px; }
  .rh-section { padding: 72px 0; }
  .rh-exp-grid { grid-template-columns: 1fr; }
  .rh-exp-layout { grid-template-columns: 1fr; }
  .rh-exp-sidebar { position: static; }
  .rh-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .rh-about-images { height: 320px; }
  .rh-quick-facts { grid-template-columns: repeat(2, 1fr); }
  .rh-fact:nth-child(2n) { border-right: none; }
  .rh-fact:nth-child(n+5) { border-bottom: none; }
  .rh-booking-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .rh-contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .rh-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .rh-values-grid { grid-template-columns: 1fr; }
  .rh-process-steps { grid-template-columns: 1fr; }
  .rh-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .rh-rum-grid { grid-template-columns: repeat(2, 1fr); }
  .rh-hero-title { font-size: 3.5rem; }
  .rh-page-hero-content h1 { font-size: 2.2rem; }
  .rh-footer-inner { grid-template-columns: 1fr; }
  .rh-trust-bar span { border-right: none; border-bottom: 1px solid var(--rh-border); width: 100%; text-align: center; }
  .rh-quick-facts { grid-template-columns: 1fr; }
  .rh-fact { border-right: none; }
  .rh-booking-page-form { padding: 24px 18px; }
  .rh-rum-tasting-item { grid-template-columns: 1fr; }
}

/* ── Logo responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .rh-logo-img { height: 40px; }
}
@media (max-width: 600px) {
  .rh-logo-img { height: 36px; }
  .rh-footer-logo-img { height: 52px; }
}

/* ============================================================
   BOOKING PAGE — Tabs + Panel layout
   ============================================================ */
.rh-book-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 2px;
}
.rh-book-tab {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 4px; padding: 20px 22px;
    background: var(--rh-espresso);
    border: 1px solid var(--rh-border);
    border-bottom: 3px solid transparent;
    cursor: pointer; text-align: left;
    transition: background .2s, border-color .2s;
    color: var(--rh-muted);
}
.rh-book-tab:hover { background: rgba(184,98,26,.08); border-bottom-color: rgba(184,98,26,.4); }
.rh-book-tab.active {
    background: rgba(184,98,26,.12);
    border-color: var(--rh-border);
    border-bottom-color: var(--rh-amber);
    color: var(--rh-cream);
}
.rh-book-tab-icon { font-size: 1.5rem; margin-bottom: 2px; }
.rh-book-tab strong {
    font-family: var(--rh-display);
    font-size: 1rem; font-weight: 700;
    color: inherit; line-height: 1.2;
}
.rh-book-tab-price {
    font-family: var(--rh-sans);
    font-size: .66rem; letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rh-amber);
}
.rh-book-tab.active .rh-book-tab-price { color: var(--rh-pale-gold); }

.rh-book-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.rh-book-panels { min-width: 0; }
.rh-book-panel { display: none; }
.rh-book-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.rh-book-panel-summary { }
.rh-book-panel-title {
    font-family: var(--rh-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--rh-cream);
    margin: 10px 0 16px; line-height: 1.1;
}
.rh-book-panel-summary p { color: var(--rh-muted); margin-bottom: 20px; }
.rh-book-price-block {
    display: flex; align-items: baseline; gap: 8px;
    margin: 24px 0 12px;
    padding: 16px 20px;
    background: rgba(184,98,26,.1);
    border-left: 3px solid var(--rh-amber);
}
.rh-book-big-price {
    font-family: var(--rh-display);
    font-size: 2.2rem; font-weight: 700;
    color: var(--rh-pale-gold); line-height: 1;
}
.rh-book-detail-link {
    font-family: var(--rh-sans);
    font-size: .6rem; letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rh-amber); text-decoration: none;
    border-bottom: 1px solid rgba(184,98,26,.4);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}
.rh-book-detail-link:hover { color: var(--rh-pale-gold); border-color: var(--rh-pale-gold); }

.rh-book-form-wrap {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--rh-border);
    padding: 28px 24px;
}

/* Aside */
.rh-book-aside { position: sticky; top: 100px; }
.rh-book-aside-block {
    background: var(--rh-espresso);
    border: 1px solid var(--rh-border);
    padding: 24px 22px;
    margin-bottom: 16px;
}
.rh-book-aside-block h4 {
    font-family: var(--rh-sans);
    font-size: .6rem; letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rh-amber);
    margin-bottom: 16px;
}
.rh-policy-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
}
.rh-policy-list li {
    font-size: .9rem; color: var(--rh-muted);
    padding-left: 14px; position: relative;
    line-height: 1.5;
}
.rh-policy-list li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--rh-amber);
}
.rh-policy-list li strong { color: var(--rh-cream); }

/* ============================================================
   CONFIRMATION PAGE
   ============================================================ */
.rh-confirmation-wrap { max-width: 860px; margin: 0 auto; }
.rh-confirmation-card {
    background: var(--rh-espresso);
    border: 1px solid var(--rh-border);
    padding: 52px 48px;
    text-align: center;
    margin-bottom: 48px;
}
.rh-confirmation-fallback .rh-conf-icon { font-size: 3.5rem; margin-bottom: 20px; }
.rh-confirmation-fallback h2 {
    font-family: var(--rh-display);
    font-size: 2rem; font-weight: 700;
    color: var(--rh-pale-gold); margin-bottom: 16px;
}
.rh-confirmation-fallback p { color: var(--rh-muted); margin-bottom: 10px; }
.rh-conf-next-steps {
    text-align: left;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rh-border);
}
.rh-conf-next-steps h3 {
    font-family: var(--rh-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--rh-cream); margin-bottom: 16px;
}
.rh-next-steps-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 14px;
    counter-reset: steps;
}
.rh-next-steps-list li {
    display: flex; gap: 16px; align-items: flex-start;
    color: var(--rh-muted); font-size: .98rem;
    counter-increment: steps;
}
.rh-next-steps-list li::before {
    content: counter(steps);
    font-family: var(--rh-display);
    font-size: 1.4rem; font-weight: 700;
    color: var(--rh-amber);
    flex-shrink: 0; line-height: 1;
    margin-top: 2px; min-width: 20px;
}

.rh-conf-bottom { }
.rh-conf-info-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    margin-bottom: 48px;
}
.rh-conf-info-block {
    background: var(--rh-espresso);
    border: 1px solid var(--rh-border);
    padding: 24px 20px;
    display: flex; gap: 14px; align-items: flex-start;
}
.rh-conf-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.rh-conf-info-block strong { display: block; color: var(--rh-cream); font-family: var(--rh-sans); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 6px; }
.rh-conf-info-block p { color: var(--rh-muted); font-size: .9rem; margin: 0 0 4px; }
.rh-conf-info-block a { color: var(--rh-pale-gold); font-size: .9rem; text-decoration: none; }

.rh-conf-explore { text-align: center; }
.rh-conf-exp-links {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    margin-top: 8px;
}
.rh-conf-exp-link {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--rh-espresso);
    border: 1px solid var(--rh-border);
    padding: 20px 16px;
    text-decoration: none;
    text-align: left;
    transition: border-color .2s, background .2s;
}
.rh-conf-exp-link:hover { border-color: var(--rh-amber); background: rgba(184,98,26,.08); }
.rh-conf-exp-link > span { font-size: 1.5rem; flex-shrink: 0; }
.rh-conf-exp-link strong { display: block; color: var(--rh-cream); font-family: var(--rh-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.rh-conf-exp-link span { display: block; font-family: var(--rh-sans); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rh-amber); }

/* ============================================================
   LOOKUP PAGE
   ============================================================ */
.rh-lookup-wrap {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px; align-items: start;
}
.rh-lookup-card {
    background: var(--rh-espresso);
    border: 1px solid var(--rh-border);
    padding: 40px 36px;
}
.rh-lookup-aside { position: sticky; top: 100px; }

/* ============================================================
   BOOKING/CONFIRMATION RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .rh-book-panel.active { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .rh-book-tabs { grid-template-columns: 1fr; gap: 2px; }
    .rh-book-layout { grid-template-columns: 1fr; }
    .rh-book-aside { position: static; }
    .rh-conf-info-grid { grid-template-columns: 1fr; }
    .rh-conf-exp-links { grid-template-columns: 1fr; }
    .rh-lookup-wrap { grid-template-columns: 1fr; }
    .rh-lookup-aside { position: static; }
    .rh-confirmation-card { padding: 32px 24px; }
    .rh-lookup-card { padding: 28px 20px; }
    .rh-book-form-wrap { padding: 20px 16px; }
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
/* ── BOOKING MODAL ─────────────────────────────────────────── */

/* ── Overlay: covers full viewport above everything ─ */
.rh-modal-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    background: rgba(13,8,5,.92) !important;
    /* Overlay itself scrolls so very long content is never cut off */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    /* Center the box horizontally and start from top with padding */
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 40px;
}
.rh-modal-overlay.rh-modal-open {
    display: flex !important;
}

/* Prevent body scroll when modal is open */
body.rh-modal-active {
    overflow: hidden !important;
    /* Prevent layout shift from scrollbar disappearing */
    padding-right: var(--scrollbar-width, 0px);
}

/* ── Modal box ─────────────────────────────────────── */
.rh-modal-box {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 820px;
    /* No max-height — the overlay scrolls, not the box.
       This means content is NEVER truncated. */
    animation: rhModalIn .22s ease both;
    color: #1a2733;
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    /* Isolate from Rumhuys dark theme variables */
    --rh-dark: initial;
    --rh-cream: initial;
    /* Ensure box doesn't shrink below its content */
    flex-shrink: 0;
}

@keyframes rhModalIn {
    from { opacity: 0; transform: translateY(14px) scale(.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Close × button — sticky inside the box ───────── */
.rh-modal-close {
    position: sticky !important;
    top: 12px !important;
    float: right;
    z-index: 10;
    margin: 12px 12px 0 0;
    background: rgba(0,0,0,.1);
    border: none;
    color: #555;
    font-size: 1.5rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rh-modal-close:hover { background: rgba(0,0,0,.18); color: #000; }

/* ── Content area ──────────────────────────────────── */
.rh-modal-inner {
    clear: both;
    padding: 0 24px 36px;
}

/* WeTour widget inside modal */
.rh-modal-inner .wetour-widget,
.rh-modal-inner #wetour-booking-widget,
.rh-modal-box .wetour-widget,
.rh-modal-box #wetour-booking-widget {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #1a2733 !important;
    box-shadow: none !important;
}

/* ── Mobile — centered, full width, scrollable ─────── */
@media (max-width: 640px) {
    .rh-modal-overlay {
        /* Less padding on mobile — more space for content */
        padding: 16px 0 60px !important;
        /* Center vertically only if content is short enough */
        align-items: flex-start !important;
    }
    .rh-modal-box {
        max-width: 100% !important;
        width: 100% !important;
        /* Rounded top corners only — looks like a bottom sheet but centered */
        border-radius: 16px 16px 0 0;
        margin-top: auto; /* push to bottom of overlay padding */
    }
    .rh-modal-inner {
        padding: 0 16px 40px;
    }
    /* Scroll hint — subtle indicator that content continues below */
    .rh-modal-box::after {
        content: '';
        display: block;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(0,0,0,.08), transparent);
        margin: 0 24px;
    }
}

/* ── Modal loading state ─────────────────────────── */
.rh-modal-loading-state {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 60px 20px; gap: 16px;
    color: #a08050;
    font-family: 'Josefin Sans', sans-serif;
    font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
}
.rh-modal-spinner {
    width: 32px; height: 32px;
    border: 2px solid rgba(200,146,42,.2);
    border-top-color: #b8621a;
    border-radius: 50%;
    animation: rhSpin .7s linear infinite;
}
@keyframes rhSpin { to { transform: rotate(360deg); } }

/* ============================================================
   PHOTO SLIDER
   ============================================================ */
.rh-exp-slider { margin-bottom: 36px; }

.rh-slider {
    position: relative;
    overflow: hidden;
    background: var(--rh-espresso);
    /* 16:9 aspect ratio */
    aspect-ratio: 16 / 9;
    max-height: 480px;
}
.rh-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.rh-slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.rh-slider-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.rh-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Prev / Next buttons */
.rh-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(13,8,5,.65);
    border: 1px solid rgba(200,146,42,.3);
    color: var(--rh-pale-gold);
    font-size: 1.8rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    border-radius: 0;
}
.rh-slider-btn:hover {
    background: rgba(184,98,26,.75);
    border-color: var(--rh-amber);
}
.rh-slider-prev { left: 14px; }
.rh-slider-next { right: 14px; }

/* Dots */
.rh-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.rh-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}
.rh-slider-dot.active {
    background: var(--rh-pale-gold);
    transform: scale(1.25);
}

/* ============================================================
   BOOKING SIDEBAR — booking box at top, sticky
   ============================================================ */
.rh-exp-sidebar {
    position: sticky;
    top: 90px; /* below fixed nav */
    align-self: start;
}
.rh-booking-sticky {
    /* Already gets border/bg from .rh-booking-sidebar */
}
.rh-sidebar-experience-tag {
    font-family: var(--rh-sans);
    font-size: .66rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--rh-amber);
    margin-bottom: 12px;
    display: block;
}

/* Make the Book button full-width and prominent */
.rh-booking-sidebar .rh-modal-trigger,
.rh-booking-sidebar .rh-btn-primary {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 16px !important;
    font-size: .75rem !important;
    margin: 18px 0 0 !important;
}

@media (max-width: 900px) {
    /* On mobile, sidebar flows below content — no sticky needed */
    .rh-exp-sidebar {
        position: static;
    }
    .rh-slider { aspect-ratio: 4/3; }
}

/* ============================================================
   MOBILE STICKY BOOKING BAR
   Pinned to bottom of screen on phones — always visible
   ============================================================ */
.rh-mobile-book-bar {
    display: none; /* hidden on desktop */
}

@media (max-width: 900px) {
    /* Show the sticky bar */
    .rh-mobile-book-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        background: var(--rh-espresso);
        border-top: 1px solid rgba(200,146,42,.3);
        padding: 12px 20px;
        box-shadow: 0 -4px 24px rgba(0,0,0,.45);
        /* Push up on iOS for safe area (notch phones) */
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
    .rh-mobile-book-bar-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    .rh-mobile-book-bar-name {
        font-family: var(--rh-display);
        font-size: .95rem;
        font-weight: 700;
        color: var(--rh-cream);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .rh-mobile-book-bar-price {
        font-family: var(--rh-sans);
        font-size: .6rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--rh-amber);
    }
    .rh-mobile-book-bar .rh-btn-primary,
    .rh-mobile-book-bar .rh-modal-trigger {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 13px 24px !important;
        font-size: .68rem !important;
        margin: 0 !important;
    }

    /* Add bottom padding to page so content isn't hidden behind the sticky bar */
    .page-experience {
        padding-bottom: 80px;
    }

    /* Hide the sidebar booking box on mobile — replaced by the sticky bar */
    .rh-exp-sidebar .rh-booking-sidebar {
        display: none;
    }
    /* Keep the "Other Experiences" section visible */
    .rh-exp-sidebar .rh-sidebar-others {
        display: block;
    }
}

/* ── Map embed ───────────────────────────────────── */
.rh-map-wrap {
    overflow: hidden;
    border: 1px solid var(--rh-border);
}
.rh-map-wrap iframe {
    display: block;
    filter: grayscale(40%) contrast(1.1) brightness(0.95);
    transition: filter .3s;
}
.rh-map-wrap:hover iframe { filter: none; }

/* ── Mobile readability boost ────────────────────── */
@media (max-width: 640px) {
    body.rumhuys-site {
        font-size: 17px; /* slightly smaller base on small screens is fine */
    }
    .rh-exp-body p,
    .rh-about-text p,
    .rh-checklist li,
    .rh-faq-a p,
    .rh-rum-tasting-info p,
    .rh-process-step p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    .rh-section-title {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }
    .rh-exp-body h2,
    .rh-exp-body h3 {
        font-size: 1.5rem;
    }
}
