/* ============================================================
   A-1 Alberni Inn — Static Site Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #2d5a27;
  --primary-dark: #1f3f1b;
  --accent:    #c0392b;
  --accent-dark: #a93226;
  --dark:      #1a1a1a;
  --cream:     #f0ede6;
  --warm:      #f5f0e8;
  --white:     #ffffff;
  --text:      #1c1c1c;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --container: 1200px;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utility ──────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary   { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline-white {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); }

.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: #f3f4f6; }

.btn-outline-white2 {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white2:hover { background: rgba(255,255,255,0.10); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Header ───────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#site-header.scrolled {
  background: #fff;
  padding: 0.75rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

#site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#site-header .logo img {
  width: 140px;
  transition: width 0.3s;
}
#site-header.scrolled .logo img { width: 120px; }

#site-header nav { display: flex; align-items: center; gap: 1.5rem; }

#site-header nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
#site-header nav a:hover { border-color: var(--accent); color: var(--accent); }
#site-header.scrolled nav a { color: var(--text); }
#site-header.scrolled nav a:hover { color: var(--primary); border-color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.header-actions .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#site-header.scrolled .header-actions .btn-call {
  color: var(--text);
  border-color: var(--border);
}
.header-actions .btn-call:hover { background: rgba(255,255,255,0.1); }
#site-header.scrolled .header-actions .btn-call:hover { background: #f5f5f5; }

.header-actions .btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s;
}
.header-actions .btn-book:hover { background: var(--accent-dark); }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
#site-header.scrolled .menu-toggle span,
.menu-toggle.open span { background: var(--text); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 6rem 2rem 2rem;
}
#mobile-nav.open { display: flex; }

#mobile-nav a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.75rem 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
#mobile-nav a:last-of-type { border-bottom: none; }
#mobile-nav a:hover { color: var(--primary); }

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
  padding-top: 1rem;
}

/* ── Hero ─────────────────────────────────────────────────── */
#home {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 860px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-badge-item svg { width: 28px; height: 28px; opacity: 0.9; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 0.3rem;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Strip ──────────────────────────────────────────── */
#stats-strip {
  background: var(--dark);
  color: #fff;
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }

.stat-icon {
  background: rgba(192,57,43,0.2);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; color: var(--accent); }

.stat-value { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── Rooms ────────────────────────────────────────────────── */
#rooms {
  padding: 5rem 0;
  background: var(--cream);
}

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Carousel */
.carousel {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #e5e7eb;
}
.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.carousel img.active { opacity: 1; }

.carousel-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s;
}
.carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn-prev { left: 8px; }
.carousel-btn-next { right: 8px; }
.carousel-btn svg { width: 18px; height: 18px; }

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  padding: 0;
  transition: background 0.2s;
}
.carousel-dot.active { background: #fff; }

.room-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 4px solid var(--primary);
}

.room-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.room-body p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

.room-features {
  margin-bottom: 1.5rem;
}
.room-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(28,28,28,0.8);
  margin-bottom: 0.4rem;
}
.room-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5a27' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Amenities ────────────────────────────────────────────── */
#amenities {
  padding: 5rem 0;
  background: var(--primary);
  color: #fff;
}

#amenities .section-label { color: rgba(255,255,255,0.8); }
#amenities .section-title { color: #fff; }
#amenities .section-subtitle { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s;
}
.amenity-card:hover { background: rgba(255,255,255,0.16); }

.amenity-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.amenity-icon svg { width: 26px; height: 26px; }

.amenity-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.amenity-card p { font-size: 0.82rem; color: rgba(255,255,255,0.78); line-height: 1.5; }

