/* ============================================================
   Empire Hotel, Jijiga — styles.css
   Single stylesheet — no framework, no preprocessor
   ============================================================ */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
  --color-background: #FAF7F2;
  --color-text: #2B2B2B;
  --color-text-muted: #6B6B6B;
  --color-accent: #8C7355;
  --color-accent-dark: #6B5840;
  --color-border: #E5DFD6;
  --color-success: #2E7D32;
  --color-error: #C62828;
  --color-whatsapp: #25D366;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --header-height: 80px;

  --radius-sm: 4px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ── 2. @font-face ────────────────────────────────────────── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── 3. Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  padding-top: var(--header-height);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
iframe {
  display: block;
}

/* ── 4. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem;   font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.6; color: var(--color-text); }
p + p { margin-top: var(--space-sm); }

/* ── 5. Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  border: 2px solid var(--color-accent);
  background-color: var(--color-accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 0 transparent;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 2px 10px rgba(140,115,85,0.25);
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.btn-primary {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background-color: var(--color-accent-dark); border-color: var(--color-accent-dark); }

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

/* ── 7. Header / Navigation ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo:hover { opacity: 0.85; }

.main-nav {
  display: none;
  gap: var(--space-md);
  align-items: center;
}
.main-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-accent);
}
.main-nav a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}


/* Call to Book button + dropdown */
.call-to-book {
  position: relative;
  flex-shrink: 0;
}
.btn-call-book {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background-color: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-call-book:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 2px 10px rgba(140,115,85,0.25);
}
.btn-call-book:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.call-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 240px;
  z-index: 200;
  overflow: hidden;
}
.call-dropdown.is-open { display: block; }

.call-dropdown-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem 0.5rem;
  border-bottom: 1px solid var(--color-border);
}
.call-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.call-option:last-child { border-bottom: none; }
.call-option:hover { background-color: var(--color-background); }
.call-option:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -2px; }
.call-option svg { color: var(--color-accent); flex-shrink: 0; }
.call-option span { display: flex; flex-direction: column; gap: 2px; }
.call-option strong { font-size: 0.9375rem; font-weight: 600; }
.call-option em { font-style: normal; font-size: 0.75rem; color: var(--color-text-muted); }
.call-option-whatsapp svg { color: var(--color-whatsapp); }
.call-option-whatsapp strong { color: var(--color-whatsapp); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav dropdown */
.main-nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.main-nav.is-open a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}
.main-nav.is-open a:last-child { border-bottom: none; }

/* ── 8. Footer ────────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-text);
  color: var(--color-background);
  margin-top: var(--space-xl);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md) var(--space-md);
}
.footer-col .logo {
  color: var(--color-background);
  margin-bottom: var(--space-xs);
  display: inline-block;
}
.footer-col p {
  color: rgba(250,247,242,0.7);
  font-size: 0.9rem;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: var(--space-sm);
}
.footer-col a {
  display: block;
  color: rgba(250,247,242,0.8);
  font-size: 0.9375rem;
  margin-bottom: 0.4rem;
  transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 0.6; }
.footer-col a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xs);
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,247,242,0.8);
  margin-bottom: 0;
  transition: opacity 0.2s ease;
}
.social-icons a:hover { opacity: 0.7; }
.social-icons a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.social-icons svg { width: 24px; height: 24px; }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.15);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-md);
  text-align: center;
}
.footer-bottom p {
  color: rgba(250,247,242,0.4);
  font-size: 0.875rem;
}

/* ── 9. Section Spacing ───────────────────────────────────── */
section {
  padding: var(--space-lg) 0;
}
.section-heading {
  text-align: center;
  margin-bottom: var(--space-md);
}
.section-heading h2 { margin-bottom: var(--space-xs); }
.section-heading p { color: var(--color-text-muted); max-width: 600px; margin: 0 auto; }

/* ── 10. Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 480px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  border-radius: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 var(--space-md);
  max-width: 760px;
}
.hero-content h1 {
  color: #fff;
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}
.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 11. Highlights Grid (Home) ───────────────────────────── */
.highlights {
  background-color: #fff;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.highlight-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  text-align: center;
  transition: box-shadow 0.2s ease;
}
.highlight-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.highlight-card svg {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin: 0 auto var(--space-sm);
}
.highlight-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}
.highlight-card p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}
.highlight-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background-color: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  margin-top: var(--space-xs);
}
.highlight-card a:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 2px 10px rgba(140,115,85,0.25);
}
.highlight-card a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* ── 12. Testimonials ─────────────────────────────────────── */
.testimonials { background-color: var(--color-background); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  font-style: italic;
}
.testimonial-card cite {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  font-style: normal;
}

