/* ═══════════════════════════════════════════════════════════
   TAKHAT VILLA — Dewy Green & Earthy Brown Theme
   Color Palette:
     Cream       : #FAFAF5
     Soft Sage   : #E8EDDF
     Dewy Green  : #4A7C59
     Deep Green  : #2D5A3D
     Forest      : #1B3A2A
     Earthy Brown: #8B6F47
     Dark Brown  : #5C4A2E
     Warm Gold   : #C8A96E  (brand accent)
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --white: #FAFAF5;
  --beige: #E8EDDF;
  --beige-dark: #CED6C0;
  --gold: #4A7C59;
  --gold-dark: #2D5A3D;
  --gold-light: #6B9E7A;
  --brown: #3B2F2F;
  --brown-light: #5C4A2E;
  --charcoal: #1B3A2A;
  --error: #C0392B;
  --success: #27AE60;

  /* Takhat Villa extras */
  --earth: #8B6F47;
  --earth-dark: #5C4A2E;
  --earth-light: #A68B5B;
  --brand-gold: #C8A96E;

  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;

  --nav-height: 80px;
  --section-pad: 100px;
  --container-max: 1200px;

  --shadow-sm: 0 2px 8px rgba(27, 58, 42, .08);
  --shadow-md: 0 8px 30px rgba(27, 58, 42, .12);
  --shadow-lg: 0 16px 50px rgba(27, 58, 42, .18);

  --radius: 8px;
  --radius-lg: 16px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--brown);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--earth);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.hidden {
  display: none !important;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(74, 124, 89, .35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--charcoal));
  border-color: var(--gold-dark);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(74, 124, 89, .45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 16px;
}

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

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 250, 245, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(232, 237, 223, .97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: opacity var(--transition);
}

.nav-logo:hover img {
  opacity: .8;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: all var(--transition);
  transform: translateX(-50%);
}

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

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 10px rgba(74, 124, 89, .3);
}

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

.nav-cta:hover {
  box-shadow: 0 4px 18px rgba(74, 124, 89, .45);
  transform: translateY(-1px);
}

.navbar.scrolled .nav-links a {
  color: var(--brown);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--gold-dark);
}

.navbar.scrolled .nav-cta {
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger-line {
  background: var(--brown);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/takhat_villa/pool_dusk.jpeg') center/cover no-repeat;
  will-change: transform;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(27, 58, 42, .55) 0%,
      rgba(27, 58, 42, .3) 40%,
      rgba(27, 58, 42, .65) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .3);
  margin-bottom: 16px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero-divider::before,
.hero-divider::after {
  content: '';
  width: 80px;
  height: 1px;
  background: var(--gold-light);
}

.divider-ornament {
  color: var(--gold-light);
  font-size: 14px;
}

.hero-tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(250, 250, 245, .85);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-cta {
  font-size: 14px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }

  50% {
    transform: rotate(45deg) translateY(10px);
    opacity: .4;
  }
}

/* Hero entrance animations */
.animate-fade-up {
  animation: fadeUp .8s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   SECTIONS (common)
   ═══════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 0;
}

/* Alternating backgrounds */
.overview {
  background: var(--white);
}

.rooms {
  background: var(--beige);
}

.experiences {
  background: var(--white);
}

.dining {
  background: var(--beige);
}

.gallery {
  background: var(--white);
}

.reserve-cta {
  background: var(--beige);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
}

/* Title ornament */
.title-ornament {
  width: 80px;
  height: 20px;
  margin: 16px auto 0;
  position: relative;
}

.title-ornament::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      var(--gold) 20%,
      var(--gold) 80%,
      transparent);
}

.title-ornament::after {
  content: '✦';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--gold);
  padding: 0 8px;
}

/* Fix ornament background per section */
.overview .title-ornament::after {
  background: var(--white);
}

.rooms .title-ornament::after {
  background: var(--beige);
}

.experiences .title-ornament::after {
  background: var(--white);
}

.dining .title-ornament::after {
  background: var(--beige);
}

.gallery .title-ornament::after {
  background: var(--white);
}

/* ═══════════════════════════════════════════
   OVERVIEW SECTION
   ═══════════════════════════════════════════ */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.image-frame-border {
  position: absolute;
  inset: 12px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) - 4px);
  opacity: .5;
  pointer-events: none;
  transition: opacity var(--transition);
}

.image-frame:hover .image-frame-border {
  opacity: .9;
}

.overview-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.overview-text p {
  margin-bottom: 16px;
  color: var(--brown-light);
  font-size: 15px;
}

.overview-highlights {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--beige-dark);
}

.highlight-item {
  text-align: center;
}

.highlight-number {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.highlight-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--earth);
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════
   ROOMS SECTION
   ═══════════════════════════════════════════ */
.room-category {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 80px;
}

.room-category:last-child {
  margin-bottom: 0;
}

