/* ============================================
   CU Guesthouse — Global Stylesheet
   ============================================ */

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

:root {
  /* Core Brand Palette */
  --color-dark:   #1a1a2e;
  --color-slate:  #2d2d44;
  --color-accent: #c9a962;
  --color-cream:  #f5f0e8;
  --white:        #ffffff;
  --color-gold-light: #e8d5a3;
  --color-gold-dark: #b8942e;
  
  /* Functional Mapping */
  --inkwell:      var(--white);
  --lunar:        #faf8f5;
  --creme-brulee: var(--color-accent);
  --text-main:    var(--color-dark);
  --text-light:   var(--color-slate);
  --text-muted:   #6b7280;
  
  /* Glass & Overlays */
  --glass-bg:     rgba(255, 255, 255, 0.88);
  --glass-border: rgba(201, 169, 98, 0.2);
  --transition:   cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Geometry & Elevation */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  50px;
  --shadow-soft:  0 16px 40px rgba(26, 26, 46, 0.06);
  --shadow-hover: 0 24px 60px rgba(201, 169, 98, 0.15);
  --shadow-gold:  0 8px 32px rgba(201, 169, 98, 0.2);
}

/* Accessibility helpers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--inkwell);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

*:focus-visible { outline: 2px solid var(--creme-brulee); outline-offset: 4px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lunar); }
::-webkit-scrollbar-thumb { background: var(--color-cream); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

/* ── 2. GLASS PANELS ── */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
}

/* ── HERO IMAGE RESPONSIVE SUPPORT ── */
.hero-slide picture,
.hero-slide img,
.hero-slide video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; object-fit: cover; object-position: center;
}
.hero-slide { background: transparent; }

/* ── LUCIDE ICON GLOBAL STYLES ── */
[class^="icon-"]::before, [class*=" icon-"]::before {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* ── 3. BUTTONS ── */
.nav-cta, .btn-primary, .btn-book, .btn-ghost, .btn-secondary, .pdf-btn {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  background: var(--color-accent);
  text-decoration: none;
  transition: all 0.5s var(--transition);
  position: relative; overflow: hidden;
  display: inline-flex; justify-content: center; align-items: center;
  border: none; cursor: pointer; min-height: 48px;
  border-radius: var(--radius-pill);
}
.nav-cta { padding: 12px 28px; white-space: nowrap; }
.btn-primary { padding: 16px 40px; }
.btn-book { width: 100%; padding: 18px; margin-top: 16px; }
.pdf-btn { padding: 14px 36px; }

.nav-cta::after, .btn-primary::after, .btn-book::after, .pdf-btn::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: all 0.6s ease;
}
.nav-cta:hover, .btn-primary:hover, .btn-book:hover, .pdf-btn:hover { 
  background: var(--color-dark); 
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(26, 26, 46, 0.25); 
}
.nav-cta:hover::after, .btn-primary:hover::after, .btn-book:hover::after, .pdf-btn:hover::after { left: 100%; }
.nav-cta:focus-visible, .btn-primary:focus-visible, .btn-book:focus-visible, .btn-ghost:focus-visible, .btn-secondary:focus-visible, .pdf-btn:focus-visible {
  outline: 2px solid var(--color-accent); outline-offset: 2px;
}

.btn-ghost {
  background: transparent; padding: 14px 36px;
  color: var(--color-dark); border: 1.5px solid var(--color-accent);
}
.btn-ghost:hover { background: var(--color-accent); color: var(--white); }

.btn-secondary {
  background: transparent; padding: 14px 36px;
  color: var(--color-accent); border: 1.5px solid var(--color-accent);
}
.btn-secondary:hover { 
  background: var(--color-accent); color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

/* ── 4. NAVIGATION ── */
nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 56px); max-width: 1400px;
  z-index: 1000;
  padding: 20px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
}

