/* ===== VILLA AZURE - REDESIGN ===== */

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

:root {
  --navy: #092147;
  --navy-light: #0e2d5e;
  --navy-dark: #061633;
  --gold: #c9aa5e;
  --gold-light: #ddc68a;
  --gold-dark: #b08f3e;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text: #1a1a2e;
  --text-light: #555;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1280px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title { color: var(--navy); margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 170, 94, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  transition: all var(--transition);
}

.header--top {
  background: transparent;
  padding-top: 20px;
}

.header--scrolled {
  background: rgba(9, 33, 71, 0.97);
  backdrop-filter: blur(12px);
  padding-top: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo { flex-shrink: 0; }
.logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a { white-space: nowrap; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

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

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold);
  color: var(--navy-dark) !important;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 33, 71, 0.4) 0%,
    rgba(9, 33, 71, 0.2) 40%,
    rgba(9, 33, 71, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-content .section-label {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  font-size: clamp(1.7rem, 3.1vw, 2.8rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: min(1200px, 92vw);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.005em;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }

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

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(9, 33, 71, 0.5) 0%,
    rgba(9, 33, 71, 0.7) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-hero-content .section-label { color: var(--gold-light); margin-bottom: 16px; }
.page-hero-content h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
.page-hero-content p { margin-top: 16px; font-size: 1.1rem; opacity: 0.85; }

/* --- Sections --- */
.section { padding: 100px 0; }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy .section-label { color: var(--gold-light); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-subtitle { color: rgba(255,255,255,0.7); }

/* --- Intro / About Preview --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-grid--video {
  grid-template-columns: 420px 1fr !important;
  gap: 64px !important;
  align-items: center;
}

.intro-images {
  position: relative;
  height: 550px;
}

.intro-images img:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 75%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.intro-images img:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.intro-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.intro-text .btn { margin-top: 16px; }

.intro-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 9 / 16;
  width: 420px !important;
  max-width: 420px !important;
  height: auto;
}
.intro-video video {
  width: 420px !important;
  max-width: 420px !important;
  height: auto !important;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}
@media (max-width: 880px) {
  .intro-grid--video { grid-template-columns: 1fr !important; gap: 32px !important; }
  .intro-video, .intro-video video { width: 220px !important; max-width: 220px !important; margin: 0 auto; }
}

/* Decorative divider */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.text-center .gold-line { margin: 24px auto; }

/* --- Room Cards --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.room-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.room-card-body { padding: 28px; }

.room-card-body h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.room-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.room-card-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
  background: var(--gray-50);
  padding: 6px 12px;
  border-radius: 20px;
}

.room-card-features svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* Featured rooms (homepage) */
.rooms-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.amenity-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  overflow: hidden;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.amenity-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.amenity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.amenity-card-body {
  padding: 32px 28px;
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  color: var(--gold);
}

.amenity-icon svg { width: 24px; height: 24px; }

.amenity-card h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.amenity-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

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

.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 33, 71, 0);
  transition: background var(--transition);
}

.gallery-item:hover::after {
  background: rgba(9, 33, 71, 0.25);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* --- Highlight / Feature Strip --- */
.highlight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.highlight-item:last-child { border-right: none; }

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

.highlight-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  display: block;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 33, 71, 0.8);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--gold);
}

.contact-info-icon svg { width: 22px; height: 22px; }

.contact-info-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-info-item a { color: var(--gold-dark); }
.contact-info-item a:hover { color: var(--gold); }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Weddings / Events Sections --- */
.event-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.event-feature {
  text-align: center;
  padding: 40px 28px;
}

.event-feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.event-feature-icon svg { width: 30px; height: 30px; }

.event-feature h4 {
  color: var(--navy);
  margin-bottom: 10px;
}

.event-feature p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.section--navy .event-feature h4 { color: var(--white); }
.section--navy .event-feature p { color: rgba(255,255,255,0.7); }
.section--navy .event-feature-icon { border-color: var(--gold); color: var(--gold); }

/* Image + text split */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 300px; }

.footer h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 0;
  font-size: 0.8rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
}

