/*
 * Domescape Glamping — styles.css
 * Palette: --dark #120E09 | --bg-alt #1C1610 | --accent #D45830 | --highlight #88B8D0 | --cream #F5F0E6
 * Fonts: Rufina (display) + Overpass (body)
 *
 * 22 SECTIONS:
 * 1. CSS Custom Properties
 * 2. Reset & Base
 * 3. Typography
 * 4. Layout Utilities
 * 5. Navbar
 * 6. Hero
 * 7. Section Headings
 * 8. Buttons & CTAs
 * 9. Cards
 * 10. Rooms Page
 * 11. Gallery / Masonry
 * 12. Lightbox
 * 13. About Page
 * 14. Contact Page
 * 15. FAQ
 * 16. Timeline
 * 17. Footer
 * 18. Animations & Transitions
 * 19. Responsive — 1024px
 * 20. Responsive — 768px
 * 21. Responsive — 480px
 * 22. Utility Classes
 */

/* ─── 1. CSS Custom Properties ─────────────────────────────────────────────── */
:root {
  --dark:       #120E09;
  --bg-alt:     #1C1610;
  --accent:     #D45830;
  --highlight:  #88B8D0;
  --cream:      #F5F0E6;

  --accent-dark:    #B04420;
  --accent-light:   #E87050;
  --highlight-dark: #5A90A8;
  --cream-dim:      #C8C0AA;
  --dark-mid:       #2A2218;

  --font-display: 'Rufina', Georgia, serif;
  --font-body:    'Overpass', system-ui, sans-serif;

  --nav-h:     72px;
  --section-v: 96px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.30);

  --ease-out: cubic-bezier(.22,.61,.36,1);

  /* page-specific hero backgrounds */
  --page-hero-bg: url('images/banner.jpg') center center / cover no-repeat;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── 3. Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: 1rem; color: var(--cream-dim); }

.text-accent   { color: var(--accent); }
.text-highlight { color: var(--highlight); }
.text-cream    { color: var(--cream); }

strong { color: var(--cream); font-weight: 600; }

/* ─── 4. Layout Utilities ──────────────────────────────────────────────────── */
.container {
  width: min(1180px, 90%);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-v);
}

.section--alt { background: var(--bg-alt); }

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ─── 5. Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: 5%;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(18, 14, 9, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: .04em;
  line-height: 1.2;
}

.nav-brand span {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-inline: auto;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius);
  font-size: .85rem !important;
  font-weight: 600 !important;
  letter-spacing: .08em;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 6. Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--page-hero-bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,14,9,.75) 0%,
    rgba(18,14,9,.50) 50%,
    rgba(212,88,48,.15) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 2rem;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  background: rgba(212,88,48,.12);
  padding: .35rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(212,88,48,.3);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .7;
}

.hero-scroll span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero-scroll__arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--cream-dim);
  border-bottom: 2px solid var(--cream-dim);
  transform: rotate(45deg);
  animation: bounce .9s ease-in-out infinite alternate;
}

@keyframes bounce {
  from { transform: rotate(45deg) translateY(-4px); }
  to   { transform: rotate(45deg) translateY(4px); }
}

/* Sub-page hero (shorter) */
.hero--sub {
  min-height: 55vh;
}

/* ─── 7. Section Headings ───────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  color: var(--cream);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 640px;
}

.divider {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-block: 1.25rem;
}

.text-center .divider { margin-inline: auto; }

/* ─── 8. Buttons & CTAs ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,88,48,.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,240,230,.3);
}

.btn--outline:hover {
  border-color: var(--cream);
  background: rgba(245,240,230,.08);
  transform: translateY(-2px);
}

.btn--highlight {
  background: var(--highlight);
  color: var(--dark);
}

.btn--highlight:hover {
  background: var(--highlight-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(136,184,208,.3);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── 9. Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(245,240,230,.06);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: .75rem;
}

.card__text { font-size: .92rem; }

/* Feature icon cards */
.feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,230,.06);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(212,88,48,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .4rem;
}

.feature-card p { font-size: .9rem; }

/* ─── 10. Rooms Page ────────────────────────────────────────────────────────── */
.room-categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-block: 2rem;
}

.room-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.5rem;
  border-radius: 30px;
  background: var(--bg-alt);
  border: 1px solid rgba(245,240,230,.12);
  color: var(--cream-dim);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .25s;
}

.room-cat-btn:hover,
.room-cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Individual room section */
.room-section {
  padding-block: 80px;
  border-bottom: 1px solid rgba(245,240,230,.07);
}

.room-section:last-child { border-bottom: none; }

.room-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.room-layout--reverse .room-gallery-col { order: -1; }

.room-info__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(212,88,48,.12);
  border: 1px solid rgba(212,88,48,.25);
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.room-info h2 {
  color: var(--cream);
  margin-bottom: .5rem;
}

.room-info__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--highlight);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.room-info p { margin-bottom: 1.25rem; }

.room-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.room-spec {
  text-align: center;
  padding: 1rem;
  background: rgba(245,240,230,.04);
  border-radius: var(--radius);
  border: 1px solid rgba(245,240,230,.08);
}

.room-spec__icon {
  color: var(--accent);
  margin-bottom: .4rem;
}

.room-spec__icon svg { width: 22px; height: 22px; }

.room-spec__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  display: block;
}

.room-spec__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.room-amenities {
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.room-amenities h4 {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: .75rem;
}

.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--cream-dim);
}

.amenity-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Room photo gallery */
.room-gallery {
  display: grid;
  gap: .75rem;
}

