/* ==========================================================
   HOTEL PARADIES — Main Stylesheet
   Design: Luxury · Classic · Timeless
   Palette: Warm charcoal + champagne gold + ivory cream
   ========================================================== */

/* ── Custom Properties ────────────────────────────────────── */
:root {
  /* Background tones */
  --bg-dark:        #0c0b09;
  --bg-medium:      #111009;
  --bg-alt:         #181613;
  --bg-card:        #1e1b16;
  --bg-card-hover:  #252018;

  /* Brand colours */
  --gold:           #c9a96e;
  --gold-light:     #dfc28a;
  --gold-dark:      #a8874e;

  /* Text */
  --cream:          #f0ebe2;
  --text-primary:   #e2ddd4;
  --text-muted:     #8a857e;
  --text-light:     #f5f0e8;

  /* Borders */
  --border:         #2a2520;
  --border-gold:    rgba(201, 169, 110, 0.25);

  /* Typography */
  --font-serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'Raleway', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Motion */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

/* ── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

address {
  font-style: normal;
}

/* ── Focus ring (accessibility) ───────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── Typography base ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
}

h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1rem,  2vw, 1.3rem);  }

sup {
  font-size: 0.55em;
  vertical-align: super;
}


/* ==========================================================
   NAVIGATION
   ========================================================== */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: background var(--transition-slow),
              padding var(--transition-slow),
              border-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
  background: rgba(12, 11, 9, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom-color: var(--border);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: color var(--transition);
  line-height: 1.2;
}

.brand-location {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 0.1rem;
}

.nav-brand:hover .brand-name { color: var(--gold); }

/* Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 0.2rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }


/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  background: url('../img/intro-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 11, 9, 0.4) 0%,
    rgba(12, 11, 9, 0.65) 45%,
    rgba(12, 11, 9, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 820px;
  animation: heroFadeIn 2s ease-out both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-preheading {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  width: 180px;
}

.hero-divider span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.hero-tagline {
  font-size: 0.80rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.8;
  animation: heroBounce 2.2s ease infinite;
  z-index: 1;
  transition: opacity var(--transition);
}

.hero-scroll:hover { opacity: 1; }

@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(9px); }
}


/* ==========================================================
   SECTIONS — Common
   ========================================================== */
.section {
  padding: var(--space-xl) 0;
}

.section-dark { background: var(--bg-dark); }
.section-alt  { background: var(--bg-alt);  }

.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.section-title {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.section-intro {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* Scroll fade-in (applied via JS) */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}


/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.85;
}

.about-lead {
  font-size: 1.12rem !important;
  opacity: 1 !important;
  color: var(--cream) !important;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.highlight-item {
  text-align: center;
  padding: 1.6rem 1rem;
  border: 1px solid var(--border-gold);
  transition: border-color var(--transition), background var(--transition);
}

.highlight-item:hover {
  border-color: var(--gold);
  background: var(--bg-card);
}

.highlight-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ==========================================================
   ROOMS
   ========================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: transform var(--transition),
              border-color var(--transition),
              background var(--transition);
  position: relative;
}

.room-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.room-card--featured {
  border-color: var(--border-gold);
}

.room-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.room-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }

.room-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--cream);
  flex: 1;
}

.room-badge {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.2rem 0.65rem;
  font-weight: 600;
  align-self: flex-start;
  margin-left: auto;
}

.room-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.room-features li {
  font-size: 0.82rem;
  color: var(--text-primary);
  padding-left: 1.1rem;
  position: relative;
  opacity: 0.78;
}

.room-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}


/* ==========================================================
   AMENITIES
   ========================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1.2rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}

.amenity-item:hover {
  border-color: var(--border-gold);
  background: var(--bg-card);
}

.amenity-icon {
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.amenity-label {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.4;
}


/* ==========================================================
   GALLERY
   ========================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3px;
  margin-top: 2rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s;
}

.gallery-item:hover img    { transform: scale(1.06); }
.gallery-item:hover::after { background: rgba(201, 169, 110, 0.08); }

.gallery-item:focus {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 4, 3, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  cursor: pointer;
  transition: background var(--transition),
              color var(--transition),
              border-color var(--transition);
  font-family: var(--font-sans);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 72px;
  font-size: 1.8rem;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}


/* ==========================================================
   RESTAURANT
   ========================================================== */
.section-restaurant {
  position: relative;
  background: url('../img/intro-bg1.jpg') center center / cover no-repeat;
  padding: var(--space-xl) 0;
}

