/*
Theme Name:  BV Hotel
Theme URI:   https://bharmourview.com
Description: Professional hotel theme for BV Hotel — parallax hero, room galleries, customizer-driven homepage sections, blog archive with grid/list layouts, sidebar widgets, and full responsive design. Built for Hotel Bharmour View, Bharmour, Chamba, Himachal Pradesh.
Author:      BV Hotel
Author URI:  https://bharmourview.com
Version:     1.6.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License:     GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags:        hotel, one-page, parallax, custom-menu, custom-logo, featured-images, full-width-template, theme-options, threaded-comments, translation-ready, responsive-layout
Text Domain: bv-hotel
*/

/* ============================================================
   0. DESIGN TOKENS
   ============================================================ */
:root {
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale */
  --text-2xs: clamp(0.65rem,  0.6rem  + 0.2vw,  0.75rem);
  --text-xs:  clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:  clamp(0.875rem, 0.82rem + 0.3vw,  1rem);
  --text-md:  clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:  clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:  clamp(1.4rem,   1.1rem  + 1.2vw,  2rem);
  --text-2xl: clamp(1.8rem,   1.2rem  + 2vw,    3rem);
  --text-3xl: clamp(2.4rem,   1rem    + 4vw,    5rem);
  --text-hero:clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --sp-1:0.25rem; --sp-2:0.5rem;  --sp-3:0.75rem; --sp-4:1rem;
  --sp-5:1.25rem; --sp-6:1.5rem;  --sp-8:2rem;    --sp-10:2.5rem;
  --sp-12:3rem;   --sp-16:4rem;   --sp-20:5rem;   --sp-24:6rem;

  /* Border radius */
  --r-xs:0.2rem; --r-sm:0.375rem; --r-md:0.5rem;
  --r-lg:0.75rem; --r-xl:1rem; --r-2xl:1.5rem; --r-full:9999px;

  /* Colour palette */
  --c-bg:          #f4f1ec;
  --c-surface:     #f9f7f3;
  --c-surface-2:   #faf8f5;
  --c-surface-3:   #ede9e1;
  --c-border:      #d8d0c3;
  --c-border-lt:   #e8e2d8;
  --c-divider:     #ddd6cb;

  --c-text:        #201d16;
  --c-text-2:      #4a4538;
  --c-text-muted:  #6b6355;
  --c-text-faint:  #aca79e;
  --c-text-inv:    #f5f3ef;

  --c-primary:     #2d5a27;
  --c-primary-h:   #1e3f1a;
  --c-primary-lt:  #e4ede3;
  --c-primary-dim: rgba(45,90,39,0.12);

  --c-gold:        #b07d2a;
  --c-gold-lt:     #f0e4c8;
  --c-gold-dim:    rgba(176,125,42,0.18);

  --c-dark:        #1a1714;
  --c-dark-2:      #231f19;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(32,29,22,0.07);
  --sh-sm: 0 2px 8px rgba(32,29,22,0.09);
  --sh-md: 0 6px 24px rgba(32,29,22,0.11);
  --sh-lg: 0 16px 48px rgba(32,29,22,0.14);
  --sh-xl: 0 32px 80px rgba(32,29,22,0.18);

  /* Transitions */
  --ease:    200ms cubic-bezier(0.16,1,0.3,1);
  --ease-md: 350ms cubic-bezier(0.16,1,0.3,1);
  --ease-lg: 600ms cubic-bezier(0.16,1,0.3,1);

  /* Layout */
  --w-narrow:  640px;
  --w-default: 960px;
  --w-wide:    1200px;
  --w-full:    1440px;
  --header-h:  72px;
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.18; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; width: 100%; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: var(--sp-3);
  background: var(--c-primary); color: #fff;
  padding: var(--sp-2) var(--sp-5); border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 600; z-index: 9999;
}
.skip-link:focus { left: var(--sp-4); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */
.container       { max-width: var(--w-wide);   margin: 0 auto; padding: 0 var(--sp-6); }
.container-wide  { max-width: var(--w-full);   margin: 0 auto; padding: 0 var(--sp-6); }
.container-narrow{ max-width: var(--w-default); margin: 0 auto; padding: 0 var(--sp-6); }

.section        { padding: clamp(var(--sp-12), 8vw, var(--sp-24)) 0; }
.section-alt    { background: var(--c-surface); }
.section-dark   { background: var(--c-dark); color: var(--c-text-inv); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: var(--sp-4);
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: currentColor; opacity: .5;
}
.section-heading {
  font-size: var(--text-3xl); font-weight: 400; line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.section-heading em   { font-style: italic; color: var(--c-gold); }
.section-heading strong { font-weight: 600; }
.lead {
  font-size: var(--text-lg); color: var(--c-text-muted);
  max-width: 58ch; line-height: 1.7;
}

/* ============================================================
   4. BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-full); font-size: var(--text-xs);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap; transition: background var(--ease), color var(--ease),
    border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--c-primary); color: #fff; border: 2px solid var(--c-primary); box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--c-primary-h); border-color: var(--c-primary-h); transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-secondary { background: transparent; color: var(--c-primary); border: 2px solid var(--c-primary); }
.btn-secondary:hover { background: var(--c-primary); color: #fff; }

.btn-gold { background: var(--c-gold); color: #fff; border: 2px solid var(--c-gold); box-shadow: var(--sh-sm); }
.btn-gold:hover { background: #9a6c22; border-color: #9a6c22; transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--c-primary); border: 2px solid #fff; box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }

.btn-text {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--c-primary);
  padding: 0; background: none; border: none; border-radius: 0;
  text-transform: none; letter-spacing: 0;
}
.btn-text::after { content: '→'; transition: transform var(--ease); }
.btn-text:hover { color: var(--c-primary-h); }
.btn-text:hover::after { transform: translateX(4px); }

.btn-sm { padding: var(--sp-2) var(--sp-5); font-size: var(--text-2xs); }
.btn-lg { padding: var(--sp-4) var(--sp-10); font-size: var(--text-sm); }

/* ============================================================
   4b. TOP BAR
   ============================================================ */
.bvh-topbar {
  position: relative; z-index: 600;
  font-size: 0.72rem;
  background: #12100e;
  color: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease);
}
.bvh-topbar.topbar-light {
  background: var(--c-surface-3);
  color: var(--c-text-muted);
  border-bottom-color: var(--c-border-lt);
}
.bvh-topbar.topbar-green {
  background: var(--c-primary);
  color: rgba(255,255,255,.75);
}
.bvh-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: var(--sp-4);
}
.bvh-topbar-left  { display: flex; align-items: center; gap: var(--sp-5); }
.bvh-topbar-center{ display: flex; align-items: center; gap: var(--sp-3); }
.bvh-topbar-right { display: flex; align-items: center; justify-content: flex-end; }

.bvh-tb-item {
  display: flex; align-items: center; gap: var(--sp-2);
  color: inherit; transition: color var(--ease);
  white-space: nowrap;
}
.bvh-tb-item:hover { color: var(--c-gold); }
.bvh-tb-item svg   { flex-shrink: 0; opacity: .65; }

