/* =============================================
   VILLA HIRIKETIYA — MAIN STYLESHEET v2
   ============================================= */

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

:root {
  --teal:        #00b8a0;
  --teal-dark:   #009b87;
  --teal-light:  #e0f7f4;
  --dark:        #111;
  --mid:         #666;
  --light:       #f6f5f3;
  --white:       #ffffff;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
  --radius:      50px;
  --shadow:      0 12px 40px rgba(0,0,0,0.08);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

/* ── ADMIN BAR FIX ── */
.admin-bar .vh-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .vh-header { top: 46px; }
}

/* =============================================
   HEADER
   ============================================= */
.vh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0 48px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.vh-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.06);
  padding: 0 48px;
}
.vh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Nav links */
.vh-nav { display: flex; gap: 36px; align-items: center; }
.vh-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.vh-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--teal);
  transition: width var(--transition);
}
.vh-nav a:hover::after,
.vh-nav a.active::after { width: 100%; }
.vh-header.scrolled .vh-nav a { color: var(--dark); }
.vh-nav a:hover, .vh-nav a.active { color: var(--teal); }

.vh-nav__cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 11px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.vh-nav__cta::after { display: none; }
.vh-nav__cta:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,184,160,0.35);
}

/* Logo */
.vh-logo { flex-shrink: 0; }
.vh-logo img { height: 72px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }
.vh-logo__text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--teal);
}

/* Mobile */
.vh-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.vh-mobile-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.vh-header.scrolled .vh-mobile-toggle span { background: var(--dark); }
.vh-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 48px 24px;
  border-top: 1px solid #eee;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.vh-mobile-menu a {
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vh-mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.vh-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vh-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.vh-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.32) 50%,
    rgba(0,0,0,0.55) 100%
  );
}
.vh-hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  z-index: 2;
  padding: 0 20px;
  animation: heroFadeUp 1.2s ease both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vh-hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
  display: block;
}
.vh-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vh-hero__location {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 40px;
  display: block;
}
.vh-hero__actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

.vh-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.vh-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.4);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}
.vh-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.vh-hero__wave svg { display: block; width: 100%; }

/* =============================================
   BUTTONS
   ============================================= */
.vh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
}
.vh-btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.vh-btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,184,160,0.4);
}
.vh-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.vh-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.vh-btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.vh-btn--outline:hover { background: var(--teal); color: var(--white); }
.vh-btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.vh-btn--dark:hover { background: #2a2a2a; color: var(--white); transform: translateY(-2px); }

/* =============================================
   SECTIONS
   ============================================= */
.vh-section { padding: 100px 48px; }
.vh-section--light { background: var(--light); }
.vh-section--dark { background: var(--dark); color: var(--white); }
.vh-section--teal { background: var(--teal); color: var(--white); }

.vh-container { max-width: 1140px; margin: 0 auto; }

.vh-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.vh-section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}
.vh-section--dark .vh-section-title,
.vh-section--teal .vh-section-title { color: var(--white); }
.vh-section-intro {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.9;
}
.vh-section-intro.center { max-width: 600px; margin: 0 auto; text-align: center; }
.vh-text-center { text-align: center; }

/* Full-width image break */
.vh-image-break {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
}
.vh-image-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vh-image-break__text {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-style: italic;
  text-align: center;
  font-weight: 400;
  padding: 0 20px;
}

/* =============================================
   PROMO / HOTEL HIRIKETIYA
   ============================================= */
.vh-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vh-promo__image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vh-promo__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.vh-promo__image:hover img { transform: scale(1.03); }
.vh-promo__image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.4;
}
.vh-promo__list {
  list-style: none;
  margin: 24px 0 32px;
}
.vh-promo__list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: var(--mid);
  font-size: 15px;
  border-bottom: 1px solid #efefef;
  line-height: 1.6;
}
.vh-promo__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.vh-promo__qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  background: var(--light);
  border-radius: 12px;
}
.vh-promo__qr img { width: 72px; height: 72px; border-radius: 8px; flex-shrink: 0; }
.vh-promo__qr-text { font-size: 13px; color: var(--mid); line-height: 1.6; }
.vh-promo__qr-text a { color: var(--teal); font-weight: 600; }

/* =============================================
   ABOUT
   ============================================= */