.restaurant-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, 0.84);
}

.restaurant-content {
  position: relative;
  z-index: 1;
}

.section-header--light .section-title { color: var(--cream); }

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.restaurant-block {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(12, 11, 9, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color var(--transition);
}

.restaurant-block:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

.restaurant-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.restaurant-detail h3 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 500;
}

.restaurant-detail p {
  font-size: 0.88rem;
  color: var(--text-primary);
  opacity: 0.8;
  line-height: 1.7;
}


/* ==========================================================
   PRICES
   ========================================================== */
.direct-booking {
  max-width: 820px;
  margin: 0 auto 1.8rem;
}

.direct-booking-placeholder {
  padding: 2rem 1.8rem;
  border: 1px dashed var(--border);
  background: var(--bg-card);
  text-align: center;
}

.direct-booking-placeholder p {
  font-size: 0.9rem;
  color: var(--text-primary);
  opacity: 0.8;
  line-height: 1.7;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  max-width: 820px;
  margin: 0 auto;
}

.booking-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color var(--transition),
              background var(--transition),
              transform var(--transition);
  text-align: center;
}

.booking-card:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  color: var(--cream);
  transform: translateY(-4px);
}

.booking-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--cream);
}

.booking-action {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}


/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.contact-address p {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.contact-address svg  { flex-shrink: 0; margin-top: 0.15rem; color: var(--gold); }
.contact-address a    { color: var(--text-primary); }
.contact-address a:hover { color: var(--gold); }

.contact-social {
  margin: 1.5rem 0;
  display: flex;
  gap: 0.8rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-checkin {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-checkin p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.contact-checkin strong { color: var(--text-primary); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* Reset label styles for consent checkbox */
.form-consent label.checkbox-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: inherit;
  font-weight: 300;
  color: var(--text-primary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Validation state */
.form-group input.touched:invalid,
.form-group textarea.touched:invalid {
  border-color: #b03a2e;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-consent span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.form-consent span a { color: var(--gold); }

.btn-submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  align-self: flex-start;
}

.btn-submit:hover { background: var(--gold); color: var(--bg-dark); }
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; }

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.55;
}

/* Captcha group — visual emphasis to distinguish from regular fields */
.captcha-group label strong {
  color: var(--cream);
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 1.05em;
  letter-spacing: 0;
}

.captcha-group input {
  max-width: 140px;
}

.form-success,
.form-error {
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-success {
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #82e0a8;
}

.form-error {
  background: rgba(176, 58, 46, 0.1);
  border: 1px solid rgba(176, 58, 46, 0.35);
  color: #e8a49a;
}


/* ==========================================================
   LOCATION
   ========================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.direction-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.direction-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.direction-item h3 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.direction-item p {
  font-size: 0.9rem;
  color: var(--text-primary);
  opacity: 0.75;
  line-height: 1.7;
}

.map-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-container iframe { display: block; }


/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--bg-medium);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.45;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* Tablet */
@media (max-width: 1000px) {
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .nav-menu { gap: 1.2rem; }
}

/* Mobile nav breakpoint */
@media (max-width: 820px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: var(--bg-medium);
    border-left: 1px solid var(--border);
    padding: 5.5rem 2rem 2rem;
    gap: 0;
    transition: right var(--transition-slow);
    z-index: 999;
    overflow-y: auto;
    align-items: flex-start;
  }

  .nav-menu.open { right: 0; }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 0.82rem;
  }

  .nav-link::after { display: none; }

  .nav-toggle { display: flex; }

  .form-row   { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
}

/* Small mobile */
@media (max-width: 520px) {
  :root { --space-xl: 4rem; }
  .hero-title { font-size: clamp(2.4rem, 14vw, 3.2rem); }
  .amenities-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid    { grid-template-columns: repeat(2, 1fr); }
  .restaurant-grid { grid-template-columns: 1fr; }
  .booking-grid    { grid-template-columns: 1fr; max-width: 360px; }
  .section-header  { margin-bottom: 2.5rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* Print */
@media print {
  #mainNav, .hero-scroll, .lightbox, .nav-toggle { display: none !important; }
  .hero { height: auto; background: none; }
  .hero-overlay { display: none; }
  body { background: white; color: #111; }
  .hero-title, .section-title, h3 { color: #111; }
  a { color: #111; }
  .btn-submit { display: none; }
}