.bvh-tb-social {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  color: rgba(255,255,255,.45);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.bvh-tb-social:hover { color: var(--c-gold); background: rgba(176,125,42,.12); }

.bvh-topbar.topbar-gold {
  background: var(--c-gold);
  color: rgba(255,255,255,.9);
  border-bottom-color: rgba(255,255,255,.15);
}
.bvh-topbar.topbar-gold .bvh-tb-item:hover,
.bvh-topbar.topbar-gold .bvh-tb-menu li a:hover { color: #fff; }
.bvh-topbar.topbar-gold .bvh-tb-cta { background: rgba(255,255,255,.2); }

/* Top bar CTA pill */
.bvh-tb-cta {
  background: rgba(255,255,255,.12);
  border-radius: var(--r-full);
  padding: 2px 10px;
  transition: background var(--ease);
}
.bvh-tb-cta:hover { background: rgba(255,255,255,.22) !important; }


.bvh-tb-menu {
  display: flex; gap: 0; list-style: none;
}
.bvh-tb-menu li a {
  display: block; padding: 0 var(--sp-4);
  font-size: 0.68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  transition: color var(--ease);
  border-left: 1px solid rgba(255,255,255,.07);
  line-height: 38px;
}
.bvh-tb-menu li:first-child a { border-left: none; }
.bvh-tb-menu li a:hover { color: var(--c-gold); }

/* Adjust header top position when topbar is visible — JS overrides this dynamically */
.has-topbar .site-header { top: 38px; }
.has-topbar .site-header.scrolled { top: 0; }

/* ============================================================
   4c. HEADER STYLE VARIANTS
   Class is applied directly to .site-header element in header.php
   Pattern: .site-header.header-{style}
   ============================================================ */

/* ── Transparent Light (white text, over dark/image hero) ── */
.site-header.header-transparent-light {
  background: transparent !important;
  box-shadow: none;
}
.site-header.header-transparent-light .logo,
.site-header.header-transparent-light .primary-nav > li > a,
.site-header.header-transparent-light .nav-toggle,
.site-header.header-transparent-light .nav-mobile-toggle { color: rgba(255,255,255,.92); }
.site-header.header-transparent-light .btn-book {
  border-color: rgba(255,255,255,.5); color: #fff;
}
.site-header.header-transparent-light .btn-book:hover { background: #fff; color: var(--c-primary); }
/* After scroll — white background */
.site-header.header-transparent-light.scrolled {
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 1px 24px rgba(0,0,0,.08);
}
.site-header.header-transparent-light.scrolled .logo,
.site-header.header-transparent-light.scrolled .primary-nav > li > a,
.site-header.header-transparent-light.scrolled .nav-toggle,
.site-header.header-transparent-light.scrolled .nav-mobile-toggle { color: var(--c-text); }
.site-header.header-transparent-light.scrolled .btn-book {
  border-color: var(--c-primary); color: var(--c-primary);
}

/* ── Transparent Dark (dark text, over light/pale hero) ── */
.site-header.header-transparent-dark {
  background: transparent !important;
  box-shadow: none;
}
.site-header.header-transparent-dark .logo,
.site-header.header-transparent-dark .primary-nav > li > a,
.site-header.header-transparent-dark .nav-toggle,
.site-header.header-transparent-dark .nav-mobile-toggle { color: var(--c-text); }
.site-header.header-transparent-dark.scrolled {
  background: rgba(255,255,255,.97) !important;
  box-shadow: 0 1px 24px rgba(0,0,0,.08);
}

/* ── Solid White ── */
.site-header.header-solid-light {
  background: rgba(249,247,243,0.98) !important;
  box-shadow: 0 1px 0 var(--c-border-lt), 0 4px 16px rgba(0,0,0,.05);
}
.site-header.header-solid-light .logo,
.site-header.header-solid-light .primary-nav > li > a,
.site-header.header-solid-light .nav-toggle,
.site-header.header-solid-light .nav-mobile-toggle { color: var(--c-text); }

/* ── Solid Dark ── */
.site-header.header-solid-dark {
  background: rgba(18,16,14,.97) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.site-header.header-solid-dark .logo,
.site-header.header-solid-dark .primary-nav > li > a,
.site-header.header-solid-dark .nav-toggle,
.site-header.header-solid-dark .nav-mobile-toggle { color: rgba(255,255,255,.85); }
.site-header.header-solid-dark .btn-book { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
.site-header.header-solid-dark .dropdown { background: #1a1714; }
.site-header.header-solid-dark .dropdown li a { color: rgba(255,255,255,.7); }

/* ── Solid Green ── */
.site-header.header-solid-green {
  background: var(--c-primary) !important;
  box-shadow: 0 2px 20px rgba(26,46,27,.3);
}
.site-header.header-solid-green .logo,
.site-header.header-solid-green .primary-nav > li > a,
.site-header.header-solid-green .nav-toggle,
.site-header.header-solid-green .nav-mobile-toggle { color: rgba(255,255,255,.9); }
.site-header.header-solid-green .btn-book { background: var(--c-gold); border-color: var(--c-gold); color: #fff; }
.site-header.header-solid-green .dropdown { background: var(--c-primary-h); }

/* Centered layout */
.header-inner.header-centered {
  display: flex; flex-direction: column; align-items: center;
  width: 100%; gap: var(--sp-2);
}
.header-layout-centered .site-header { height: auto; padding: var(--sp-4) var(--sp-8); flex-direction: column; }
.header-layout-centered .site-header.scrolled { height: auto; }
.header-layout-centered nav { order: 2; }
.header-layout-centered .header-actions { position: absolute; right: var(--sp-8); top: 50%; transform: translateY(-50%); }

/* Minimal layout */
.header-inner.header-minimal { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Logo tagline */
.logo span small {
  display: block; font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; opacity: .55; margin-top: 1px;
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  padding: 0 var(--sp-8);
  background: transparent;
  transition: background var(--ease-md), box-shadow var(--ease-md), height var(--ease-md);
}
.site-header.scrolled {
  background: rgba(249,247,243,0.97);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: var(--sh-sm);
  height: 60px;
}
.site-header.page-header {
  background: rgba(26,23,20,0.6);
  backdrop-filter: blur(8px);
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem,1rem + 0.5vw,1.35rem);
  font-weight: 600; color: #fff; white-space: nowrap;
  transition: color var(--ease);
}
.logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.site-header.scrolled .logo { color: var(--c-text); }

/* Primary nav */
nav[aria-label="Primary navigation"] { flex: 1; display: flex; justify-content: center; }
.primary-nav { display: flex; align-items: center; gap: var(--sp-1); }
.primary-nav > li { position: relative; }

.primary-nav > li > a,
.primary-nav > li > button.nav-toggle {
  display: flex; align-items: center; gap: 3px;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-2xs); font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
  border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.primary-nav > li > a:hover,
.primary-nav > li > button.nav-toggle:hover {
  color: #fff; background: rgba(255,255,255,.1);
}
.site-header.scrolled .primary-nav > li > a,
.site-header.scrolled .primary-nav > li > button.nav-toggle {
  color: var(--c-text-muted);
}
.site-header.scrolled .primary-nav > li > a:hover,
.site-header.scrolled .primary-nav > li > button.nav-toggle:hover {
  color: var(--c-text); background: var(--c-surface-3);
}

/* Chevron */
.nav-toggle .chevron { width: 12px; height: 12px; transition: transform var(--ease); }
.primary-nav > li:hover > button.nav-toggle .chevron,
.primary-nav > li.open > button.nav-toggle .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  padding: var(--sp-2) 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
  z-index: 600;
}
.primary-nav > li:hover > .dropdown,
.primary-nav > li.open  > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm); color: var(--c-text-muted);
  transition: background var(--ease), color var(--ease), padding-left var(--ease);
}
.dropdown li a:hover {
  background: var(--c-primary-lt); color: var(--c-primary);
  padding-left: calc(var(--sp-5) + 6px);
}
.dropdown-label {
  padding: var(--sp-3) var(--sp-5) var(--sp-1);
  font-size: var(--text-2xs); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-text-faint);
}
.dropdown hr { border: none; border-top: 1px solid var(--c-border-lt); margin: var(--sp-2) 0; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.btn-book {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  background: var(--c-primary); color: #fff;
  font-size: var(--text-2xs); font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid var(--c-primary);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn-book:hover { background: var(--c-primary-h); border-color: var(--c-primary-h); transform: translateY(-1px); }

.nav-mobile-toggle { display: none; padding: var(--sp-2); color: #fff; }
.site-header.scrolled .nav-mobile-toggle { color: var(--c-text); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--c-surface);
  padding: 5rem var(--sp-8) var(--sp-8);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--ease-md);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close { position: absolute; top: var(--sp-5); right: var(--sp-6); padding: var(--sp-2); }
.mob-menu { display: flex; flex-direction: column; }
.mob-menu > li > a,
.mob-menu > li > button.mob-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: var(--sp-4) 0;
  font-family: var(--font-display); font-size: var(--text-xl);
  color: var(--c-text); border-bottom: 1px solid var(--c-divider);
  background: none; text-align: left;
}
.mob-menu > li > button.mob-toggle .chevron { transition: transform var(--ease); }
.mob-menu > li.open  > button.mob-toggle .chevron { transform: rotate(180deg); }
.mob-submenu {
  display: none; flex-direction: column;
  background: var(--c-surface-3); border-radius: var(--r-lg);
  margin: var(--sp-2) 0; padding: var(--sp-2) 0;
}
.mob-submenu.open { display: flex; }
.mob-submenu a {
  display: block; padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-md); color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-divider);
}
.mob-submenu li:last-child a { border-bottom: none; }
.mob-submenu a:hover { color: var(--c-primary); }
#mobileNavOverlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 799; display: none;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--c-dark) center/cover no-repeat;
  transform: scale(1.05);
  transition: opacity 0.8s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(10,20,8,.38) 0%, rgba(10,20,8,.68) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* hero-body: pushes content to centre, stats flush to bottom — all in normal flow */
.hero-body {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 0;
}

.hero-content {
  max-width: 860px; padding: 0 var(--sp-6);
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--c-gold);
  border: 1px solid rgba(176,125,42,.45);
  border-radius: var(--r-full); padding: var(--sp-2) var(--sp-5);
  backdrop-filter: blur(8px); background: rgba(176,125,42,.08);
}
.hero-eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-gold); opacity: .6; }