/* ── Glassmorphism scrolled navbar ── */
nav.scrolled {
  padding: 12px 44px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(250, 248, 245, 0.88) 50%,
    rgba(245, 240, 232, 0.92) 100%
  );
  backdrop-filter: blur(28px) saturate(1.4) brightness(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.4) brightness(1.05);
  box-shadow:
    0 4px 24px rgba(26, 26, 46, 0.06),
    0 1px 3px rgba(26, 26, 46, 0.04),
    0 12px 48px rgba(201, 169, 98, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 169, 98, 0.18);
}

/* Subtle gold shimmer on the scrolled navbar edge */
nav.scrolled::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 98, 0.12) 0%,
    transparent 40%,
    transparent 60%,
    rgba(201, 169, 98, 0.08) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}
nav.scrolled:hover::before { opacity: 1; }

/* Glass entrance handled by CSS transition on base nav — no keyframe needed */

/* BOOK NOW becomes outlined/ghost style in scrolled nav */
nav.scrolled .nav-cta {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  box-shadow: none;
  padding: 10px 28px;
}
nav.scrolled .nav-cta:hover {
  background: var(--color-accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.35);
  transform: translateY(-1px);
}
nav.scrolled .nav-cta::after { display: none; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  display: inline-flex; flex-direction: row; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--color-dark); text-decoration: none;
  transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img { 
  height: 52px; 
  width: auto; 
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: lowercase;
  color: inherit; white-space: nowrap;
}
@media (max-width: 1200px) { .nav-logo-text { display: none; } }

/* Make logo white on dark transparent hero background */
nav:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}
nav.scrolled .nav-logo img {
  filter: none;
}

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-dark); text-decoration: none;
  position: relative; padding-bottom: 4px; transition: color 0.35s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--color-accent);
  transition: width 0.4s var(--transition), left 0.4s var(--transition);
  border-radius: 1px;
}
.nav-links a:hover, .nav-links a.active { color: var(--color-accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; left: 0; }

/* White nav links when transparent (top of page) */
nav:not(.scrolled) .nav-links a { color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.15); }
nav:not(.scrolled) .nav-links a:hover,
nav:not(.scrolled) .nav-links a.active { color: var(--color-accent); text-shadow: none; }
nav:not(.scrolled) .nav-links a::after { background: var(--color-accent); }
nav:not(.scrolled) .nav-logo { color: var(--white); }
nav:not(.scrolled) .hamburger span { background: var(--white); }
nav:not(.scrolled) .nav-cta { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }
nav:not(.scrolled) .nav-cta:hover { background: var(--color-accent); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 30px; height: 2px; background: var(--color-dark); transition: all 0.4s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(30px);
  flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 0; padding: 100px 32px 40px; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }

/* Mobile menu logo area */
.mobile-menu-header {
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 32px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  width: 100%;
}
.mobile-menu-logo {
  height: 56px; width: auto; max-width: 180px;
  object-fit: contain; margin-bottom: 8px;
}
.mobile-menu-tagline {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-accent); font-family: 'Jost', sans-serif;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300;
  color: var(--color-dark); text-decoration: none; transition: all 0.3s;
  padding: 14px 0; border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  width: 100%; text-align: center;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--color-accent); }
.mobile-menu a i { margin-right: 12px; font-size: 1.2rem; vertical-align: middle; }
.mobile-menu .mobile-cta {
  margin-top: 20px;
  background: var(--color-accent); color: var(--white);
  border-radius: var(--radius-pill);
  padding: 16px 40px; width: auto;
  font-family: 'Jost', sans-serif; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  border-bottom: none;
  transition: all 0.3s;
}
.mobile-menu .mobile-cta:hover { background: var(--color-dark); color: var(--white); }

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: var(--white); border: 1px solid var(--glass-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(201,169,98,0.4); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px; background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500;
  color: var(--color-dark); text-align: left; gap: 16px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-chevron {
  width: 24px; height: 24px; flex-shrink: 0; color: var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 32px;
}
.faq-answer p, .faq-answer ul { font-size: 0.95rem; color: var(--color-slate); line-height: 1.8; }
.faq-answer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding-left: 0; }
.faq-answer ul li::before { content: '—'; color: var(--color-accent); margin-right: 10px; }
.faq-item.open .faq-answer { max-height: 600px; padding: 0 32px 28px; }

