/*
  Theme Name: Tower 15 Suites × HostHub
  Theme URI:  https://tower15suites.gr
  Author:     Tower 15 Suites / Webrya
  Version:    2.0.0
  Description: Mobile-First rewrite — base = 375px, min-width breakpoints
  Breakpoints:
    sm:  @media (min-width: 480px)
    md:  @media (min-width: 768px)
    lg:  @media (min-width: 1024px)
    xl:  @media (min-width: 1280px)
*/

/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-300.woff2') format('woff2'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-300italic.woff2') format('woff2'); font-weight:300; font-style:italic; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Ubuntu'; src:url('fonts/ubuntu-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }

:root {
  --gold:         #C9A961;
  --gold-light:   #DEC07C;
  --gold-dark:    #A8883E;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #2D2D2D;
  --charcoal-soft:#3D3D3D;
  --ivory:        #F8F4EE;
  --ivory-dark:   #EDE7DC;
  --white:        #FFFFFF;
  --smoke:        #F2EDE6;
  --text-main:    #1A1A1A;
  --text-muted:   #6B6257;
  --text-light:   #9A9188;
  --available:    #4A8C5C;
  --unavailable:  #C05050;
  --pending:      #C9A961;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  --font-display: 'Ubuntu', sans-serif;
  --font-body:    'Ubuntu', sans-serif;
  --container:    1200px;
  --radius-sm:    2px;
  --radius-md:    4px;
  --radius-lg:    8px;
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:     cubic-bezier(0, 0, 0.3, 1);
  --duration:     0.3s;

  /* Mobile touch target minimum */
  --touch-min:    44px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-weight: 300; color: var(--text-main); background: var(--ivory); line-height: 1.7; overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY — mobile-first (smaller base, grows at md+)
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 8vw, 4rem); }
h2 { font-size: clamp(1.5rem, 6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 4vw, 2rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: var(--space-md); }
.eyebrow { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md); /* 16px on mobile */
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--space-xl); }
}

/* ============================================================
   UTILITY CLASSES
   Mobile-first: hide-mobile = hidden on mobile, visible on desktop
                 hide-desktop = visible on mobile, hidden on desktop
   ============================================================ */
.hide-mobile  { display: none !important; }  /* hidden on mobile */
.hide-desktop { display: flex !important; }  /* visible on mobile (hamburger etc.) */

@media (min-width: 769px) {
  .hide-mobile  { display: flex !important; } /* show nav links, lang, book btn on desktop */
  .hide-desktop { display: none !important; } /* hide hamburger on desktop */
}

/* ============================================================
   HEADER — mobile first: just logo + hamburger
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: transparent !important; /* override any WP/theme default */
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
/* WordPress admin bar offset */
.admin-bar .site-header { top: 46px; }
@media (min-width: 782px) {
  .admin-bar .site-header { top: 32px; }
}
@media (min-width: 768px) {
  .site-header { padding: var(--space-md) 0; }
}
.site-header.scrolled {
  background: rgba(26,26,26,0.97) !important;
  box-shadow: 0 1px 0 rgba(201,169,97,0.2);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0 !important; /* reset admin bar offset when fixed */
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo .logo-img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .site-logo .logo-img { height: 72px; max-width: 200px; }
}
.site-logo:hover .logo-img { opacity: 0.85; }
.site-logo .logo-name, .site-logo .logo-sub { display: none; }

/* Desktop Nav Links — hidden on mobile, flex on desktop */
.site-nav, .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}
.site-nav a, .nav-links a {
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--duration) var(--ease);
  position: relative;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.site-nav a::after, .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease);
}
.site-nav a:hover, .nav-links a:hover { color: var(--white); }
.site-nav a:hover::after, .nav-links a:hover::after { width: 100%; }

/* Book Now button — desktop only */
.btn-book-header {
  padding: 10px 24px;
  min-height: var(--touch-min);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
  white-space: nowrap;
}
.btn-book-header:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Language switcher */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
.t15-lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 9px;
  min-height: var(--touch-min);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.t15-lang-btn:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.t15-lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