.vh-about__text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.vh-about__text p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.95;
  margin-bottom: 24px;
}
.vh-about__text .tagline {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--teal);
  font-style: italic;
  font-weight: 400;
  margin-top: 8px;
  display: block;
}
.vh-about__rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.vh-room-badge {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.vh-room-badge__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.vh-room-badge__detail { font-size: 13px; color: var(--mid); }

/* =============================================
   AMENITIES
   ============================================= */
.vh-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vh-amenity {
  text-align: center;
  padding: 48px 32px 40px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.vh-amenity:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--teal);
}
.vh-amenity__icon {
  width: 68px; height: 68px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.vh-amenity h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}
.vh-amenity__features { list-style: none; }
.vh-amenity__features li {
  color: var(--mid);
  font-size: 14px;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
  letter-spacing: 0.02em;
}
.vh-amenity__features li:last-child { border-bottom: none; }

/* =============================================
   PRICING
   ============================================= */
.vh-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.vh-price-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid #ebebeb;
  transition: all var(--transition);
  position: relative;
}
.vh-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vh-price-card--featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, #f0fffe 0%, var(--white) 100%);
}
.vh-price-card__season {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.vh-price-card__label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.vh-price-card__dates {
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 24px;
}
.vh-price-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.vh-price-card__price span { font-size: 1rem; font-weight: 400; color: var(--mid); font-family: var(--font-sans); }
.vh-price-card__divider { height: 1px; background: #eee; margin: 20px 0; }
.vh-price-card__family { font-size: 14px; color: var(--mid); }
.vh-price-card__family strong { color: var(--dark); }
.vh-pricing-notes { text-align: center; margin-top: 32px; }
.vh-pricing-notes p { font-size: 13px; color: #999; margin-bottom: 5px; }

/* =============================================
   CONTACT
   ============================================= */
.vh-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vh-contact__info h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 32px;
  font-weight: 600;
}
.vh-contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.vh-contact__icon { font-size: 22px; margin-top: 1px; flex-shrink: 0; }
.vh-contact__detail strong { color: var(--dark); display: block; margin-bottom: 4px; }
.vh-form-group { margin-bottom: 20px; }
.vh-form-group input,
.vh-form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.vh-form-group input:focus,
.vh-form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,184,160,0.1);
}
.vh-form-group textarea { min-height: 150px; resize: vertical; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.vh-page-hero {
  padding: 160px 48px 80px;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vh-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,184,160,0.15) 0%, transparent 70%);
}
.vh-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.vh-page-hero p {
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.vh-page-hero::after {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: var(--teal);
  margin: 20px auto 0;
  position: relative;
  z-index: 1;
}

.vh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 6px;
  background: #111;
}
.vh-gallery-item {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: #222;
  position: relative;
}
.vh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  opacity: 0.9;
}
.vh-gallery-item:hover img { transform: scale(1.1); opacity: 1; }
.vh-gallery-item::after {
  content: '⤢';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: rgba(0,184,160,0.0);
  transition: background var(--transition);
  pointer-events: none;
}
.vh-gallery-item:hover::after { background: rgba(0,0,0,0.2); }
/* Larger first item */
.vh-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Lightbox */
.vh-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.vh-lightbox.open { display: flex; }
.vh-lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.vh-lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 32px;
  cursor: pointer;
  background: none; border: none;
  transition: color var(--transition);
  line-height: 1;
}
.vh-lightbox__close:hover { color: var(--white); }
.vh-lightbox__prev,
.vh-lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 36px;
  cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.vh-lightbox__prev:hover,
.vh-lightbox__next:hover { background: rgba(0,184,160,0.3); color: white; border-color: var(--teal); }
.vh-lightbox__prev { left: 24px; }
.vh-lightbox__next { right: 24px; }

/* =============================================
   BOOK NOW PAGE
   ============================================= */
