/* ==========================================================================
   Aurelia Grand Hotel — Premium Single-Page Styles
   ========================================================================== */

:root {
  --charcoal: #141414;
  --charcoal-light: #1e1e1e;
  --gold: #c9a469;
  --gold-light: #d4af6a;
  --gold-dark: #a8864a;
  --cream: #f7f3ec;
  --cream-dark: #ede8df;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --border: #e0dbd2;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* --- Typography --- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* --- Buttons --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 164, 105, 0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--gold);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(20, 20, 20, 0.97);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 0.85rem; padding: 0.7rem 1.5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.5) 0%,
    rgba(20, 20, 20, 0.3) 40%,
    rgba(20, 20, 20, 0.7) 100%
  );
}
.hero-content {
  padding: 0 1.5rem;
  margin-top: -8vh;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Booking widget */
.booking-widget {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 92%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-lg);
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
.booking-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.booking-submit { height: 46px; white-space: nowrap; }
.field-error {
  display: block;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.25rem;
  min-height: 1rem;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.45s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 6rem 0; }

/* About */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
}

/* Rooms */
.rooms { background: var(--cream); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-image img { transform: scale(1.06); }
.room-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.room-overlay p {
  color: var(--white);
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.6;
}
.room-card:hover .room-overlay { opacity: 1; }
.room-info { padding: 1.5rem; }
.room-info h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.room-price { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.room-price strong { color: var(--gold-dark); font-size: 1.1rem; }
.room-amenities {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.room-amenities li {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: var(--cream);
  border-radius: 999px;
  color: var(--text-muted);
}

/* Amenities */
.amenities { background: var(--charcoal); color: var(--white); }
.amenities .section-title { color: var(--white); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.amenity {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}
.amenity:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.amenity-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.amenity h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.amenity p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

/* Dining */
.dining { background: var(--white); }
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dining-images {
  position: relative;
  display: grid;
  gap: 1rem;
}
.dining-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.dining-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 50%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.dining-text p { color: var(--text-muted); margin-bottom: 1rem; }
.dining-details {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
}
.dining-details div {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.dining-details strong { color: var(--charcoal); }
.dining-details span { color: var(--text-muted); }

/* Gallery */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonial-carousel { max-width: 700px; margin: 0 auto; position: relative; }
.testimonial-track { position: relative; min-height: 280px; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1.25rem; letter-spacing: 0.15em; }
.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 1.3rem;
  color: var(--charcoal);
  transition: all var(--transition);
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* Offers */
.offers { background: var(--cream); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.offer-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}
.offer-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.offer-body { padding: 1.5rem; }
.offer-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.offer-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.offer-price { font-size: 0.95rem; margin-bottom: 1.25rem !important; }
.offer-price strong { color: var(--gold-dark); font-size: 1.2rem; }
.offer-body .btn-gold { width: 100%; }

/* Location */
.location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.location-info address {
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.location-info address strong { color: var(--charcoal); font-size: 1.05rem; }
.nearby-list {
  list-style: none;
  margin-bottom: 2rem;
}
.nearby-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.nearby-list strong { color: var(--charcoal); }
.location-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Contact form */
.contact { background: var(--cream); }
.contact-form {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.float-field {
  position: relative;
}
.float-field.full { margin-bottom: 1.25rem; }
.float-field input,
.float-field select,
.float-field textarea {
  width: 100%;
  padding: 1.1rem 1rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.float-field textarea { resize: vertical; min-height: 100px; }
.float-field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
}
.float-field textarea + label { top: 1.2rem; transform: none; }
.float-field input:focus,
.float-field select:focus,
.float-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field select:focus + label,
.float-field select:valid + label,
.float-field textarea:focus + label,
.float-field textarea:not(:placeholder-shown) + label {
  top: 0.4rem;
  transform: none;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-success {
  text-align: center;
  color: #27ae60;
  font-weight: 600;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(39, 174, 96, 0.08);
  border-radius: var(--radius);
}

/* Footer */
.footer { background: var(--charcoal); color: rgba(255, 255, 255, 0.7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer-brand p { margin: 1rem 0 1.5rem; font-size: 0.9rem; line-height: 1.7; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.88rem; margin-bottom: 0.4rem; }
.footer-newsletter p { font-size: 0.88rem; margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter-form .btn-gold { padding: 0.7rem 1.2rem; font-size: 0.82rem; white-space: nowrap; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-back { color: var(--gold); font-weight: 600; transition: opacity var(--transition); }
.footer-back:hover { opacity: 0.8; }

/* Sticky mobile book */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(201, 164, 105, 0.4);
  transition: transform var(--transition);
}
.sticky-book:hover { transform: scale(1.05); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--charcoal);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.95rem; padding: 0.25rem 0; }
  .nav-cta { display: none; }
  .hamburger {
    display: flex;
    z-index: 1002;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .logo-text { font-size: 1.05rem; }

  .hero {
    min-height: auto;
    padding: 6.5rem 0 2.5rem;
    justify-content: flex-start;
  }
  .hero-content {
    margin-top: 0;
    padding: 0 1rem 1rem;
  }
  .booking-widget {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 1.5rem auto 0;
    width: min(900px, 92%);
    padding: 1.25rem;
  }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-submit { grid-column: span 2; width: 100%; }

  .about-grid,
  .dining-grid,
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-accent { display: none; }
  .dining-img-secondary { position: static; width: 100%; margin-top: 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; }
  .offers-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-gold { width: 100%; }
  .footer-bottom .container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .sticky-book {
    display: block;
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .location-map iframe { height: 280px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.75rem; right: 0.75rem; }
}

@media (max-width: 480px) {
  .booking-form { grid-template-columns: 1fr; }
  .booking-submit { grid-column: span 1; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 1.8rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .nav-inner { gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