/* ============================================================
   HAMBURGER BUTTON — visible on mobile
   ============================================================ */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--touch-min);
  height: var(--touch-min);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  cursor: pointer;
  z-index: 1100;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE FULL-SCREEN MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.98);
  backdrop-filter: blur(12px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2rem);
  color: var(--white);
  padding: 16px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease;
}
.mobile-menu a:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-menu-book {
  margin-top: 28px;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  border-bottom: none;
  width: auto;
}
.mobile-menu .mobile-menu-book:hover { background: var(--gold-light); color: var(--charcoal); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  width: var(--touch-min); height: var(--touch-min);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.1); }
body.menu-open { overflow: hidden; }

/* Mobile lang */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-lang-switcher .t15-lang-btn { font-size: 0.85rem; padding: 10px 20px; border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); }
.lang-divider { color: rgba(255,255,255,0.2); font-size: 1rem; }

/* Mobile Giveaway link inside mobile menu */
.mobile-menu-giveaway {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(201,169,97,0.06));
  border: 1px solid rgba(201,169,97,0.25);
  border-bottom: none !important;
  color: var(--white) !important;
  border-radius: 4px;
  width: auto !important;
  text-align: left !important;
}
.mobile-menu-giveaway:hover { background: linear-gradient(135deg, rgba(201,169,97,0.2), rgba(201,169,97,0.1)) !important; }
.mmg-icon { font-size: 1.6rem; flex-shrink: 0; }
.mmg-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; font-family: var(--font-body); }
.mmg-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-family: var(--font-body); font-style: normal; }

/* ============================================================
   GIVEAWAY — POPUP + FLOATING BUTTON
   ============================================================ */
.gw-backdrop {
  display: none;
  position: fixed; inset: 0;
  z-index: 8000;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gw-backdrop--open { display: block; opacity: 1; }
.gw-noscroll { overflow: hidden; }

.gw-popup {
  position: fixed;
  /* Full screen on very small mobile */
  inset: 0;
  z-index: 8001;
  background: var(--charcoal);
  border: none;
  padding: 48px 24px 32px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(30px);
  box-shadow: none;
}
/* Centered card on larger screens */
@media (min-width: 480px) {
  .gw-popup {
    inset: auto;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -44%) scale(0.92);
    width: min(480px, 92vw);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(201,169,97,0.08), 0 40px 80px rgba(0,0,0,0.7), inset 0 1px 0 rgba(201,169,97,0.1);
    max-height: 92vh;
    display: block;
  }
  .gw-popup--open { transform: translate(-50%, -50%) scale(1) !important; }
}
.gw-popup--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gw-top-deco { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.gw-deco-line { flex: 1; height: 1px; max-width: 60px; background: linear-gradient(90deg, transparent, rgba(201,169,97,0.5)); }
.gw-deco-line:last-child { background: linear-gradient(90deg, rgba(201,169,97,0.5), transparent); }
.gw-deco-diamond { color: var(--gold); font-size: 10px; }

.gw-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  width: var(--touch-min); height: var(--touch-min);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.gw-close:hover { border-color: rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.08); }
.gw-eyebrow { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; opacity: 0.9; display: block; }
.gw-gift-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; filter: drop-shadow(0 0 20px rgba(201,169,97,0.4)); animation: giftBounce 2.5s ease-in-out infinite; }
@keyframes giftBounce { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(3deg); } }

.gw-title { font-family: var(--font-display); font-size: clamp(1.5rem, 5vw, 2.2rem); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.gw-title em { font-style: normal; color: var(--gold-light); font-weight: 400; }
.gw-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 22px; max-width: 340px; margin-left: auto; margin-right: auto; }
.gw-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.gw-divider span:not(.gw-div-star) { flex: 1; height: 1px; background: rgba(201,169,97,0.2); }
.gw-div-star { color: var(--gold); font-size: 10px; opacity: 0.7; }
.gw-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 40px;
  background: var(--gold); color: var(--charcoal);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 8px 28px rgba(201,169,97,0.35);
  min-height: var(--touch-min);
  width: 100%;
}
.gw-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,97,0.5); }
.gw-btn-arrow { transition: transform 0.2s ease; }
.gw-btn:hover .gw-btn-arrow { transform: translateX(5px); }
.gw-skip { display: block; margin-top: 14px; background: none; border: none; color: rgba(255,255,255,0.28); font-size: 0.72rem; letter-spacing: 0.08em; cursor: pointer; transition: color 0.2s ease; width: 100%; text-align: center; padding: 8px; min-height: var(--touch-min); }
.gw-skip:hover { color: rgba(255,255,255,0.55); }