/* ── 5. TYPOGRAPHY & LAYOUT ── */
section { padding: 120px 64px; }
@media (max-width: 768px) { section { padding: 80px 40px; } }
@media (max-width: 640px) { section { padding: 60px 28px; } }
@media (max-width: 480px) { section { padding: 44px 20px; } }
@media (max-width: 375px) { section { padding: 32px 14px; } }
.container { max-width: 1400px; margin: 0 auto; }

.section-tag {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 20px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 1.1; color: var(--color-dark);
}
.section-title em { font-style: italic; color: var(--color-accent); }
.section-body {
  font-size: 1.1rem; font-weight: 300; line-height: 1.8;
  color: var(--color-slate); max-width: 600px; margin-top: 24px;
}

/* Center specific major section headers for better visual alignment */
.suites .suites-header,
.menu-section .reveal,
.gallery .reveal {
  text-align: center;
}
.suites .suites-header .section-title,
.menu-section .reveal .section-title,
.gallery .reveal .section-title {
  margin-left: auto; margin-right: auto;
}
.suites .suites-header .section-tag,
.menu-section .reveal .section-tag,
.gallery .reveal .section-tag {
  display: block; margin-bottom: 8px;
}

.divider { width: 60px; height: 2px; background: var(--color-accent); margin: 32px 0; }

/* ── 6. ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ── 7. PAGE HERO (Subpages) ── */
.page-hero {
  height: 60vh; 
  min-height: 400px; 
  position: relative; 
  overflow: hidden;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: var(--color-dark);
}

.page-hero-bg {
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  animation: heroZoom 20s ease-in-out infinite;
}

@keyframes heroZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.page-hero-bg::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.5) 0%,
    rgba(26, 26, 46, 0.3) 40%,
    rgba(26, 26, 46, 0.65) 100%
  );
  backdrop-filter: blur(0.5px);
  z-index: 1;
}

.page-hero-content {
  position: relative; 
  z-index: 2; 
  text-align: center; 
  padding: 0 24px;
  animation: fadeUpHero 1s ease-out 0.2s both;
}

@keyframes fadeUpHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-tag {
  font-size: 0.8rem; 
  font-weight: 600; 
  letter-spacing: 0.3em;
  text-transform: uppercase; 
  color: var(--color-accent); 
  margin-bottom: 20px; 
  display: inline-block;
  border: 1.5px solid rgba(201, 169, 98, 0.6); 
  padding: 12px 32px;
  border-radius: var(--radius-pill); 
  backdrop-filter: blur(12px);
  background: rgba(201, 169, 98, 0.12);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.15);
}

.page-hero-tag:hover {
  border-color: rgba(201, 169, 98, 1);
  background: rgba(201, 169, 98, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.25);
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem); 
  font-weight: 400; 
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  margin: 0;
  word-spacing: 0.1em;
}

.page-hero-title em { 
  font-style: italic; 
  color: var(--color-accent);
  font-weight: 500;
  filter: drop-shadow(0 2px 4px rgba(201, 169, 98, 0.3));
}

.page-hero-sub {
  font-size: 1.1rem; 
  color: rgba(255, 255, 255, 0.85); 
  margin-top: 24px; 
  max-width: 600px; 
  margin-left: auto; 
  margin-right: auto;
  font-weight: 300; 
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Decorative line under hero title */
.page-hero-content::after {
  content: ''; 
  display: block; 
  width: 80px; 
  height: 3px;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    var(--color-accent) 15%, 
    var(--color-accent) 85%, 
    transparent 100%
  );
  margin: 28px auto 0;
  box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
  border-radius: 2px;
}

/* Page Hero Heights */
.page-hero.h-sm { 
  height: 45vh; 
  min-height: 350px; 
}
.page-hero.h-md { 
  height: 55vh; 
  min-height: 400px; 
}
.page-hero.h-lg { 
  height: 70vh; 
  min-height: 500px; 
}