.hero-content h1 {
  font-size: var(--text-hero); color: #fff;
  font-weight: 400; line-height: 1.02; margin-bottom: var(--sp-6);
  text-shadow: 0 2px 40px rgba(0,0,0,.2);
}
.hero-content h1 em { font-style: italic; color: var(--c-gold); }

.hero-desc {
  font-size: var(--text-lg); color: rgba(255,255,255,.82);
  max-width: 560px; margin: 0 auto var(--sp-10); font-weight: 300; line-height: 1.65;
}

.hero-cta { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  color: rgba(255,255,255,.45); font-size: var(--text-2xs);
  letter-spacing: .15em; text-transform: uppercase;
  animation: heroFloat 2.8s ease-in-out infinite;
  z-index: 3; pointer-events: none;
}
@keyframes heroFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Stats bar — sits at bottom of hero-body, fully inside hero */
.hero-stats {
  position: relative; z-index: 2;
  width: 100%;
  background: rgba(14,26,12,.78);
  backdrop-filter: blur(20px) saturate(120%);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: center;
  margin-top: clamp(2rem, 5vw, 4rem);
}
.hero-stat {
  flex: 1; max-width: 220px; text-align: center;
  padding: var(--sp-5) var(--sp-6);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--ease);
}
.hero-stat:hover { background: rgba(255,255,255,.04); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display); font-size: var(--text-2xl);
  color: var(--c-gold); font-weight: 600; display: block; line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-2xs); color: rgba(255,255,255,.55);
  letter-spacing: .1em; text-transform: uppercase; margin-top: var(--sp-1);
}

/* ============================================================
   7. ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl); aspect-ratio: 4/3; object-fit: cover;
}
/* Decorative frame */
.about-image-wrap::before {
  content: ''; position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--c-gold-dim);
  border-radius: var(--r-2xl);
  pointer-events: none; z-index: -1;
}
.about-image-wrap::after {
  content: ''; position: absolute;
  bottom: -12px; right: -12px;
  width: 120px; height: 120px;
  background: var(--c-gold-dim);
  border-radius: var(--r-xl);
  z-index: -2;
}

.about-body { padding-left: var(--sp-4); }
.about-features {
  margin-top: var(--sp-8);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
}
.about-feature {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-primary-lt); border-radius: var(--r-md);
  font-size: var(--text-sm); font-weight: 500; color: var(--c-text-2);
  transition: background var(--ease);
}
.about-feature:hover { background: #d6e7d5; }
.about-feature-icon { color: var(--c-primary); flex-shrink: 0; margin-top: 2px; }

/* Floating stats card on about image */
.about-stats-card {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  display: flex; gap: 0;
  overflow: hidden; border: 1px solid var(--c-border-lt);
  z-index: 2;
}
.about-stat {
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  border-right: 1px solid var(--c-border-lt);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  display: block; font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 700;
  color: var(--c-primary); line-height: 1;
}
.about-stat-label {
  display: block; font-size: var(--text-2xs);
  color: var(--c-text-faint); margin-top: 3px;
  text-transform: uppercase; letter-spacing: .1em;
}

/* btn-outline */
.btn-outline {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 0.8rem 1.6rem; border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 600; letter-spacing: .03em;
  border: 2px solid var(--c-primary); color: var(--c-primary);
  transition: background var(--ease), color var(--ease);
}
.btn-outline:hover { background: var(--c-primary); color: #fff; }

/* ============================================================
   8. ROOMS
   ============================================================ */
.rooms-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6); }

.room-card {
  background: var(--c-surface);
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--c-border-lt);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }

/* Gallery */
.room-card-img {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.room-gallery { position: relative; width: 100%; height: 100%; }
.room-gallery img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  transition: opacity .5s ease, transform var(--ease-lg);
}
.room-gallery img.gallery-active { opacity: 1; }
.room-card:hover .room-gallery img.gallery-active { transform: scale(1.04); }

.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 36px; height: 36px;
  background: rgba(0,0,0,.5); color: #fff;
  border-radius: var(--r-full); font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease), background var(--ease);
  backdrop-filter: blur(4px);
}
.gallery-prev { left: var(--sp-3); }
.gallery-next { right: var(--sp-3); }
.room-card-img:hover .gallery-btn { opacity: 1; }
.gallery-btn:hover { background: rgba(0,0,0,.75); }

/* Gallery dots */
.gallery-dots {
  position: absolute; bottom: var(--sp-3); left: 50%;
  transform: translateX(-50%); display: flex; gap: var(--sp-2); z-index: 5;
}
.gallery-dot {
  width: 6px; height: 6px; border-radius: var(--r-full);
  background: rgba(255,255,255,.5); border: none; padding: 0;
  cursor: pointer; transition: background var(--ease), transform var(--ease);
}
.gallery-dot.active { background: #fff; transform: scale(1.3); }

/* Room badge */
.room-badge {
  position: absolute; top: var(--sp-4); left: var(--sp-4); z-index: 4;
  background: var(--c-primary); color: #fff;
  font-size: var(--text-2xs); font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full); box-shadow: var(--sh-sm);
}
.room-badge.gold   { background: var(--c-gold); }
.room-badge.premium{ background: #6b3520; }

.room-card-body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.room-card-body h3 {
  font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--sp-1);
}
.room-tier {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 600; color: var(--c-primary); margin-bottom: var(--sp-4);
  display: flex; align-items: center; gap: var(--sp-2);
}
.room-tier::after {
  content: ''; flex: 1; height: 1px; background: var(--c-border-lt);
}
.room-desc {
  font-size: var(--text-sm); color: var(--c-text-muted);
  line-height: 1.65; margin-bottom: var(--sp-5); flex: 1;
}
.room-amenities {
  display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6);
}
.room-amenity {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  font-size: var(--text-xs); color: var(--c-text-2);
  background: var(--c-surface-3); border-radius: var(--r-full);
  padding: var(--sp-1) var(--sp-3); border: 1px solid var(--c-border-lt);
}

/* ============================================================
   9. FACILITIES
   ============================================================ */