/* Floating Button */
.gw-float {
  position: fixed;
  bottom: 20px; right: 16px;
  z-index: 7000;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 12px 12px;
  background: var(--charcoal);
  border: 1px solid rgba(201,169,97,0.35);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55);
  transition: all 0.3s ease;
  border-radius: 2px;
  max-width: calc(100vw - 32px); /* prevent overflow on narrow screens */
}
@media (min-width: 768px) {
  .gw-float { bottom: 28px; right: 24px; }
}
.gw-float:hover { background: var(--charcoal-mid); border-color: var(--gold); transform: translateY(-3px); }
.gw-float-icon { font-size: 1.3rem; flex-shrink: 0; }
.gw-float-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); line-height: 1; margin-bottom: 2px; }
.gw-float-sub { font-size: 0.68rem; color: rgba(255,255,255,0.55); white-space: nowrap; }
.gw-float-pulse { position: absolute; top: -4px; right: -4px; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; border: 2px solid var(--charcoal); }
.gw-float-pulse::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--gold); animation: pulseRing 2s ease-out infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.4); opacity: 0; } }
.gw-noscroll .gw-float { opacity: 0; pointer-events: none; }

/* ============================================================
   HERO — mobile first
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden; /* CRITICAL: contain video/bg */
  background: var(--charcoal);
  padding-bottom: 60px;
  width: 100%; /* prevent overflow */
  max-width: 100vw;
}
@media (min-width: 768px) {
  .hero { align-items: center; padding-bottom: 0; }
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: var(--hero-bg-url);
  background-size: cover;
  background-position: center 60%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero.loaded .hero-bg { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.3) 50%, rgba(26,26,26,0.82) 100%);
}

.hero-video { position: absolute; top:0; left:0; width:100%; height:100%; z-index:0; object-fit:cover; object-position:center; }
.hero-video-desktop { display: none; }
.hero-video-mobile  { display: block; }
@media (min-width: 769px) {
  .hero-video-desktop { display: block; }
  .hero-video-mobile  { display: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  width: 100%; /* full width on mobile */
  max-width: 700px;
  animation: heroReveal 1.2s var(--ease-out) forwards;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.3);
}
@keyframes heroReveal { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

.hero-content .eyebrow { display: block; margin-bottom: var(--space-md); animation: heroReveal 1.2s 0.2s var(--ease-out) both; }
.hero-content h1 { color: var(--white); font-weight: 400; font-style: italic; margin-bottom: var(--space-md); animation: heroReveal 1.2s 0.3s var(--ease-out) both; }
.hero-content h1 em { font-style: normal; color: var(--gold-light); }
.hero-content p { font-size: 0.9rem; color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: var(--space-lg); animation: heroReveal 1.2s 0.5s var(--ease-out) both; }
@media (min-width: 768px) { .hero-content p { font-size: 1rem; margin-bottom: var(--space-xl); } }

.hero-cta {
  display: flex;
  flex-direction: column; /* stack on mobile */
  gap: var(--space-md);
  animation: heroReveal 1.2s 0.6s var(--ease-out) both;
}
@media (min-width: 480px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 14px 28px;
  min-height: var(--touch-min);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  transition: all var(--duration) var(--ease);
  border: none; position: relative; overflow: hidden;
  justify-content: center;
  width: 100%; /* full width on mobile */
}
@media (min-width: 480px) {
  .btn { width: auto; padding: 14px 32px; }
}
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: transform 0.4s var(--ease); }
.btn:hover::before { transform: translateX(0); }
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,97,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 12px 28px; }
.btn-ghost:hover { background: var(--gold); color: var(--charcoal); }

/* ============================================================
   QUICK BOOKING BAR — stacked on mobile, row on desktop
   ============================================================ */