/* Hero Overlay */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.4) 0%,
    rgba(26, 26, 46, 0.2) 50%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: background 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-bg {
    animation: none;
    background-attachment: scroll;
  }
  .page-hero-content {
    animation: none;
  }
}

/* ── 8. FORMS ── */
.form-group { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-label { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-slate); display: block; margin-bottom: 12px; font-weight: 500; }
@media (max-width: 640px) { .form-label { font-size: 0.75rem; } }
@media (max-width: 375px) { .form-label { font-size: 0.7rem; } }
.form-input, .form-select {
  width: 100%; background: var(--lunar); border: 1px solid transparent;
  color: var(--color-dark); padding: 14px 18px; border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif; font-size: 0.95rem; outline: none; transition: all 0.3s;
  -webkit-appearance: none; appearance: none; min-height: 44px;
}
.form-input:focus, .form-select:focus { border-color: var(--color-accent); background: var(--white); box-shadow: 0 4px 12px rgba(201, 169, 98, 0.1); }
.form-input::placeholder { color: var(--text-muted); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A2785B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 20px center;
}
.form-textarea {
  width: 100%; background: var(--lunar); border: 1px solid transparent;
  color: var(--color-dark); padding: 18px 24px; border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif; font-size: 1rem; outline: none; transition: all 0.3s;
  resize: vertical; min-height: 140px;
}
.form-textarea:focus { border-color: var(--color-accent); background: var(--white); }

/* ── 9. FOOTER ── */
footer { background: var(--color-dark); padding: 100px 64px 40px; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 80px; margin-bottom: 80px; max-width: 1400px; margin-left: auto; margin-right: auto; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; gap: 50px; } }
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); text-decoration: none; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 24px; }
.footer-logo img { 
  height: 60px; 
  width: auto; 
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Footer text under the logo */
.footer-logo-text { display: none; }
.footer-tagline { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 320px; }
.footer-col-title { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 32px; display: block; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-size: 0.95rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--color-cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.05em;
}
.footer-credit a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--color-cream);
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--color-accent); }

/* ── 10. FLOATING ELEMENTS ── */

/* Scroll Progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: var(--color-accent); z-index: 1001; transition: width 0.1s;
}

/* Call Float */
.call-float {
  position: fixed; bottom: 100px; right: 32px; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--color-accent); color: white;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: var(--shadow-gold);
  transition: all 0.3s var(--transition);
}
.call-float:hover { transform: scale(1.1); background: var(--color-gold-dark); }
.call-float svg { width: 20px; height: 20px; fill: white; }

/* Quick Book Widget — hidden on mobile */
.quick-book-toggle {
   position: fixed; bottom: 32px; left: 32px; z-index: 998;
   width: 56px; height: 56px; border-radius: 50%;
   background: var(--color-accent); color: var(--white); border: none;
   cursor: pointer; font-size: 1.4rem;
   box-shadow: var(--shadow-gold);
   transition: all 0.3s var(--transition);
   display: flex; align-items: center; justify-content: center;
 }
.quick-book-toggle:hover {
   background: var(--color-dark);
   transform: scale(1.1);
 }
.quick-book-toggle svg { width: 24px; height: 24px; fill: white; }

.quick-book-panel {
  position: fixed; bottom: 100px; left: 32px; z-index: 997;
  width: 320px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: 0 16px 60px rgba(26, 26, 46, 0.15);
  padding: 32px; transform: translateY(20px); opacity: 0;
  pointer-events: none; transition: all 0.4s var(--transition);
}
.quick-book-panel.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.quick-book-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  color: var(--color-dark); margin-bottom: 24px;
}
.quick-book-field { margin-bottom: 16px; }
.quick-book-field label {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-slate); display: block; margin-bottom: 6px;
}
.quick-book-field input, .quick-book-field select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); font-family: 'Jost', sans-serif; font-size: 0.9rem;
  background: var(--lunar); color: var(--color-dark); outline: none;
}
.quick-book-field input:focus, .quick-book-field select:focus { border-color: var(--color-accent); }
.quick-book-submit {
  width: 100%; padding: 14px; margin-top: 8px;
  background: var(--color-accent); color: white; border: none;
  border-radius: var(--radius-pill); font-family: 'Jost', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s;
}
.quick-book-submit:hover { background: var(--color-dark); }