.room-category-reverse {
  grid-template-columns: 1.4fr 1fr;
}

.room-category-reverse .room-info {
  order: 2;
}

.room-category-reverse .room-images {
  order: 1;
}

.room-info h3 {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.room-count {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(74, 124, 89, .1);
  border-radius: 20px;
  margin-bottom: 16px;
}

.room-info p {
  font-size: 15px;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.amenities-list {
  list-style: none;
  margin-bottom: 28px;
}

.amenities-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--brown-light);
  margin-bottom: 10px;
}

.amenities-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.room-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.room-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.room-img-main img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s ease;
}

.room-img-main:hover img {
  transform: scale(1.05);
}

.room-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.room-img-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .4s ease;
  cursor: pointer;
}

.room-img-grid img:hover {
  transform: scale(1.06);
}

/* ═══════════════════════════════════════════
   EXPERIENCES SECTION
   ═══════════════════════════════════════════ */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.experience-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(74, 124, 89, .12);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.exp-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.exp-image-wrapper img,
.exp-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.experience-card:hover .exp-image-wrapper img,
.experience-card:hover .exp-video-wrapper video {
  transform: scale(1.08);
}

.exp-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 42, .35), transparent);
}

.exp-body {
  padding: 24px 22px;
}

.exp-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: var(--gold);
}

.exp-icon svg {
  width: 100%;
  height: 100%;
}

.exp-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.exp-body p {
  font-size: 14px;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   DINING SECTION
   ═══════════════════════════════════════════ */
.dining-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.dining-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 12px;
}

.dining-img-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .6s ease;
}

.dining-img-main:hover img {
  transform: scale(1.04);
}

.dining-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dining-img-row img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .4s ease;
  cursor: pointer;
}

.dining-img-row img:hover {
  transform: scale(1.06);
}

.dining-text h3 {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.dining-text p {
  font-size: 15px;
  color: var(--brown-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.dining-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.dining-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

.feature-icon {
  font-size: 20px;
}

/* ═══════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  grid-auto-rows: 220px;
}

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

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

/* ═══════════════════════════════════════════
   RESERVE CTA SECTION
   ═══════════════════════════════════════════ */
.reserve-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding: 80px 40px;
}

.reserve-banner-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/takhat_villa/Pool2.jpeg') center/cover no-repeat;
  z-index: 0;
}

.reserve-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(27, 58, 42, .85) 0%,
      rgba(45, 90, 61, .75) 50%,
      rgba(92, 74, 46, .8) 100%);
}

.reserve-banner-content {
  position: relative;
  z-index: 1;
}

.reserve-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.reserve-banner p {
  font-size: 17px;
  color: rgba(250, 250, 245, .8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/*MAP*/
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}

.contact-map iframe {
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(250, 250, 245, .7);
  padding: 60px 0 0;
  position: relative;
}

.footer-top-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--charcoal),
      var(--gold) 20%,
      var(--gold-light) 50%,
      var(--gold) 80%,
      var(--charcoal));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(74, 124, 89, .2);
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.4);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links h4 {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(250, 250, 245, .65);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(27, 58, 42, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--gold-light);
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered card animations */
.experience-card.reveal:nth-child(1) {
  transition-delay: .05s;
}

.experience-card.reveal:nth-child(2) {
  transition-delay: .15s;
}

.experience-card.reveal:nth-child(3) {
  transition-delay: .25s;
}

.experience-card.reveal:nth-child(4) {
  transition-delay: .35s;
}

.experience-card.reveal:nth-child(5) {
  transition-delay: .45s;
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY — Reduced Motion
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    will-change: auto;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

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

  .room-category,
  .room-category-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .room-category-reverse .room-info {
    order: 1;
  }

  .room-category-reverse .room-images {
    order: 2;
  }

  .dining-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .overview-grid {
    gap: 40px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --nav-height: 70px;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: rgba(250, 250, 245, .8) !important;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(74, 124, 89, .15);
  }

  .nav-links a:hover {
    color: var(--gold-light) !important;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  /* Overview */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .image-frame img {
    height: 280px;
  }

  .overview-highlights {
    gap: 24px;
    justify-content: center;
  }

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

  .room-img-main img {
    height: 240px;
  }

  /* Experiences */
  .experiences-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Dining */
  .dining-img-main img {
    height: 260px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  /* Reserve */
  .reserve-banner {
    padding: 50px 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤ 480px)
   ═══════════════════════════════════════════ */
@media (max-width: 480px) {
  :root {
    --section-pad: 48px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .overview-text h3,
  .room-info h3,
  .dining-text h3 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .btn-lg {
    padding: 14px 32px;
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

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

  .highlight-number {
    font-size: 2rem;
  }

  .dining-img-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════
   FOCUS VISIBLE (keyboard accessibility)
   ═══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════
   SCROLLBAR STYLING (Webkit)
   ═══════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--beige);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}