.quick-booking-bar {
  background: var(--white);
  border-bottom: 1px solid var(--ivory-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: relative;
  z-index: 100;
}
.quick-booking-bar .container {
  display: flex;
  flex-direction: column; /* stack on mobile */
}
@media (min-width: 768px) {
  .quick-booking-bar .container { flex-direction: row; align-items: stretch; gap: 0; }
}

.qb-field {
  padding: 14px var(--space-md);
  border-bottom: 1px solid var(--ivory-dark); /* separator between stacked items */
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}
@media (min-width: 768px) {
  .qb-field { flex: 1; padding: var(--space-md) var(--space-lg); border-bottom: none; border-right: 1px solid var(--ivory-dark); }
}
.qb-field:hover { background: var(--smoke); }
.qb-field label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.qb-field input, .qb-field select { background: transparent; border: none; outline: none; font-size: 0.95rem; color: var(--charcoal); font-weight: 400; width: 100%; appearance: none; min-height: 32px; }

.qb-price-display {
  padding: 12px var(--space-md);
  display: flex; flex-direction: column; gap: 4px;
  border-bottom: 1px solid var(--ivory-dark);
}
@media (min-width: 768px) {
  .qb-price-display { padding: var(--space-md) var(--space-lg); border-bottom: none; border-left: 1px solid var(--ivory-dark); min-width: 140px; justify-content: center; }
}
.qb-price-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.qb-price-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--gold-dark); line-height: 1; }
.qb-price-amount .currency { font-size: 0.9rem; }

.qb-submit {
  padding: 16px var(--space-xl);
  min-height: var(--touch-min);
  background: var(--charcoal);
  color: var(--white);
  border: none;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  .qb-submit { min-width: 160px; width: auto; }
}
.qb-submit:hover { background: var(--gold-dark); }

/* ============================================================
   SECTIONS BASE
   ============================================================ */
.section { padding: var(--space-2xl) 0; }
@media (min-width: 768px) { .section { padding: var(--space-3xl) 0; } }

.section-header { text-align: center; margin-bottom: var(--space-xl); }
@media (min-width: 768px) { .section-header { margin-bottom: var(--space-2xl); } }
.section-header .eyebrow { display: block; margin-bottom: var(--space-md); }
.section-header h2 { font-weight: 400; font-style: italic; margin-bottom: var(--space-md); }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 0.95rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   FEATURES — 1-col → 2-col → 4-col
   ============================================================ */
.features-section {
  background: var(--charcoal);
  padding: var(--space-2xl) 0;
  color: var(--white);
}
@media (min-width: 768px) { .features-section { padding: var(--space-3xl) 0; } }

.features-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 col */
  gap: var(--space-xl);
}
@media (min-width: 600px) { .features-grid { grid-template-columns: repeat(2,1fr); gap: var(--space-2xl); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4,1fr); } }

.feature-item { text-align: center; }
.feature-icon { width: 48px; height: 48px; margin: 0 auto var(--space-lg); color: var(--gold); }
.feature-item h4 { color: var(--white); font-size: 1.1rem; font-weight: 400; margin-bottom: var(--space-sm); }
.feature-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* ============================================================
   ROOMS — 1-col → 2-col → 3-col
   ============================================================ */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 col */
  gap: var(--space-lg);
}
@media (min-width: 640px) { .rooms-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .rooms-grid { grid-template-columns: repeat(3,1fr); } }

.room-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
}
/* No hover lift on touch devices — only on pointer:fine */
@media (hover: hover) and (pointer: fine) {
  .room-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
}
.room-card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ivory-dark); }
.room-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
@media (hover: hover) { .room-card:hover .room-card-image img { transform: scale(1.05); } }
.room-card-badge { position: absolute; top: var(--space-md); left: var(--space-md); background: var(--charcoal); color: var(--gold); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 12px; }
.room-card-availability { position: absolute; top: var(--space-md); right: var(--space-md); width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.8); }
.room-card-availability.available   { background: var(--available); }
.room-card-availability.unavailable { background: var(--unavailable); }
.room-card-availability.loading     { background: var(--pending); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.room-card-body { padding: var(--space-md) var(--space-lg); }
@media (min-width: 768px) { .room-card-body { padding: var(--space-lg) var(--space-xl); } }
.room-card-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: var(--space-sm); line-height: 1.3; }
.room-card-meta { display: flex; gap: var(--space-md); margin-bottom: var(--space-md); flex-wrap: wrap; }
.room-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--text-muted); }
.room-meta-item svg { width: 14px; height: 14px; opacity: 0.6; }
.room-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-lg); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.room-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-md); border-top: 1px solid var(--ivory-dark); }
.room-price { display: flex; flex-direction: column; gap: 2px; }
.room-price-label { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.room-price-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--charcoal); line-height: 1; }
.room-price-amount .currency { font-size: 1rem; vertical-align: super; font-style: normal; }
.btn-view-room { padding: 10px 18px; min-height: var(--touch-min); background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all var(--duration) var(--ease); }
.btn-view-room:hover { background: var(--charcoal); color: var(--gold); }