/* ── STICKY BOOKING BAR ── */
.sticky-booking {
  position: fixed; left: 0; right: 0; bottom: 18px; z-index: 2000;
  display: flex; justify-content: center; pointer-events: auto;
  padding: 8px; transition: transform 0.3s ease; will-change: transform;
}
.sticky-booking .booking-inner {
  display: flex; gap: 12px; align-items: center;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(250,250,250,0.9));
  padding: 10px 16px; border-radius: 999px; box-shadow: 0 10px 30px rgba(26,26,46,0.08);
}
.sticky-booking .booking-inner .btn-primary { padding: 12px 22px; }
.sticky-booking .booking-phone { color: var(--color-dark); font-weight: 600; margin-left: 8px; }
@media (min-width: 900px){ .sticky-booking { bottom: 28px; } }

/* ── 11. TESTIMONIAL ── */
.testimonial { text-align: center; max-width: 900px; margin: 0 auto; padding: 120px 64px; background: var(--lunar); border-radius: var(--radius-lg); }
.testimonials { display: flex; overflow: hidden; }
.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
}
.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-dark);
  margin-bottom: 24px;
}
.testimonial-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.testimonial-location {
  font-size: 0.9rem;
  color: var(--color-slate);
  letter-spacing: 0.05em;
}
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; color: var(--color-accent); line-height: 0.5; display: block; margin-bottom: 40px; }

/* Add a closing quote near the end of the testimonial for clearer punctuation */
.quote-text::after {
  content: '”';
  position: absolute;
  right: 12%;
  bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  color: rgba(201,169,98,0.15);
  pointer-events: none;
}

/* Testimonials header alignment and sizing */
.testimonials-section .testimonials-header { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.testimonials-section #testimonialsTitle {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.6vw, 2.8rem); font-weight: 400; line-height: 1.05; color: var(--color-dark); margin-bottom: 6px;
}
.testimonials-section #testimonialsSubtitle {
  font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300; color: var(--color-slate); margin-top: 0; margin-bottom: 0;
}
.testimonials { justify-content: center; gap: 28px; padding-bottom: 24px; }
.testimonial-card { max-width: 760px; }
.quote-author { margin-top: 48px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.author-name { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-accent); }
.author-loc { font-size: 0.8rem; color: var(--color-slate); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── 12. RESPONSIVE ── */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 60px; }
}

@media (max-width: 900px) {
  section { padding: 80px 32px; }
  nav { padding: 16px 28px; width: calc(100% - 32px); top: 8px; }
  nav.scrolled { padding: 12px 24px; }
  nav.scrolled::before { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 40px; max-width: 140px; }
  
  .page-hero { 
    height: 50vh; 
    min-height: 350px;
    background-attachment: scroll;
  }
  .page-hero-bg {
    background-attachment: scroll;
    animation: none;
  }
  .page-hero.h-sm { 
    height: 40vh; 
    min-height: 300px; 
  }
  .page-hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
  }
  .page-hero-sub {
    font-size: 1rem;
  }
  
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-logo img { height: 50px; max-width: 180px; }
  .testimonial { padding: 64px 32px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quick-book-panel { left: 16px; right: 16px; width: auto; }
  
  /* Hide quick book toggle on tablets */
  .quick-book-toggle, .quick-book-panel { display: none !important; }
}

/* ── TABLET (768px) ── */
@media (max-width: 768px) {
  footer { padding: 80px 40px 30px; }
  .form-input { padding: 14px 18px; }
}