/* ── Gallery ──────────────────────────────────────────────── */
#gallery {
  padding: 5rem 0;
  background: #fff;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #f3f4f6;
  color: var(--text);
  border: none;
  transition: background 0.2s, color 0.2s;
}
.filter-btn:hover { background: #e5e7eb; }
.filter-btn.active { background: var(--primary); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #e5e7eb;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.22); }
.gallery-item-overlay svg {
  width: 32px; height: 32px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* Hidden gallery items */
.gallery-item[data-hidden="true"] { display: none; }

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

#lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}
#lightbox-close:hover { color: #fff; }
#lightbox-close svg { width: 32px; height: 32px; }

#lightbox-prev, #lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(0,0,0,0.8); }
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }
#lightbox-prev svg, #lightbox-next svg { width: 28px; height: 28px; }

#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

#lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 0; right: 0;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
}

/* ── Reviews ──────────────────────────────────────────────── */
#reviews {
  padding: 5rem 0;
  background: var(--warm);
}

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 0.75rem 1.5rem;
  margin: 0 auto 3rem;
}
.reviews-score-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.reviews-score-label { font-size: 0.875rem; font-weight: 600; }
.reviews-score-sub { font-size: 0.75rem; opacity: 0.8; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
}

.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }

.review-score {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 7px;
  color: #fff;
  flex-shrink: 0;
}
.score-green  { background: var(--primary); }
.score-emerald { background: #10b981; }

.review-name { font-weight: 700; margin-bottom: 2px; }
.review-room { font-size: 0.78rem; color: var(--muted); }

.review-quote-icon {
  width: 28px; height: 28px;
  color: rgba(45,90,39,0.1);
  margin-bottom: 0.5rem;
}
.review-title { font-weight: 700; margin-bottom: 0.4rem; font-size: 0.95rem; }
.review-pros { font-size: 0.875rem; color: rgba(28,28,28,0.8); flex: 1; }
.review-cons {
  font-size: 0.78rem;
  color: rgba(107,114,128,0.7);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  margin-top: 0.75rem;
}
.review-cons strong { font-style: normal; }

.review-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}
.review-verified { color: rgba(45,90,39,0.75); font-weight: 500; margin-top: 0.25rem; font-size: 0.75rem; }

/* ── Location ─────────────────────────────────────────────── */
#location {
  padding: 5rem 0;
  background: #fff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info .section-label { text-align: left; }
.location-info .section-title { text-align: left; }

.location-info p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.location-detail-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.location-detail-icon.green { background: rgba(45,90,39,0.1); color: var(--primary); }
.location-detail-icon.red   { background: rgba(192,57,43,0.1); color: var(--accent); }
.location-detail-icon svg { width: 20px; height: 20px; }

.location-detail h4 { font-weight: 600; margin-bottom: 0.25rem; }
.location-detail p  { color: var(--muted); font-size: 0.9rem; margin-bottom: 0; }

.checkin-note {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.map-embed {
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  padding: 5rem 0;
  background: #fafafa;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ── Contact / CTA ────────────────────────────────────────── */
#contact {
  padding: 6rem 0;
  background: var(--primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-label { color: rgba(255,255,255,0.6); }
.contact-inner .section-title { color: #fff; margin-bottom: 2.5rem; }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-item:hover { color: #fff; }

.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.contact-item:hover .contact-item-icon { background: rgba(255,255,255,0.18); }
.contact-item-icon svg { width: 22px; height: 22px; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--dark);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo-wrap img { width: 160px; }

.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.875rem; max-width: 240px; }

.footer-col h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer-col address { color: rgba(255,255,255,0.65); font-size: 0.875rem; line-height: 2; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* header */
  #site-header nav, .header-actions { display: none; }
  .menu-toggle { display: flex; }

  /* hero */
  .hero-badges { grid-template-columns: repeat(2, 1fr); }

  /* rooms */
  .rooms-grid { grid-template-columns: 1fr; }

  /* amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* location */
  .location-grid { grid-template-columns: 1fr; }
  .map-embed { height: 300px; }

  /* stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid > *:first-child { grid-column: auto; }

  /* contact */
  .contact-details { flex-direction: column; align-items: center; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { width: 100%; }
  .contact-actions .btn { width: 100%; }
}