/* Skeleton */
.room-card.skeleton .room-card-image,
.room-card.skeleton .room-card-name,
.room-card.skeleton .room-card-desc,
.room-card.skeleton .room-price-amount { background: linear-gradient(90deg, var(--ivory-dark) 25%, var(--smoke) 50%, var(--ivory-dark) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 2px; color: transparent; }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ============================================================
   ROOM MODAL — full-screen on mobile, split on desktop
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.85);
  z-index: 2000;
  display: flex;
  align-items: flex-start; /* scroll from top on mobile */
  justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--duration) var(--ease);
  padding: 0; /* no padding on mobile — full screen */
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .modal-overlay { align-items: center; padding: var(--space-lg); }
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  width: 100%; /* full width on mobile */
  max-width: 100%;
  min-height: 100vh; /* full height on mobile */
  max-height: 100vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.98);
  transition: transform var(--duration) var(--ease);
  position: relative;
}
@media (min-width: 768px) {
  .modal { max-width: 1000px; min-height: auto; max-height: 90vh; border-radius: var(--radius-md); }
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: sticky; /* sticky on mobile so always visible when scrolling */
  top: 0; right: 0;
  float: right;
  margin: var(--space-sm) var(--space-sm) 0 0;
  z-index: 10;
  width: var(--touch-min); height: var(--touch-min);
  background: var(--charcoal); color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  font-size: 1.2rem;
  border-radius: var(--radius-md);
}
@media (min-width: 768px) {
  .modal-close { position: absolute; top: var(--space-md); right: var(--space-md); float: none; margin: 0; border-radius: 0; }
}
.modal-close:hover { background: var(--gold-dark); }

.modal-layout {
  display: grid;
  grid-template-columns: 1fr; /* stacked on mobile */
}
@media (min-width: 1024px) {
  .modal-layout { grid-template-columns: 1fr 400px; } /* side by side on desktop */
}

.modal-gallery { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--charcoal); }
@media (min-width: 1024px) { .modal-gallery { aspect-ratio: 1; } }
.modal-gallery img { width: 100%; height: 100%; object-fit: cover; }

.modal-content { padding: var(--space-md); overflow-y: auto; }
@media (min-width: 768px) { .modal-content { padding: var(--space-xl); max-height: 90vh; } }