.vh-booking-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 48px 0;
  text-align: center;
}
.vh-booking-intro p { color: #c0392b; font-size: 14px; margin-bottom: 8px; }
.vh-booking-intro .policy {
  font-size: 13px;
  color: var(--mid);
  font-style: italic;
  padding: 16px;
  background: var(--light);
  border-radius: 8px;
  margin-top: 16px;
}
.vh-booking-frames { padding: 48px; max-width: 1060px; margin: 0 auto; }
.vh-booking-frame { margin-bottom: 32px; }
.vh-booking-frame iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* =============================================
   MAP
   ============================================= */
.vh-map iframe { width: 100%; height: 440px; border: none; display: block; }

/* =============================================
   FOOTER
   ============================================= */
.vh-footer {
  background: #0d0d0d;
  color: #666;
  padding: 72px 48px 36px;
  text-align: center;
}
.vh-footer__inner { max-width: 800px; margin: 0 auto; }
.vh-footer__logo { margin-bottom: 32px; }
.vh-footer__logo img { height: 64px; margin: 0 auto; opacity: 0.6; filter: brightness(2); }
.vh-footer__links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}
.vh-footer__links a {
  color: #555;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.vh-footer__links a:hover { color: var(--teal); }
.vh-footer__contact p { font-size: 14px; margin-bottom: 6px; color: #555; }
.vh-footer__copy {
  margin-top: 40px;
  font-size: 12px;
  border-top: 1px solid #1e1e1e;
  padding-top: 28px;
  color: #444;
  letter-spacing: 0.05em;
}

/* =============================================
   UTILITIES
   ============================================= */
.vh-divider { height: 1px; background: #e8e8e8; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .vh-promo { grid-template-columns: 1fr; gap: 48px; }
  .vh-promo__image img { height: 360px; }
  .vh-contact { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .vh-header { padding: 0 24px; }
  .vh-nav--left, .vh-nav--right { display: none; }
  .vh-mobile-toggle { display: flex; }
  .vh-mobile-menu { padding: 16px 24px 24px; }
  .vh-section { padding: 72px 24px; }
  .vh-amenities { grid-template-columns: 1fr; gap: 20px; }
  .vh-pricing { grid-template-columns: 1fr; }
  .vh-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-gallery-item:first-child { grid-column: span 2; }
  .vh-page-hero { padding: 130px 24px 60px; }
  .vh-booking-frames, .vh-booking-intro { padding-left: 24px; padding-right: 24px; }
  .vh-footer { padding: 56px 24px 28px; }
  .vh-footer__links { gap: 20px; flex-wrap: wrap; }
  .vh-about__rooms { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .vh-hero__title { font-size: 2.2rem; letter-spacing: 0.06em; }
  .vh-gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
  .vh-gallery-item:first-child { grid-column: span 2; }
}

/* =============================================
   BOOKING SECTION (1-PAGER)
   ============================================= */
.vh-booking-rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.vh-booking-room {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.07);
}
.vh-booking-room__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.vh-booking-room__iframe {
  position: relative;
  min-height: 480px;
}
.vh-booking-room__iframe iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  border: none;
}
.vh-booking-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  color: var(--mid);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  background: #fafafa;
}
.vh-booking-placeholder a { color: var(--teal); }
/* Hide placeholder when iframe has a src */
.vh-booking-room__iframe iframe[src]:not([src=""]) + .vh-booking-placeholder { display: none; }

@media (max-width: 900px) {
  .vh-booking-rooms { grid-template-columns: 1fr; }
}

/* =============================================
   GALLERY SLIDER (SWIPER)
   ============================================= */
#gallery { padding-bottom: 0; }
#gallery .vh-container { margin-bottom: 40px; }

.vh-gallery-slider {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 780px;
  background: #000;
}
.vh-gallery-slide {
  overflow: hidden;
}
.vh-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.vh-gallery-slider .swiper-slide-active img {
  transform: scale(1.02);
}

/* Custom nav arrows */
.vh-swiper-prev,
.vh-swiper-next {
  color: var(--white) !important;
  background: rgba(0,0,0,0.35);
  width: 52px !important;
  height: 52px !important;
  border-radius: 50%;
  transition: background var(--transition);
}
.vh-swiper-prev:hover,
.vh-swiper-next:hover {
  background: rgba(0,184,160,0.85) !important;
}
.vh-swiper-prev::after,
.vh-swiper-next::after {
  font-size: 18px !important;
  font-weight: 700;
}

/* Pagination bullets */
.vh-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
  width: 8px; height: 8px;
}
.vh-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* Thumbnail strip */
.vh-gallery-thumbs {
  height: 88px;
  padding: 8px 0;
  background: #111;
}
.vh-gallery-thumb {
  width: 120px !important;
  height: 72px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity var(--transition);
  border-radius: 4px;
}
.vh-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vh-gallery-thumb.swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .vh-gallery-slider { height: 55vw; min-height: 260px; }
  .vh-gallery-thumbs { height: 64px; }
  .vh-gallery-thumb { width: 88px !important; height: 50px; }
}