/* ============================================================
   9. FACILITIES — single justified row, no wrap
   ============================================================ */
.facilities-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.facility-card {
  flex: 1 1 0;
  background: #fff;
  padding: var(--sp-8) var(--sp-5);
  text-align: center;
  border-right: 1px solid var(--c-border-lt);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.facility-card:last-child { border-right: none; }
.facility-card:hover {
  background: var(--c-primary-lt);
  z-index: 1;
  box-shadow: 0 0 0 1px var(--c-primary);
}
.facility-card::before {
  content: '';
  display: block;
  width: 32px; height: 3px;
  background: var(--c-primary);
  border-radius: 2px;
  margin: 0 auto var(--sp-4);
  opacity: .35;
  transition: opacity var(--ease), width var(--ease);
}
.facility-card:hover::before { opacity: 1; width: 48px; }
.facility-card h3 {
  font-size: var(--text-sm); font-weight: 700;
  margin-bottom: var(--sp-2); color: var(--c-text);
}
.facility-card p {
  font-size: 0.75rem; color: var(--c-text-muted);
  line-height: 1.5; margin: 0;
}


/* ============================================================
   10. PROMO PARALLAX
   ============================================================ */
.promo-parallax {
  position: relative; height: 500px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.promo-parallax .bg {
  position: absolute; inset: -80px 0;
  background: url('images/Super-Deluxe-Room-2.jpg') center/cover no-repeat;
  will-change: transform;
}
.promo-parallax .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(14,26,12,.62) 0%, rgba(14,26,12,.78) 100%);
}
.promo-content { position: relative; z-index: 1; max-width: 680px; padding: 0 var(--sp-6); }
.promo-content h2 {
  font-size: var(--text-3xl); color: #fff; font-weight: 400;
  margin-bottom: var(--sp-5); line-height: 1.08;
}
.promo-content h2 em { font-style: italic; color: var(--c-gold); }
.promo-content p {
  font-size: var(--text-lg); color: rgba(255,255,255,.78);
  margin-bottom: var(--sp-10); line-height: 1.65; max-width: 48ch; margin-left: auto; margin-right: auto;
}

/* ============================================================
   11. ATTRACTIONS
   ============================================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-5); min-height: 520px;
}
.attraction-card {
  position: relative; border-radius: var(--r-2xl);
  overflow: hidden; box-shadow: var(--sh-md);
  cursor: pointer;
}
.attraction-card.featured { grid-row: span 2; }
.attraction-card img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 200px; display: block;
  transition: transform var(--ease-lg);
}
.attraction-card:hover img { transform: scale(1.06); }
.attraction-info {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: var(--sp-8) var(--sp-6) var(--sp-6);
  background: linear-gradient(0deg, rgba(14,26,12,.9) 0%, transparent 100%);
  color: #fff;
}
.attraction-info h3 { font-size: var(--text-xl); margin-bottom: var(--sp-1); font-weight: 500; }
.attraction-info p  { font-size: var(--text-xs); color: rgba(255,255,255,.7); letter-spacing: .04em; }
.attraction-tag {
  display: inline-block; margin-bottom: var(--sp-2);
  font-size: var(--text-2xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-gold);
  background: rgba(176,125,42,.2); border-radius: var(--r-full);
  padding: 2px var(--sp-3); border: 1px solid rgba(176,125,42,.3);
}

/* ============================================================
   12. LOCATION
   ============================================================ */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: start; }
.location-cards { display: flex; flex-direction: column; gap: var(--sp-4); }
.location-card {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding: var(--sp-5) var(--sp-5);
  background: var(--c-surface-2); border-radius: var(--r-xl);
  border: 1px solid var(--c-border-lt);
  transition: background var(--ease), box-shadow var(--ease);
}
.location-card:hover { background: #fff; box-shadow: var(--sh-sm); }
.location-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--c-primary-lt); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.location-card h4 { font-size: var(--text-sm); font-weight: 700; margin-bottom: var(--sp-1); }
.location-card p  { font-size: var(--text-sm); color: var(--c-text-muted); line-height: 1.55; }
.map-frame {
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--sh-xl); aspect-ratio: 5/4; position: sticky; top: 90px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   13. BOOKING / CTA SECTION
   ============================================================ */
.booking-section {
  background: linear-gradient(140deg, var(--c-primary) 0%, #1a3a16 50%, var(--c-primary-h) 100%);
  padding: clamp(var(--sp-12),8vw,var(--sp-24)) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.booking-inner { position: relative; z-index: 1; }
.booking-note {
  margin-top: var(--sp-6); font-size: var(--text-xs);
  color: rgba(255,255,255,.45); letter-spacing: .05em;
}

/* Section intro — used by rooms, attractions, facilities */
.section-intro {
  text-align: center;
  margin-bottom: clamp(2rem,4vw,3.5rem);
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.section-intro .lead { margin: 0 auto; }
.booking-section h2 {
  font-size: var(--text-3xl); color: #fff; font-weight: 400; margin-bottom: var(--sp-4);
}
.booking-section h2 em { font-style: italic; color: var(--c-gold); }
.booking-section .lead { color: rgba(255,255,255,.75); max-width: 52ch; margin: 0 auto var(--sp-10); }

.booking-cards {
  display: flex; gap: var(--sp-5); justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}
.booking-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-2xl);
  padding: var(--sp-6) var(--sp-8);
  color: #fff; min-width: 170px; text-align: center;
  transition: background var(--ease), transform var(--ease);
}
.booking-card:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.booking-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-1); }
.booking-card p  { font-size: var(--text-2xs); color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; }

.booking-cta { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-6);
}
.testimonial-card {
  background: #fff; border-radius: var(--r-2xl);
  padding: var(--sp-8); box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border-lt);
  display: flex; flex-direction: column;
  transition: box-shadow var(--ease), transform var(--ease);
}
.testimonial-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.t-stars { color: var(--c-gold); font-size: 1rem; margin-bottom: var(--sp-4); letter-spacing: 2px; }
.t-quote {
  font-family: var(--font-display); font-size: var(--text-xl);
  color: var(--c-text); line-height: 1.45; font-style: italic;
  margin-bottom: var(--sp-6); flex: 1;
}
.t-quote::before { content: '\201C'; color: var(--c-gold); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; }
.t-author { display: flex; align-items: center; gap: var(--sp-4); }
.t-avatar {
  width: 44px; height: 44px; border-radius: var(--r-full);
  background: var(--c-primary-lt); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display);
  font-size: var(--text-xl); color: var(--c-primary); flex-shrink: 0;
  font-weight: 600;
}
.t-name  { font-weight: 700; font-size: var(--text-sm); }
.t-origin{ font-size: var(--text-xs); color: var(--c-text-muted); }

/* ============================================================
   15. NEWSLETTER + FOOTER
   ============================================================ */

/* Newsletter strip */
.bvh-newsletter {
  background: var(--c-primary);
  padding: clamp(3rem,5vw,4.5rem) 0;
}
.bvh-nl-inner {
  display: flex; align-items: center; gap: 4rem;
}
.bvh-nl-text { flex: 1; }
.bvh-nl-text h2 {
  color: #fff; font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: .4rem;
}
.bvh-nl-text p { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.bvh-nl-form { flex: 1; display: flex; gap: .75rem; }
.bvh-nl-form input {
  flex: 1; padding: .9rem 1.25rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md); font-family: var(--font-body); font-size: .9rem; color: #fff;
  outline: none; transition: border-color var(--ease);
}
.bvh-nl-form input::placeholder { color: rgba(255,255,255,.45); }
.bvh-nl-form input:focus { border-color: var(--c-gold); background: rgba(255,255,255,.18); }

/* Main footer shell */
.site-footer {
  background: #12100e;
  color: rgba(255,255,255,.55);
  padding: 4rem 0 0;
}