.modal-room-title { font-size: 1.5rem; margin-bottom: var(--space-sm); line-height: 1.2; }
@media (min-width: 768px) { .modal-room-title { font-size: 2rem; } }
.modal-room-meta { display: flex; gap: var(--space-md); margin-bottom: var(--space-lg); flex-wrap: wrap; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.amenity-tag { padding: 5px 12px; background: var(--smoke); font-size: 0.75rem; color: var(--text-muted); border: 1px solid var(--ivory-dark); }

/* Modal gallery arrows */
.modal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: var(--touch-min); height: var(--touch-min);
  background: rgba(26,26,26,0.7); color: var(--white);
  border: none; border-radius: 50%;
  font-size: 24px; cursor: pointer; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-arrow:hover { background: rgba(201,169,97,0.8); }
.modal-prev { left: 12px; }
.modal-next { right: 12px; }
.modal-img-counter { position: absolute; bottom: 12px; right: 14px; background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; padding: 3px 9px; border-radius: 20px; }
.modal-thumbnails { display: flex; gap: 6px; padding: 8px 0 4px; overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.modal-thumb { width: 60px; height: 44px; object-fit: cover; border-radius: 3px; cursor: pointer; opacity: 0.55; border: 2px solid transparent; flex-shrink: 0; transition: opacity 0.2s, border-color 0.2s; }
.modal-thumb.active, .modal-thumb:hover { opacity: 1; border-color: var(--gold); }

/* ============================================================
   CALENDAR
   ============================================================ */
.calendar-section { margin-bottom: var(--space-xl); }
.calendar-section h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 400; margin-bottom: var(--space-md); color: var(--charcoal); display: flex; align-items: center; justify-content: space-between; }
.calendar-nav { display: flex; gap: var(--space-sm); }
.calendar-nav button { width: var(--touch-min); height: var(--touch-min); background: transparent; border: 1px solid var(--ivory-dark); color: var(--charcoal); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.8rem; transition: all var(--duration) var(--ease); border-radius: var(--radius-sm); }
.calendar-nav button:hover { background: var(--charcoal); color: var(--gold); border-color: var(--charcoal); }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.calendar-day-header { text-align: center; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); padding: var(--space-sm) 0; }
.calendar-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; cursor: pointer; border: 1px solid transparent; transition: all var(--duration) var(--ease); position: relative; font-weight: 300; min-height: 36px; }
.calendar-day.empty { cursor: default; }
.calendar-day.available { background: rgba(74,140,92,0.08); color: var(--charcoal); }
.calendar-day.available:hover { background: var(--gold); color: var(--charcoal); font-weight: 500; }
.calendar-day.unavailable { background: rgba(192,80,80,0.07); color: var(--unavailable); cursor: not-allowed; text-decoration: line-through; opacity: 0.6; }
.calendar-day.today { border-color: var(--gold); font-weight: 600; }
.calendar-day.selected { background: var(--gold) !important; color: var(--charcoal) !important; font-weight: 600; }
.calendar-day.in-range { background: rgba(201,169,97,0.2) !important; color: var(--charcoal) !important; }
.calendar-day.past { color: var(--text-light); cursor: not-allowed; opacity: 0.4; }
.calendar-legend { display: flex; gap: var(--space-md); margin-top: var(--space-sm); }
.legend-item { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: var(--text-muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.available   { background: var(--available); }
.legend-dot.unavailable { background: var(--unavailable); }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-form-wrapper { background: var(--smoke); padding: var(--space-md); margin-top: var(--space-lg); }
@media (min-width: 768px) { .booking-form-wrapper { padding: var(--space-lg); } }
.booking-form-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: var(--space-lg); color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-md); }
.form-group label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { padding: 14px var(--space-md); min-height: var(--touch-min); background: var(--white); border: 1px solid var(--ivory-dark); color: var(--charcoal); font-size: 1rem; /* 16px to prevent iOS zoom */ outline: none; transition: border-color var(--duration) var(--ease); width: 100%; }
@media (min-width: 768px) { .form-group input, .form-group select, .form-group textarea { font-size: 0.9rem; padding: 12px var(--space-md); } }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,97,0.1); }
.form-group input.error { border-color: var(--unavailable); }
.form-error-text { font-size: 0.75rem; color: var(--unavailable); }

/* Price Summary */
.price-summary { background: var(--charcoal); color: var(--white); padding: var(--space-lg); margin: var(--space-lg) 0; }
.price-summary-row { display: flex; justify-content: space-between; align-items: center; padding: var(--space-sm) 0; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.price-summary-row.total { border-top: 1px solid rgba(255,255,255,0.15); margin-top: var(--space-sm); padding-top: var(--space-md); font-size: 1rem; font-weight: 500; color: var(--white); }
.price-summary-row.total .amount { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); }

.btn-book-now { width: 100%; padding: 18px; min-height: var(--touch-min); background: var(--gold); color: var(--charcoal); font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; transition: all var(--duration) var(--ease); display: flex; align-items: center; justify-content: center; gap: var(--space-sm); position: relative; overflow: hidden; }
.btn-book-now:hover:not(:disabled) { background: var(--gold-light); box-shadow: 0 8px 32px rgba(201,169,97,0.4); }
.btn-book-now:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-book-now .spinner { width: 16px; height: 16px; border: 2px solid rgba(26,26,26,0.3); border-top-color: var(--charcoal); border-radius: 50%; animation: spin 0.8s linear infinite; display: none; }
.btn-book-now.loading .spinner { display: block; }
.btn-book-now.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.booking-message { padding: var(--space-md) var(--space-lg); margin-top: var(--space-md); font-size: 0.9rem; display: none; }
.booking-message.success { background: rgba(74,140,92,0.1); border-left: 3px solid var(--available); color: #2d6b3e; display: block; }
.booking-message.error { background: rgba(192,80,80,0.1); border-left: 3px solid var(--unavailable); color: var(--unavailable); display: block; }

/* ============================================================
   ABOUT — stacked on mobile, side by side on desktop
   ============================================================ */
.about-section { padding: var(--space-2xl) 0; background: var(--ivory); }
@media (min-width: 768px) { .about-section { padding: var(--space-3xl) 0; } }

.about-layout {
  display: grid;
  grid-template-columns: 1fr; /* mobile: image above text */
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 1024px) { .about-layout { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); } }