.footer-social svg { width: 16px; height: 16px; }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- WhatsApp floating button --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; color: white; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .intro-grid, .split-section { gap: 48px; }
  .rooms-featured { grid-template-columns: 1fr; }
  .highlight-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
  }
  .menu-toggle { display: flex; }

  .section { padding: 64px 0; }
  .intro-grid,
  .split-section,
  .contact-grid { grid-template-columns: 1fr; }
  .intro-images { height: 400px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
  .event-features { grid-template-columns: 1fr; }
  .highlight-strip { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero { min-height: 600px; }
  .page-hero { min-height: 350px; }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .highlight-strip { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* --- Hero slideshow + new bits --- */
.hero-slideshow { position: absolute; inset: 0; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 30s infinite;
}
.hero-slide:nth-child(1){ animation-delay: 0s; }
.hero-slide:nth-child(2){ animation-delay: 6s; }
.hero-slide:nth-child(3){ animation-delay: 12s; }
.hero-slide:nth-child(4){ animation-delay: 18s; }
.hero-slide:nth-child(5){ animation-delay: 24s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero-eyebrow {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.4;
}

/* --- Booking strip --- */
.booking-strip {
  background: var(--cream);
  padding: 40px 0;
  border-top: 1px solid rgba(201,170,94,0.35);
  border-bottom: 1px solid rgba(201,170,94,0.35);
  position: relative;
  z-index: 5;
}
.booking-strip-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
}
.booking-strip-label .eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.booking-strip-label p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 880px) {
  .booking-strip-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 20px;
  align-items: end;
}
.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-field label {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.booking-field input,
.booking-field select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: var(--white);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.booking-field input::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.6); }
.booking-form .btn { white-space: nowrap; height: 44px; }
@media (max-width: 880px) { .booking-form { grid-template-columns: 1fr 1fr; } .booking-form .btn { grid-column: 1/-1; } }

/* --- Reservation phone --- */
.reservation-phone {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reservation-phone a {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.reservation-phone a:hover { color: var(--gold-dark); }

/* --- Closing section --- */
.closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.closing-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.closing-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .closing-grid { grid-template-columns: 1fr; gap: 36px; } }

/* --- About: video in split section --- */
.about-video {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  aspect-ratio: 16 / 9;
}
.about-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- About: designer portraits --- */
.designers-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
}
.designers-portraits figure {
  text-align: center;
  margin: 0;
}
.designers-portraits figure img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}
.designers-portraits figcaption h4 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.designers-portraits figcaption span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 540px) { .designers-portraits { grid-template-columns: 1fr; max-width: 320px; } }

/* --- About: experience cards --- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.experience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.experience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.experience-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 36px auto 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: var(--cream);
  transition: background var(--transition), color var(--transition);
}
.experience-icon svg { width: 44px; height: 44px; }
.experience-card:hover .experience-icon { background: var(--gold); color: var(--white); }
.experience-body { padding: 20px 28px 36px; text-align: center; }
.experience-body h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.experience-body p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
}
@media (max-width: 880px) { .experience-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* --- Amenities: icon-only grid --- */
.amenity-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.amenity-icon-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-icon-card .amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--cream);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.amenity-icon-card:hover .amenity-icon { background: var(--gold); color: var(--white); }
.amenity-icon-card .amenity-icon svg { width: 30px; height: 30px; }
.amenity-icon-card h4 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.amenity-icon-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}
@media (max-width: 880px) { .amenity-icons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenity-icons-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }

/* --- Room card gallery --- */
.room-gallery { position: relative; overflow: hidden; }
.rg-track {
  display: flex;
  height: 100%;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.rg-track::-webkit-scrollbar { display: none; }
.rg-track > img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.6s ease;
}
.room-gallery:hover .rg-track > img { transform: scale(1.03); }
.rg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.85);
  color: var(--navy);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.room-gallery:hover .rg-nav { opacity: 1; }
.rg-nav:hover { background: var(--gold); color: var(--white); }
.rg-prev { left: 12px; }
.rg-next { right: 12px; }
.rg-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.rg-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.rg-dots button.active {
  background: var(--gold);
  transform: scale(1.3);
}
.rg-dots button:hover { background: rgba(255,255,255,0.85); }
.room-card-badge {
  z-index: 2;
}
@media (max-width: 720px) {
  .rg-nav { opacity: 1; width: 32px; height: 32px; }
}

/* --- Tour Packages --- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.tour-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light);
}
.tour-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,33,71,0.55) 0%, rgba(9,33,71,0.05) 50%);
}
.tour-price {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  background: var(--gold);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tour-price em {
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-left: 4px;
  opacity: 0.9;
}
.tour-card-body {
  padding: 24px 24px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-body .section-label {
  margin-bottom: 6px;
  font-size: 0.7rem;
}
.tour-card-body h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.tour-link {
  margin-top: auto;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
  transition: color var(--transition), letter-spacing var(--transition);
}
.tour-link:hover { color: var(--navy); letter-spacing: 0.1em; }

@media (max-width: 880px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tours-grid { grid-template-columns: 1fr; } }

/* --- Video section --- */
.video-section { padding: 80px 0; }
.video-frame {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
  background: #000;
}
.video-frame video { width: 100%; height: auto; display: block; }

/* --- Testimonials slider --- */
.testimonials-slider {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
}
.testimonials-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 12px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track > .testimonial {
  flex: 0 0 100%;
  scroll-snap-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 56px;
  font-size: 1.05rem;
}
.testimonials-track > .testimonial blockquote { font-size: 1.1rem; line-height: 1.85; }
@media (max-width: 720px) {
  .testimonials-track > .testimonial { padding: 32px 24px; }
}
.t-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--white);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.t-nav:hover { background: var(--gold); color: var(--white); transform: scale(1.05); }
.t-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.t-nav svg { width: 20px; height: 20px; }
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.testimonials-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-300); border: 0; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.testimonials-dots button.active { background: var(--gold); transform: scale(1.4); }

.testimonial {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.testimonial blockquote {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
}
.testimonial figcaption strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}
.testimonial figcaption span {
  color: var(--gold-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Quick Enquiry --- */
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.enquiry-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(221,198,138,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.enquiry-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.enquiry-form label {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.enquiry-form input,
.enquiry-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.enquiry-form textarea { resize: vertical; min-height: 84px; }
@media (max-width: 880px) {
  .enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* FAQ accordion */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { position: relative; padding-right: 32px; transition: color .2s; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold, #B8892E); font-family: var(--font-body);
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--gold, #B8892E); }