/* 4-column grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── Brand column ── */
.footer-col-brand .footer-site-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: #fff; display: block; margin-bottom: 1rem; line-height: 1.1;
}
.footer-col-brand .footer-site-title span { color: var(--c-gold); }
.footer-col-brand .footer-tagline {
  font-size: .83rem; line-height: 1.8; color: rgba(255,255,255,.45);
  max-width: 280px; margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.12);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.footer-social a:hover {
  border-color: var(--c-gold); color: var(--c-gold);
  background: rgba(176,125,42,.12);
}
.footer-col.footer-col-brand .custom-logo-link img { max-height: 56px; width: auto; margin-bottom: 1rem; }

/* ── Nav columns ── */
.footer-col h5 {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #fff;
  font-family: var(--font-body);
  padding-bottom: .7rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0; list-style: none; }
.footer-col ul li a {
  display: block; padding: .4rem 0;
  font-size: .83rem; color: rgba(255,255,255,.48);
  transition: color var(--ease), padding-left var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-col ul li:last-child a { border-bottom: none; }
.footer-col ul li a:hover { color: var(--c-gold); padding-left: 5px; }

/* ── Contact column ── */
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .82rem;
}
.footer-contact-item svg { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span,
.footer-contact-item a { color: rgba(255,255,255,.48); line-height: 1.45; }
.footer-contact-item a:hover { color: var(--c-gold); }
.btn-footer-directions {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-gold);
  border: 1px solid rgba(176,125,42,.35);
  border-radius: var(--r-md); padding: .5rem .9rem;
  transition: background var(--ease), border-color var(--ease);
}
.btn-footer-directions:hover { background: rgba(176,125,42,.12); border-color: var(--c-gold); }

/* ── Bottom bar ── */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.5rem 0;
}
.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.25); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: .74rem; color: rgba(255,255,255,.25);
  transition: color var(--ease);
}
.footer-bottom-links a:hover { color: var(--c-gold); }

/* Widget areas inside footer — strip card chrome, inherit colours */
.site-footer .widget { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; margin-bottom: 0 !important; }
.site-footer .widget-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: #fff;
  font-family: var(--font-body);
  padding-bottom: .7rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
/* Popular/Recent posts in footer */
.site-footer .bvh-pop-list { gap: 0; }
.site-footer .bvh-pop-item { border-color: rgba(255,255,255,.06); padding: .6rem 0; }
.site-footer .bvh-pop-cat  { color: var(--c-gold); opacity: .7; }
.site-footer .bvh-pop-title { color: rgba(255,255,255,.55); font-size: .8rem; }
.site-footer .bvh-pop-title:hover { color: var(--c-gold); }
.site-footer .bvh-pop-date  { color: rgba(255,255,255,.22); font-size: .68rem; }
/* Nav menu widget in footer */
.site-footer .bvh-widget-menu li a { color: rgba(255,255,255,.48); border-color: rgba(255,255,255,.04); }
.site-footer .bvh-widget-menu li a:hover { color: var(--c-gold); }
.site-footer .bvh-widget-menu li a::before { background: var(--c-gold); }
/* Featured post widget in footer */
.site-footer .bvh-fp-title a { color: rgba(255,255,255,.75); }
.site-footer .bvh-fp-meta,
.site-footer .bvh-fp-excerpt { color: rgba(255,255,255,.35); }
.site-footer .bvh-fp-read-more { color: var(--c-gold); }
/* WP default widgets in footer */
.site-footer .widget ul li a { color: rgba(255,255,255,.48); font-size: .83rem; }
.site-footer .widget ul li a:hover { color: var(--c-gold); }
.site-footer .widget ul li { border-bottom: 1px solid rgba(255,255,255,.04); padding: .35rem 0; list-style: none; }
.site-footer .textwidget { font-size: .83rem; color: rgba(255,255,255,.45); line-height: 1.7; }

/* ============================================================
   16. BLOG / ARCHIVE
   ============================================================ */
.blog-page-header {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  padding: calc(var(--header-h) + var(--sp-12)) 0 var(--sp-12);
  text-align: center; color: #fff;
}
.blog-page-header h1 {
  font-size: var(--text-3xl); font-weight: 400; margin-bottom: var(--sp-3);
}
.blog-page-header p { color: rgba(255,255,255,.65); font-size: var(--text-lg); }

.blog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-5); border-bottom: 1px solid var(--c-border-lt);
  flex-wrap: wrap;
}
.blog-result-count { font-size: var(--text-sm); color: var(--c-text-muted); }
.layout-toggle {
  display: flex; overflow: hidden;
  border: 1px solid var(--c-border); border-radius: var(--r-md);
}
.layout-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: none; border: none;
  color: var(--c-text-muted); cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.layout-btn:hover, .layout-btn.active {
  background: var(--c-primary); color: #fff;
}

/* Blog wrapper */
.blog-wrap { display: grid; grid-template-columns: 1fr; gap: var(--sp-10); }
.blog-wrap.has-sidebar-right { grid-template-columns: 1fr 300px; }
.blog-wrap.has-sidebar-left  { grid-template-columns: 300px 1fr; }

/* Grid */
.posts-grid { display: grid; gap: var(--sp-6); }
.cols-2 { grid-template-columns: repeat(2,1fr); }
.cols-3 { grid-template-columns: repeat(3,1fr); }
/* List */
.posts-list { display: flex; flex-direction: column; gap: var(--sp-5); }

/* Post card — shared base */
.post-card {
  background: #fff;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--c-border-lt); box-shadow: var(--sh-xs);
  transition: transform var(--ease-md), box-shadow var(--ease-md);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

/* Grid card */
.post-card-grid .post-thumb { aspect-ratio: 16/9; overflow: hidden; }
.post-card-grid .post-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--ease-lg);
}
.post-card-grid:hover .post-thumb img { transform: scale(1.05); }
.post-card-grid .post-body { padding: var(--sp-5) var(--sp-5) var(--sp-6); flex: 1; display: flex; flex-direction: column; }

/* List card */
.post-card-list { flex-direction: row; align-items: stretch; }
.post-card-list .post-thumb { flex: 0 0 260px; overflow: hidden; }
.post-card-list .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-list .post-body { padding: var(--sp-6) var(--sp-7); flex: 1; display: flex; flex-direction: column; justify-content: center; }

/* Post card internals */
.post-cat-link {
  display: inline-block; margin-bottom: var(--sp-3);
  font-size: var(--text-2xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-primary); background: var(--c-primary-lt);
  padding: 2px var(--sp-3); border-radius: var(--r-full);
  transition: background var(--ease);
}
.post-cat-link:hover { background: #c8dfc7; color: var(--c-primary-h); }
.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem,1rem + 0.4vw,1.35rem);
  font-weight: 600; line-height: 1.3; margin-bottom: var(--sp-3); flex-grow: 1;
}
.post-card-list .post-title { font-size: var(--text-xl); }
.post-title a { color: var(--c-text); }
.post-title a:hover { color: var(--c-primary); }
.post-meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-1) var(--sp-4);
  font-size: var(--text-xs); color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
}
.post-excerpt {
  font-size: var(--text-sm); color: var(--c-text-muted);
  line-height: 1.65; margin-bottom: var(--sp-5);
}
.post-body .btn-text { margin-top: auto; }

/* Archive header */
.archive-hdr { padding-bottom: var(--sp-8); margin-bottom: var(--sp-8); border-bottom: 1px solid var(--c-border-lt); }
.archive-hdr h1 { font-size: var(--text-2xl); }
.archive-hdr p   { color: var(--c-text-muted); margin-top: var(--sp-2); }

/* Pagination */
.blog-pagination { margin-top: var(--sp-12); }
.blog-pagination .nav-links { display: flex; gap: var(--sp-2); flex-wrap: wrap; justify-content: center; }
.blog-pagination a,
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 var(--sp-3);
  border-radius: var(--r-md); font-size: var(--text-sm); font-weight: 600;
  border: 1px solid var(--c-border); color: var(--c-text);
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.blog-pagination a:hover,
.blog-pagination .current {
  background: var(--c-primary); color: #fff; border-color: var(--c-primary);
}