/* ── MOBILE (640px) ── */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-input { padding: 12px 16px; font-size: 0.95rem; }
  footer { padding: 60px 28px 24px; }
}

/* ── SMALL MOBILE (480px) ── */
@media (max-width: 480px) {
  .form-input { padding: 11px 14px; font-size: 0.9rem; }
  .form-group { margin-bottom: 20px; }
  footer { padding: 44px 20px 18px; }
}

/* ── EXTRA SMALL MOBILE (375px) ── */
@media (max-width: 375px) {
  .form-input { padding: 10px 12px; font-size: 0.85rem; }
  .form-group { margin-bottom: 16px; }
  footer { padding: 32px 14px 14px; }
}

/* ── TYPING CURSOR ── */
.typing-cursor {
  display: inline-block;
  color: var(--color-accent);
  animation: blink 0.7s infinite;
  font-weight: 300;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── SLIDE TEXT ITEMS ── */
.slide-text-container {
  position: absolute; bottom: 100px; left: clamp(20px, 5vw, 64px); z-index: 5;
  max-width: min(500px, calc(100% - 40px));
}
.slide-text-item {
  opacity: 0; transform: translateY(20px);
  transition: all 0.8s ease;
  position: absolute; bottom: 0; left: 0;
}
.slide-text-item.active {
  opacity: 1; transform: translateY(0);
  position: relative;
}
.slide-text-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.4;
}
.slide-text-sub {
  font-size: 0.85rem; font-weight: 300; letter-spacing: 0.1em;
  color: var(--color-cream); margin-top: 8px;
}

/* ── PARTICLE TEXT FOR THINGS-TO-DO ── */
.particle-text-body .sentence {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.particle-text-body.visible .sentence {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.particle-text-body.visible .sentence:nth-child(1) { transition-delay: 0.2s; }
.particle-text-body.visible .sentence:nth-child(2) { transition-delay: 0.4s; }
.particle-text-body.visible .sentence:nth-child(3) { transition-delay: 0.6s; }

@media (max-width: 600px) {
  section { padding: 56px 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  /* Smaller, cleaner floating icons on phone */
  .call-float { width: 44px; height: 44px; bottom: 78px; right: 16px; }
  .call-float svg { width: 18px; height: 18px; }
  .quick-book-toggle, .quick-book-panel { display: none !important; }
  nav { width: calc(100% - 24px); top: 6px; padding: 12px 16px; }
  .nav-logo img { height: 36px; max-width: 120px; }
  .footer-logo img { height: 44px; max-width: 160px; }
  nav.scrolled { width: calc(100% - 24px); padding: 10px 16px; }
  nav.scrolled::before { display: none; }

  /* Buttons: full-width tap targets on mobile */
  .btn-primary, .btn-ghost { min-height: 48px; }
  .hamburger { padding: 8px; }
  .hamburger span { width: 26px; }

  /* Hide decorative side image on phone */
  .intro-img-accent { display: none !important; }

  /* Center section text on mobile for clean, readable feel */
  .section-tag { display: block; text-align: center; }
  .divider { margin: 24px auto; }
  .section-body { text-align: center; max-width: 100%; }
  .footer-col-title { text-align: center; }
  .footer-links { display: flex; flex-direction: column; align-items: center; }
  .footer-tagline { text-align: center; max-width: 100%; }
  .footer-logo { display: flex; align-items: center; justify-content: center; }
  
  /* Page hero typography */
  .page-hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .page-hero-sub { font-size: 0.95rem; }
  .page-hero-tag { font-size: 0.7rem; padding: 8px 18px; }
  
  /* FAQ on mobile */
  .faq-question { padding: 20px; font-size: 1.1rem; }
  .faq-answer { padding: 0 20px; }
  .faq-item.open .faq-answer { padding: 0 20px 20px; }
}

/* Extra small devices (< 380px) */
@media (max-width: 380px) {
  nav { padding: 10px 12px; }
  .nav-logo img { height: 32px; max-width: 110px; }
  section { padding: 48px 14px; }
}