.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (min-width: 1024px) { .about-image img { aspect-ratio: 4/5; } }
.about-image::before { content: ''; position: absolute; inset: -8px 8px 8px -8px; border: 1px solid var(--gold); z-index: -1; }
@media (min-width: 768px) { .about-image::before { inset: -12px 12px 12px -12px; } }

.about-content .eyebrow { display: block; margin-bottom: var(--space-md); }
.about-content h2 { font-weight: 400; font-style: italic; margin-bottom: var(--space-lg); }
.about-content p { color: var(--text-muted); font-size: 0.95rem; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-md); margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--ivory-dark); }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--gold-dark); line-height: 1; display: block; margin-bottom: 4px; }
@media (min-width: 768px) { .stat-number { font-size: 2.5rem; } }
.stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS — 1-col → 2-col → 3-col
   ============================================================ */
.testimonials-section { background: var(--smoke); padding: var(--space-2xl) 0; }
@media (min-width: 768px) { .testimonials-section { padding: var(--space-3xl) 0; } }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card { background: var(--white); padding: var(--space-lg); position: relative; }
@media (min-width: 768px) { .testimonial-card { padding: var(--space-xl); } }
.testimonial-card::before { content: '"'; position: absolute; top: var(--space-md); right: var(--space-xl); font-family: var(--font-display); font-size: 5rem; color: var(--gold); opacity: 0.2; line-height: 1; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: var(--space-lg); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: var(--space-md); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ivory-dark); overflow: hidden; flex-shrink: 0; }
.testimonial-meta strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }
.testimonial-meta span { font-size: 0.75rem; color: var(--text-light); }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: var(--space-sm); }

/* ============================================================
   LOCATION — stacked on mobile, side by side on desktop
   ============================================================ */
.location-section { padding: var(--space-2xl) 0; background: var(--white); }
@media (min-width: 768px) { .location-section { padding: var(--space-3xl) 0; } }

.location-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); align-items: center; }
@media (min-width: 1024px) { .location-layout { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); } }

.location-map { aspect-ratio: 16/9; background: var(--ivory-dark); overflow: hidden; }
@media (min-width: 1024px) { .location-map { aspect-ratio: 4/3; } }
.location-map iframe { width: 100%; height: 100%; border: none; }

.location-info .eyebrow { display: block; margin-bottom: var(--space-md); }
.location-info h2 { font-weight: 400; font-style: italic; margin-bottom: var(--space-lg); }
.location-detail { display: flex; gap: var(--space-md); margin-bottom: var(--space-md); align-items: flex-start; }
.location-detail-icon { width: 40px; height: 40px; min-height: 40px; background: var(--smoke); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold-dark); }
.location-detail-text strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); margin-bottom: 2px; }
.location-detail-text span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   FOOTER — 1-col → 2-col → 4-col
   ============================================================ */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: var(--space-2xl) 0 var(--space-lg); }
@media (min-width: 768px) { .site-footer { padding: var(--space-3xl) 0 var(--space-lg); } }

.footer-layout { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); margin-bottom: var(--space-2xl); }
@media (min-width: 600px) { .footer-layout { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-layout { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); } }

.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img { height: 40px; width: auto; mix-blend-mode: screen; opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 300px; }

.footer-social { display: flex; gap: var(--space-md); margin-top: var(--space-lg); }
.footer-social a { width: var(--touch-min); height: var(--touch-min); display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; color: rgba(255,255,255,0.5); transition: all 0.2s ease; }
.footer-social a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.footer-col h5 { font-family: var(--font-display); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: var(--space-lg); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: color 0.2s ease; display: inline-block; min-height: 24px; }
.footer-col ul a:hover { color: var(--gold); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); opacity: 0.7; }
.footer-contact-item a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column; /* stack on mobile */
  gap: 16px;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