/* ============================================================
   16b. FACILITY CARD — number badge (replaces emoji icon)
   ============================================================ */
/* ── Facility number removed — accent line used via ::before ── */

/* ============================================================
   16c. ATTRACTION CARD
   ============================================================ */
.attraction-inner {
  display: block; color: inherit; text-decoration: none; height: 100%;
  position: relative;
}
.attraction-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.attraction-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.attraction-card:hover .attraction-img-wrap img { transform: scale(1.06); }
.attraction-read-more {
  display: inline-block; margin-top: .6rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--c-gold); transition: letter-spacing var(--ease);
}
.attraction-card:hover .attraction-read-more { letter-spacing: .14em; }

/* Custom widget styles are in Section 17 (Sidebar & Widgets) */

/* ============================================================
   17. SIDEBAR & WIDGETS — Professional
   ============================================================ */

.sidebar { min-width: 0; display: flex; flex-direction: column; gap: var(--sp-5); }

.sidebar .widget {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: 0 1px 3px rgba(26,46,27,.06), 0 4px 20px rgba(26,46,27,.05);
  border: 1px solid var(--c-border-lt);
  overflow: hidden;
  margin-bottom: 0;
  transition: box-shadow 0.25s ease;
}
.sidebar .widget:hover {
  box-shadow: 0 2px 8px rgba(26,46,27,.08), 0 8px 32px rgba(26,46,27,.09);
}
.sidebar .widget-title {
  font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-primary);
  margin: calc(-1 * var(--sp-6)) calc(-1 * var(--sp-6)) var(--sp-5);
  padding: var(--sp-3) var(--sp-6);
  background: var(--c-primary-lt);
  border-bottom: 2px solid rgba(45,90,39,.12);
  display: flex; align-items: center; gap: var(--sp-2);
}
.sidebar .widget-title::before {
  content: ''; width: 3px; height: 14px;
  background: var(--c-primary); border-radius: 2px; flex-shrink: 0;
}
.sidebar .widget ul { display: flex; flex-direction: column; gap: 0; list-style: none; }
.sidebar .widget ul li {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border-lt);
  font-size: 0.84rem;
}
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a {
  color: var(--c-text-muted);
  display: flex; align-items: center; gap: var(--sp-2);
  transition: color var(--ease), padding-left var(--ease);
}
.sidebar .widget ul li a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-primary); flex-shrink: 0; opacity: 0;
  transition: opacity var(--ease);
}
.sidebar .widget ul li a:hover { color: var(--c-primary); padding-left: 4px; }
.sidebar .widget ul li a:hover::before { opacity: 1; }
.sidebar .widget_search .search-form,
.sidebar .widget_search form {
  display: flex; border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.sidebar .widget_search .search-form:focus-within,
.sidebar .widget_search form:focus-within {
  border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(45,90,39,.1);
}
.sidebar .widget_search input[type="search"],
.sidebar .widget_search .search-field {
  flex: 1; padding: 0.75rem 1rem; border: none;
  background: var(--c-surface); font-family: var(--font-body);
  font-size: 0.88rem; color: var(--c-text); outline: none;
}
.sidebar .widget_search input::placeholder { color: var(--c-text-faint); }
.sidebar .widget_search button,
.sidebar .widget_search .search-submit {
  padding: 0 1.1rem; background: var(--c-primary); color: #fff;
  border: none; cursor: pointer; font-size: 0.82rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; transition: background var(--ease);
}
.sidebar .widget_search button:hover,
.sidebar .widget_search .search-submit:hover { background: var(--c-primary-h); }
.sidebar .tagcloud { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.sidebar .tagcloud a {
  display: inline-block; padding: 4px 12px;
  border: 1px solid var(--c-border); border-radius: var(--r-full);
  font-size: 0.75rem !important; color: var(--c-text-muted);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.sidebar .tagcloud a:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.sidebar .textwidget { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.7; }
.sidebar .textwidget p { margin-bottom: 0.6rem; }
.sidebar .widget.sidebar-cta {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-h) 100%);
  border-color: transparent;
}
.sidebar .widget.sidebar-cta .widget-title { background: rgba(0,0,0,.12); color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.sidebar .widget.sidebar-cta .widget-title::before { background: var(--c-gold); }
.sidebar .widget.sidebar-cta p { color: rgba(255,255,255,.75); font-size: 0.85rem; margin-bottom: var(--sp-4); }
.sidebar .widget.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ── BVH Nav Menu Widget (collapsible) ── */
.bvh-widget-menu { display: flex; flex-direction: column; gap: 0; list-style: none; }
.bvh-wm-item { border-bottom: 1px solid var(--c-border-lt); }
.bvh-wm-item:last-child { border-bottom: none; }
.bvh-wm-item > a, .bvh-wm-row > a {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) 0; font-size: .84rem; color: var(--c-text-muted);
  flex: 1; transition: color var(--ease), padding-left var(--ease);
}
.bvh-wm-item > a::before, .bvh-wm-row > a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-primary); flex-shrink: 0; opacity: 0; transition: opacity var(--ease);
}
.bvh-wm-item > a:hover, .bvh-wm-row > a:hover { color: var(--c-primary); padding-left: 4px; }
.bvh-wm-item > a:hover::before, .bvh-wm-row > a:hover::before { opacity: 1; }
.bvh-wm-row { display: flex; align-items: center; gap: 2px; }
.bvh-wm-toggle {
  flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: none; cursor: pointer;
  color: var(--c-text-faint); border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease), transform .25s ease; padding: 0;
}
.bvh-wm-toggle:hover { color: var(--c-primary); background: var(--c-primary-lt); }
.bvh-wm-toggle.open { transform: rotate(180deg); color: var(--c-primary); }
.bvh-widget-submenu {
  list-style: none; padding: .25rem 0 .25rem 1rem;
  border-top: 1px solid var(--c-border-lt); margin-bottom: .25rem;
}
.bvh-widget-submenu li a {
  font-size: .78rem; color: var(--c-text-faint); display: block;
  padding: .2rem 0; transition: color var(--ease);
}
.bvh-widget-submenu li a:hover { color: var(--c-primary); }

/* BVH Featured Post Widget */
.bvh-fp-img-wrap {
  position: relative; display: block;
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/9;
}
.bvh-fp-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.bvh-fp-img-wrap:hover img { transform: scale(1.04); }
.bvh-fp-cat {
  position: absolute; top: .75rem; left: .75rem;
  font-size: 0.58rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: #fff;
  background: var(--c-primary); border-radius: 3px; padding: 3px 8px;
}
.bvh-fp-body { display: flex; flex-direction: column; gap: .5rem; margin-top: .75rem; }
.bvh-fp-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; line-height: 1.25; }
.bvh-fp-title a { color: var(--c-text); transition: color .2s; }
.bvh-fp-title a:hover { color: var(--c-primary); }
.bvh-fp-meta { font-size: 0.7rem; color: var(--c-text-faint); }
.bvh-fp-excerpt { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.6; }
.bvh-fp-read-more { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; font-weight: 700; color: var(--c-primary); transition: gap .2s; }
.bvh-fp-read-more:hover { gap: 8px; }
.bvh-widget-empty { font-size: .82rem; color: var(--c-text-faint); font-style: italic; }

/* ============================================================
   18. SINGLE POST
   ============================================================ */
.single-wrap { display: grid; grid-template-columns: 1fr; gap: var(--sp-10); }
.single-wrap.has-sidebar-right { grid-template-columns: 1fr 300px; }
.single-wrap.has-sidebar-left  { grid-template-columns: 300px 1fr; }