/* ── 13. CTA Band ─────────────────────────────────────────── */
.cta-band {
  background-color: var(--color-accent);
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.cta-band h2 {
  color: #fff;
  margin-bottom: var(--space-md);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ── 14. Page Hero (inner pages) ──────────────────────────── */
background-color: var(--color-text);
.page-hero h1 {
  color: #fff;
  margin-bottom: var(--space-xs);
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ── 15. Rooms Grid ───────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.room-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}
.room-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border-radius: 0;
}
.room-card-img:hover { opacity: 0.92; }
.room-card-body {
  padding: var(--space-md);
}
.room-card-body h3 { margin-bottom: var(--space-xs); }
.room-card-body p { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: var(--space-sm); }
.room-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.room-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.room-feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ── 16. Amenities Grid ───────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.amenity-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  text-align: center;
  background: #fff;
  transition: box-shadow 0.2s ease;
}
.amenity-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.amenity-card svg {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  margin: 0 auto var(--space-sm);
}
.amenity-card h3 { font-size: 1.125rem; margin-bottom: var(--space-xs); }
.amenity-card p { color: var(--color-text-muted); font-size: 0.9375rem; }

/* ── 17. Dining ───────────────────────────────────────────── */
.dining-section { background: #fff; }
.dining-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.dining-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.dining-info h2 { margin-bottom: var(--space-sm); }
.dining-info p { color: var(--color-text-muted); margin-bottom: var(--space-md); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}
.hours-table th, .hours-table td {
  padding: 0.5rem var(--space-sm);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}
.hours-table th {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.menu-list { display: flex; flex-direction: column; gap: 0.6rem; }
.menu-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 500; }
.menu-item-desc { color: var(--color-text-muted); }
.menu-item-price { color: var(--color-accent); font-weight: 500; }

/* ── 18. Location ─────────────────────────────────────────── */
.map-container {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-container iframe { width: 100%; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.location-info h3 { margin-bottom: var(--space-xs); font-size: 1.125rem; }
.location-info p { color: var(--color-text-muted); font-size: 0.9375rem; margin-bottom: var(--space-md); }
.address-block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}
.address-block p { color: var(--color-text); font-size: 0.9375rem; }

.attractions-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.attraction-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}
.attraction-item:last-child { border-bottom: none; }
.attraction-dist {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
  margin-top: 0.25rem;
}
.attraction-name { font-weight: 500; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.attraction-desc { color: var(--color-text-muted); font-size: 0.875rem; }

/* ── 19. Gallery ──────────────────────────────────────────── */
.filter-buttons {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.filter-btn.is-active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.filter-btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}
.gallery-item { overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; }
.gallery-item.hidden { display: none; }
.gallery-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: opacity 0.2s ease;
  display: block;
  border-radius: 0;
}
.gallery-item:hover .gallery-thumb { opacity: 0.88; }

/* ── 20. About ────────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: start;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.about-text h2 { margin-bottom: var(--space-sm); }
.about-text p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.about-mission { background: #fff; padding: var(--space-md); border-left: 4px solid var(--color-accent); margin-top: var(--space-md); }
.about-mission h2 { margin-bottom: var(--space-sm); font-size: 1.5rem; }
.about-mission p { color: var(--color-text-muted); }

/* ── 21. Contact ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.contact-form-section h2 { margin-bottom: var(--space-md); font-size: 1.5rem; }
.form-group { margin-bottom: var(--space-sm); }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 0;
  border-color: var(--color-accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.field-error {
  display: none;
  color: var(--color-error);
  font-size: 0.8125rem;
  margin-top: 0.3rem;
}
.field-error.visible { display: block; }

.form-success, .form-fail {
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-top: var(--space-sm);
}
.form-success { border: 1px solid var(--color-success); color: var(--color-success); background: #f0f7f0; }
.form-fail { border: 1px solid var(--color-error); color: var(--color-error); background: #fdf0f0; }
.form-success.visible, .form-fail.visible { display: block; }

.contact-info h2 { margin-bottom: var(--space-md); font-size: 1.5rem; }
.info-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.info-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item-body h4 { font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: 0.3rem; }
.info-item-body a { color: var(--color-accent); transition: opacity 0.2s ease; }
.info-item-body a:hover { opacity: 0.75; }
.info-item-body a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.info-item-body p { font-size: 0.9375rem; }

.contact-social { margin-bottom: var(--space-md); }
.contact-social h4 { font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.contact-social .social-icons a { color: var(--color-accent); }
.contact-social .social-icons svg { width: 24px; height: 24px; }

/* ── 22. Lightbox ─────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; }

/* ── 23. WhatsApp Floating Button ─────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: opacity 0.2s ease;
}
.whatsapp-btn:hover { opacity: 0.9; }
.whatsapp-btn:focus-visible { outline: 2px solid var(--color-whatsapp); outline-offset: 3px; }
.whatsapp-btn svg { width: 32px; height: 32px; }

/* ── 24. Scroll Animations ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 25. Utility ──────────────────────────────────────────── */
.text-muted { color: var(--color-text-muted); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── 26. Responsive — Tablet ≥768px ──────────────────────── */
@media (min-width: 768px) {
  section { padding: var(--space-lg) 0; }

  .main-nav { display: flex; }
  .hamburger { display: none; }
  .btn-book-now { display: inline-block; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .dining-inner { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── 27. Responsive — Desktop ≥1024px ────────────────────── */
@media (min-width: 1024px) {
  section { padding: var(--space-xl) 0; }

  .highlights-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { grid-template-columns: repeat(4, 1fr); }
}