.room-gallery--2x2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.room-gallery--2x2 .room-photo:first-child {
  grid-column: 1 / -1;
}

.room-gallery--3-1 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.room-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
  aspect-ratio: 4/3;
}

.room-gallery--2x2 .room-photo:first-child img {
  aspect-ratio: 16/7;
}

.room-photo:hover img { transform: scale(1.04); }

.room-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,14,9,.0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-photo:hover .room-photo__overlay {
  background: rgba(18,14,9,.25);
}

.room-photo__overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}

.room-photo:hover .room-photo__overlay svg { opacity: 1; }

/* ─── 11. Gallery / Masonry ─────────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  padding: .45rem 1.25rem;
  border-radius: 20px;
  background: var(--bg-alt);
  border: 1px solid rgba(245,240,230,.12);
  color: var(--cream-dim);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: all .2s;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.masonry {
  columns: 3;
  column-gap: 1rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s var(--ease-out);
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,14,9,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.masonry-item:hover .masonry-overlay {
  background: rgba(18,14,9,.4);
}

.masonry-overlay svg {
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0;
  transition: opacity .3s;
}

.masonry-item:hover .masonry-overlay svg { opacity: 1; }

/* ─── 12. Lightbox ──────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,7,4,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__inner {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,240,230,.1);
  border: 1px solid rgba(245,240,230,.2);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.lightbox__nav:hover { background: rgba(245,240,230,.25); }
.lightbox__prev { left: -64px; }
.lightbox__next { right: -64px; }

/* ─── 13. About Page ────────────────────────────────────────────────────────── */
.about-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,230,.07);
}

.stat-box__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-box__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,240,230,.06);
  text-align: center;
}

.value-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(136,184,208,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--highlight);
}

.value-card__icon svg { width: 28px; height: 28px; }

.value-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: .6rem;
}

/* ─── 14. Contact Page ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.25rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid rgba(245,240,230,.07);
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: rgba(212,88,48,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-detail__icon svg { width: 20px; height: 20px; }

.contact-detail__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: .25rem;
}

.contact-detail__value {
  font-size: .95rem;
  color: var(--cream);
}

/* Form */
.inquiry-form {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(245,240,230,.07);
}

.inquiry-form h3 {
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245,240,230,.05);
  border: 1px solid rgba(245,240,230,.12);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(212,88,48,.05);
}

.form-group select option {
  background: var(--bg-alt);
  color: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,230,.3);
}

/* ─── 15. FAQ ───────────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid rgba(245,240,230,.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h4 {
  font-size: 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p { font-size: .95rem; }

/* ─── 16. Timeline ──────────────────────────────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(245,240,230,.1);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-dot {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 3px solid var(--dark);
}

.timeline-dot svg { width: 16px; height: 16px; color: #fff; }

.timeline-content {
  padding-top: .3rem;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: .25rem;
}

.timeline-content h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: .4rem;
}

.timeline-content p { font-size: .9rem; }

/* ─── 17. Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid rgba(245,240,230,.07);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}

.footer__tagline {
  font-size: .9rem;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: .75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245,240,230,.06);
  border: 1px solid rgba(245,240,230,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all .2s;
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: .6rem;
}

.footer__links a {
  font-size: .9rem;
  color: var(--cream-dim);
  transition: color .2s;
}

.footer__links a:hover { color: var(--accent); }

.footer__contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}

.footer__contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: .15rem;
}

.footer__contact-icon svg { width: 16px; height: 16px; }

.footer__contact-text {
  font-size: .88rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.footer__checkin {
  background: rgba(212,88,48,.08);
  border: 1px solid rgba(212,88,48,.2);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: .75rem;
}

.footer__checkin p {
  font-size: .82rem;
  margin-bottom: .3rem;
}

.footer__checkin strong { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid rgba(245,240,230,.07);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer__copyright {
  font-size: .82rem;
  color: var(--cream-dim);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-links a {
  font-size: .82rem;
  color: var(--cream-dim);
  transition: color .2s;
}

.footer__bottom-links a:hover { color: var(--accent); }

/* ─── 18. Animations & Transitions ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ─── 19. Responsive — 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-v: 72px; }

  .nav-links { gap: 1.75rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .room-specs { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
}

/* ─── 20. Responsive — 768px ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-v: 56px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(18,14,9,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 5% 1.5rem;
    transform: translateY(-110%);
    transition: transform .35s var(--ease-out);
    border-bottom: 1px solid rgba(245,240,230,.08);
    z-index: 899;
  }

  .nav-links.mobile-open { transform: translateY(0); }

  .nav-links a {
    padding: .85rem 0;
    border-bottom: 1px solid rgba(245,240,230,.06);
    width: 100%;
    font-size: 1rem;
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-toggle { display: flex; }

  .nav-cta {
    margin-top: .75rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .room-layout { grid-template-columns: 1fr; gap: 2rem; }
  .room-layout--reverse .room-gallery-col { order: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .values-grid { grid-template-columns: 1fr; }

  .hero__ctas { flex-direction: column; align-items: center; }

  .lightbox__prev { left: -48px; }
  .lightbox__next { right: -48px; }
}

/* ─── 21. Responsive — 480px ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-v: 48px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .room-specs { grid-template-columns: repeat(2, 1fr); }
  .amenity-list { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }

  .room-gallery--2x2 .room-photo:first-child {
    grid-column: 1;
  }
  .room-gallery--2x2 {
    grid-template-columns: 1fr;
  }

  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__inner { max-width: 95vw; }
}

/* ─── 22. Utility Classes ───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