.post-hero {
  aspect-ratio: 21/8; overflow: hidden; border-radius: var(--r-2xl);
  margin-bottom: var(--sp-10); box-shadow: var(--sh-lg);
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }

.single-post-header { margin-bottom: var(--sp-10); }
.single-post-title {
  font-size: clamp(1.9rem, 1rem + 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.18; margin: var(--sp-4) 0 var(--sp-5);
}
.post-byline {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6);
  font-size: var(--text-sm); color: var(--c-text-muted);
  padding-bottom: var(--sp-6); border-bottom: 1px solid var(--c-border-lt);
}
.entry-content {
  font-size: var(--text-md); line-height: 1.85; color: var(--c-text-2);
  max-width: 72ch;
}
.entry-content p  { margin-bottom: 1.4rem; }
.entry-content h2 { font-size: var(--text-2xl); margin: 2.5rem 0 1rem; color: var(--c-text); }
.entry-content h3 { font-size: var(--text-xl); margin: 2rem 0 0.75rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content a  { color: var(--c-primary); text-decoration: underline; }
.entry-content a:hover { color: var(--c-primary-h); }
.entry-content blockquote {
  border-left: 4px solid var(--c-gold); padding: var(--sp-4) var(--sp-6);
  margin: var(--sp-8) 0; background: var(--c-gold-lt); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display); font-size: var(--text-xl); font-style: italic;
  color: var(--c-text);
}
.entry-content img { border-radius: var(--r-xl); margin: var(--sp-6) 0; box-shadow: var(--sh-md); }
.entry-content code { background: var(--c-surface-3); padding: 2px 6px; border-radius: var(--r-sm); font-size: .9em; }
.entry-content pre  { background: var(--c-dark); color: #e8e8e8; padding: var(--sp-6); border-radius: var(--r-xl); overflow-x: auto; margin-bottom: 1.4rem; }

.post-footer {
  margin-top: var(--sp-10); padding-top: var(--sp-8);
  border-top: 1px solid var(--c-border-lt);
}
.post-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.post-tag {
  font-size: var(--text-xs); padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full); background: var(--c-surface-3);
  border: 1px solid var(--c-border); color: var(--c-text-muted);
  transition: background var(--ease), color var(--ease);
}
.post-tag:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.post-nav-card {
  padding: var(--sp-5); background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--c-border-lt); box-shadow: var(--sh-xs);
  transition: box-shadow var(--ease), transform var(--ease);
}
.post-nav-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.post-nav-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--c-text-faint); margin-bottom: var(--sp-2); }
.post-nav-title { font-family: var(--font-display); font-size: var(--text-lg); color: var(--c-text); line-height: 1.3; }

/* ============================================================
   19. COMMENTS
   ============================================================ */
.comments-area { margin-top: var(--sp-12); }
.comments-title { font-size: var(--text-2xl); margin-bottom: var(--sp-8); }
.comment-list { list-style: none; }
.comment { padding: var(--sp-6) 0; border-bottom: 1px solid var(--c-border-lt); }
.comment-author .avatar { width: 48px; height: 48px; border-radius: var(--r-full); float: left; margin-right: var(--sp-4); }
.comment-meta { font-size: var(--text-xs); color: var(--c-text-muted); margin-bottom: var(--sp-3); }
.comment-content p { font-size: var(--text-sm); line-height: 1.7; margin-bottom: var(--sp-3); }
.comment-content p:last-child { margin-bottom: 0; }
.children { padding-left: var(--sp-10); }
.comment-respond { margin-top: var(--sp-10); }
.comment-reply-title { font-size: var(--text-xl); margin-bottom: var(--sp-6); }
.comment-form label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--sp-2); }
.comment-form input,
.comment-form textarea {
  width: 100%; padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  font-size: var(--text-sm); background: var(--c-surface); color: var(--c-text);
  margin-bottom: var(--sp-5); transition: border-color var(--ease);
}
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--c-primary); }
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form .submit {
  background: var(--c-primary); color: #fff;
  padding: var(--sp-3) var(--sp-8); border-radius: var(--r-full);
  font-size: var(--text-sm); font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; cursor: pointer;
  transition: background var(--ease);
}
.comment-form .submit:hover { background: var(--c-primary-h); }

/* ============================================================
   20. PAGE TEMPLATES
   ============================================================ */