.footer-webrya { display: flex; align-items: center; gap: 7px; text-decoration: none; opacity: 0.55; transition: opacity 0.2s ease; }
.footer-webrya:hover { opacity: 1; }
.footer-webrya span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; }
.webrya-logo { height: 22px; width: auto; object-fit: contain; border-radius: 3px; }

/* ============================================================
   I18N
   ============================================================ */
[data-i18n], [data-i18n-html] { transition: opacity 0.15s ease; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   CAROUSEL (Room Cards)
   ============================================================ */
.room-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; }
.carousel-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.carousel-slide.active { opacity: 1; position: relative; pointer-events: auto; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; width: var(--touch-min); height: var(--touch-min); border-radius: 50%; font-size: 20px; line-height: 1; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s; }
/* Always show arrows on touch - no hover needed */
@media (hover: none) { .carousel-arrow { opacity: 1; width: 36px; height: 36px; } }
@media (hover: hover) { .room-card-image:hover .carousel-arrow { opacity: 1; } }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 10; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; min-width: 12px; min-height: 12px; } /* larger dots for touch */
.carousel-dot.active { background: #fff; transform: scale(1.3); }

/* ============================================================
   MODAL GALLERY
   ============================================================ */
.modal-img-wrap { position: relative; width: 100%; height: 100%; }

/* ============================================================
   NOTIFICATIONS / TOASTS — bottom-center on mobile
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: calc(100% - 32px);
  max-width: 400px;
}
@media (min-width: 768px) {
  .toast-container { left: auto; transform: none; right: var(--space-xl); bottom: var(--space-xl); width: auto; max-width: 360px; }
}
.toast { background: var(--charcoal); color: var(--white); padding: 14px var(--space-lg); font-size: 0.85rem; box-shadow: 0 8px 32px rgba(0,0,0,0.25); display: flex; align-items: center; gap: var(--space-md); transform: translateY(120%); transition: transform 0.4s var(--ease-out); border-radius: var(--radius-md); }
.toast.show { transform: translateY(0); }
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--available); }
.toast.error   .toast-icon { color: var(--unavailable); }
.toast.info    .toast-icon { color: var(--gold); }

/* ============================================================
   ADMIN (WP backend styles — not mobile critical but keep)
   ============================================================ */
.t15-admin-wrap { max-width: 900px; padding: 20px; }
.t15-admin-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 2px solid #C9A961; flex-wrap: wrap; }
.t15-admin-header h1 { font-size: 24px; color: #1A1A1A; margin: 0; }
.t15-status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
.t15-status-badge.connected { background: #e8f5e9; color: #2e7d32; }
.t15-status-badge.disconnected { background: #fce4ec; color: #c62828; }
.t15-status-dot { width: 8px; height: 8px; border-radius: 50%; }
.t15-status-badge.connected .t15-status-dot { background: #4A8C5C; }
.t15-status-badge.disconnected .t15-status-dot { background: #C05050; }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .quick-booking-bar, .site-footer, .modal-overlay, .toast-container, .gw-float, .gw-popup, .gw-backdrop { display: none; }
}

/* ============================================================
   EXTRA MOBILE POLISH
   ============================================================ */

/* Tap highlight removal */
a, button { -webkit-tap-highlight-color: transparent; }

/* Momentum scrolling on iOS for overflow elements */
.modal, .modal-content, .mobile-menu, .modal-thumbnails { -webkit-overflow-scrolling: touch; }

/* Prevent text zoom on input focus on iOS (needs 16px font-size) */
@media (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  select,
  textarea { font-size: 16px !important; }
}

/* Safe area insets for iPhone notch */
.site-footer { padding-bottom: max(var(--space-lg), env(safe-area-inset-bottom)); }
.gw-float { bottom: max(20px, env(safe-area-inset-bottom)); }

/* ============================================================
   SWIPE HINT on mobile carousel (shows first time)
   ============================================================ */
@media (max-width: 767px) {
  .room-carousel::after {
    content: '← →';
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 4px;
    pointer-events: none;
    opacity: 0;
    animation: swipeHint 3s 1s ease-in-out forwards;
  }
  @keyframes swipeHint { 0%,100%{opacity:0} 30%,70%{opacity:1} }
}