/* Full-width page */
.page-content-wrap { padding-top: calc(var(--header-h) + var(--sp-12)); }
.page-title-bar {
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  padding: calc(var(--header-h) + var(--sp-10)) 0 var(--sp-10);
  text-align: center;
}
.page-title-bar h1 { font-size: var(--text-3xl); color: #fff; font-weight: 400; }
.page-title-bar .breadcrumb {
  margin-top: var(--sp-4); font-size: var(--text-sm); color: rgba(255,255,255,.55);
}
.page-title-bar .breadcrumb a { color: rgba(255,255,255,.7); }
.page-title-bar .breadcrumb a:hover { color: #fff; }
.page-body { padding: var(--sp-16) 0; }

/* 404 */
.error-404 { padding: calc(var(--header-h) + var(--sp-16)) 0 var(--sp-24); text-align: center; }
.error-404 .big-num {
  font-family: var(--font-display); font-size: clamp(6rem,20vw,14rem);
  font-weight: 600; color: var(--c-primary-lt); line-height: 1;
  margin-bottom: var(--sp-4);
}
.error-404 h2 { font-size: var(--text-2xl); margin-bottom: var(--sp-4); }
.error-404 p  { color: var(--c-text-muted); max-width: 42ch; margin: 0 auto var(--sp-8); }

/* Search results */
.search-header { background: var(--c-surface-3); padding: calc(var(--header-h) + var(--sp-10)) 0 var(--sp-10); }
.search-header h1 { font-size: var(--text-2xl); }
.search-header p  { color: var(--c-text-muted); margin-top: var(--sp-2); }

/* ============================================================
   21. FORMS (contact / booking)
   ============================================================ */
.bv-form { max-width: 660px; margin: 0 auto; }
.bv-form .form-group { margin-bottom: var(--sp-5); }
.bv-form label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--sp-2); }
.bv-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.bv-form input,
.bv-form select,
.bv-form textarea {
  width: 100%; padding: var(--sp-4);
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  font-size: var(--text-sm); background: #fff; color: var(--c-text);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.bv-form input:focus,
.bv-form select:focus,
.bv-form textarea:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-dim);
}
.bv-form textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   22. SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* Delay utilities */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ============================================================
   23. MISCELLANEOUS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center;
  font-size: var(--text-2xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px var(--sp-3); border-radius: var(--r-full);
}
.badge-green  { background: var(--c-primary-lt); color: var(--c-primary); }
.badge-gold   { background: var(--c-gold-lt);    color: #7a5018; }
.badge-neutral{ background: var(--c-surface-3);  color: var(--c-text-muted); }

.notice {
  padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md); margin-bottom: var(--sp-5);
  font-size: var(--text-sm); border-left: 4px solid;
}
.notice-info    { background: #e8f0fd; border-color: #3b6fde; color: #1a3a8c; }
.notice-success { background: #e4f0e3; border-color: var(--c-primary); color: #1e3f1a; }
.notice-warning { background: var(--c-gold-lt); border-color: var(--c-gold); color: #7a5018; }

.home-widget-section { background: var(--c-surface-3); padding: var(--sp-10) 0; }
.home-widget { background: #fff; border-radius: var(--r-xl); padding: var(--sp-6); border: 1px solid var(--c-border-lt); margin-bottom: var(--sp-5); }
.home-widget:last-child { margin-bottom: 0; }
.home-widget .widget-title { font-size: var(--text-lg); border-bottom: 2px solid var(--c-primary); padding-bottom: var(--sp-3); margin-bottom: var(--sp-5); }

.separator { display: flex; align-items: center; gap: var(--sp-4); margin: var(--sp-6) 0; }
.separator::before, .separator::after { content: ''; flex: 1; height: 1px; background: var(--c-border-lt); }
.separator span { font-size: var(--text-xs); color: var(--c-text-faint); white-space: nowrap; }

/* ============================================================
   24. RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1200px) {
  :root { --sp-8: 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bvh-nl-inner { flex-direction: column; gap: 1.5rem; }
  .bvh-nl-form  { flex-direction: column; width: 100%; }
  .attractions-grid { grid-template-columns: 1fr 1fr; min-height: auto; }
  .attraction-card.featured { grid-row: span 1; grid-column: span 2; }
}

@media (max-width: 1024px) {
  .rooms-grid         { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid  { grid-template-columns: repeat(2,1fr); }
  .about-grid         { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-body         { padding-left: 0; }
  .blog-wrap.has-sidebar-right,
  .blog-wrap.has-sidebar-left { grid-template-columns: 1fr 260px; gap: var(--sp-8); }
  .single-wrap.has-sidebar-right,
  .single-wrap.has-sidebar-left { grid-template-columns: 1fr 260px; gap: var(--sp-8); }
}

@media (max-width: 900px) {
  nav[aria-label="Primary navigation"], .btn-book { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-stats { display: flex; flex-wrap: wrap; }
  .hero-stat   { min-width: 50%; }
  .location-grid { grid-template-columns: 1fr; }
  .map-frame { position: static; aspect-ratio: 4/3; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-wrap.has-sidebar-right,
  .blog-wrap.has-sidebar-left,
  .single-wrap.has-sidebar-right,
  .single-wrap.has-sidebar-left { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .has-sidebar-right .sidebar { order: 2; }
  .post-nav { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .attractions-grid { grid-template-columns: 1fr; }
  .attraction-card.featured { grid-column: auto; }
  .facilities-grid { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; }
  .facility-card { min-width: 140px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .booking-cards { gap: var(--sp-3); }
  .cols-3 { grid-template-columns: repeat(2,1fr); }
  .about-image-wrap::before, .about-image-wrap::after { display: none; }
  .post-card-list { flex-direction: column; }
  .post-card-list .post-thumb { flex: none; aspect-ratio: 16/9; }
  .bv-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --sp-6: 1.25rem; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  /* facilities handled above */
  .hero-content h1  { font-size: clamp(2.4rem, 10vw, 5rem); }
  .hero-cta         { flex-direction: column; align-items: center; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .booking-cards    { flex-direction: column; align-items: stretch; }
  .section-heading  { font-size: clamp(1.8rem, 8vw, 3rem); }
}

/* ============================================================
   25. PRINT
   ============================================================ */
@media print {
  .bvh-topbar-left  { display: none; }
  .bvh-topbar-center{ display: none; }
  .bvh-topbar-inner { justify-content: flex-end; }
  .has-topbar .site-header { top: 38px; }
  .site-header, .mobile-nav, .hero-scroll,
  .promo-parallax, .booking-section, .site-footer { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: .75em; color: #555; }
  .container { max-width: 100%; padding: 0; }
}

/* ============================================================
   26. SHARE BAR
   ============================================================ */
.share-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: var(--sp-2); margin-bottom: var(--sp-8);
}
.share-label {
  font-size: var(--text-xs); font-weight: 700; color: var(--c-text-muted);
  text-transform: uppercase; letter-spacing: .08em; margin-right: var(--sp-2);
}
.share-btn {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 600;
  transition: opacity var(--ease), transform var(--ease);
  color: #fff; text-decoration: none;
}
.share-btn:hover { opacity: .85; transform: translateY(-1px); }
.share-twitter  { background: #000; }
.share-facebook { background: #1877f2; }
.share-whatsapp { background: #25d366; }

/* ============================================================
   27. RELATED POSTS
   ============================================================ */
.related-posts .post-card .post-thumb img { height: 180px; width: 100%; object-fit: cover; }
.related-posts h3 { border-bottom: 2px solid var(--c-primary); padding-bottom: .5rem; display: inline-block; }

/* ============================================================
   28. COMMENTS EXTRA
   ============================================================ */
.comment-reply-wrap a {
  font-size: var(--text-xs); color: var(--c-primary); font-weight: 600;
  text-decoration: none; padding: 2px 8px; border: 1px solid var(--c-primary);
  border-radius: var(--r-full); transition: background var(--ease), color var(--ease);
}
.comment-reply-wrap a:hover { background: var(--c-primary); color: #fff; }
.comment-pagination { display: flex; gap: .5rem; margin-top: 1.5rem; }
.comment-pagination a, .comment-pagination span {
  padding: .35rem .75rem; border-radius: var(--r-md); border: 1px solid var(--c-border);
  font-size: var(--text-sm);
}
.comment-pagination a:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ============================================================
   29. SEARCH FORM
   ============================================================ */
.search-form { display: flex; }
.search-form input {
  flex: 1; padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--c-border); border-right: none;
  border-radius: var(--r-md) 0 0 var(--r-md);
  font-size: var(--text-sm); background: #fff; color: var(--c-text);
}
.search-form input:focus { outline: none; border-color: var(--c-primary); }
.search-form button {
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-primary); color: #fff;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: var(--text-sm); font-weight: 600; white-space: nowrap;
  transition: background var(--ease);
}
.search-form button:hover { background: var(--c-primary-h); }

/* ============================================================
   30. CONTACT PAGE STYLES
   ============================================================ */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   31. WOOCOMMERCE
   ============================================================ */
.woo-wrap {
  display: grid; grid-template-columns: 1fr 260px; gap: var(--sp-10);
}
@media (max-width: 900px) {
  .woo-wrap { grid-template-columns: 1fr; }
}
.woocommerce .woocommerce-result-count { font-size: var(--text-sm); color: var(--c-text-muted); }
.woocommerce ul.products li.product a img { border-radius: var(--r-lg); }
.woocommerce div.product .price { color: var(--c-primary); font-family: var(--font-display); font-size: var(--text-xl); }

/* ============================================================
   32. BLOCK EDITOR ALIGNMENT
   ============================================================ */
.entry-content .alignwide  { margin-left: -4vw; margin-right: -4vw; }
.entry-content .alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.entry-content .wp-block-image figcaption { font-size: var(--text-xs); color: var(--c-text-muted); text-align: center; margin-top: .5rem; }
.entry-content .wp-block-pullquote {
  border-top: 4px solid var(--c-gold); border-bottom: 4px solid var(--c-gold);
  padding: var(--sp-8) 0; text-align: center; margin: var(--sp-8) 0;
}
.entry-content .wp-block-pullquote p { font-family: var(--font-display); font-size: var(--text-2xl); font-style: italic; }
.entry-content .wp-block-quote { 
  border-left: 4px solid var(--c-gold); padding: var(--sp-4) var(--sp-6);
  background: var(--c-gold-lt); border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--sp-6) 0;
}
.entry-content .wp-block-separator { border-color: var(--c-border); margin: var(--sp-8) 0; }
.entry-content .wp-block-table td, 
.entry-content .wp-block-table th {
  border: 1px solid var(--c-border); padding: var(--sp-3) var(--sp-4);
}
.entry-content .wp-block-table thead { background: var(--c-primary-lt); }

/* ============================================================
   33. ACCESSIBILITY ENHANCEMENTS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* High contrast mode */
@media (forced-colors: active) {
  .btn { border: 2px solid ButtonText; }
  .hero-overlay { background: rgba(0,0,0,.7); }
}

/* ============================================================
   34. CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--c-surface-3); }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--c-text-faint); }

/* ============================================================
   35. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-0  { margin-top: 0; }
.mb-0  { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.hidden  { display: none !important; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.truncate { overflow:hidden;text-overflow:ellipsis;white-space:nowrap; }
.aspect-video { aspect-ratio: 16/9; }
.aspect-square{ aspect-ratio: 1; }
.rounded-full { border-radius: var(--r-full); }
.w-full  { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
