/* =========================================================
   NATIONAL HOTEL — Design tokens
   ========================================================= */
:root {
  --charcoal: #1c1812;
  --charcoal-2: #241f17;
  --charcoal-3: #2c2519;
  --gold: #c9a24b;
  --gold-light: #e4c77e;
  --gold-deep: #8a744a;
  --ivory: #f8f4ea;
  --ivory-2: #efe7d6;
  --pine: #223129;
  --pine-light: #2f4438;
  --text-dark: #221d16;
  --text-muted: #1c160a;
  --text-on-dark-muted: #b9ae98;
  --radius: 2px;
  --ease: cubic-bezier(.25, .8, .25, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', Arial, sans-serif;
}

/* =========================================================
   Base
   ========================================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .3px;
  margin: 0;
}

p { line-height: 1.85; color: var(--text-muted); font-weight: 300; }

a { text-decoration: none; color: inherit; transition: color .3s var(--ease); }

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

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

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container-xl { max-width: 1280px; }

/* Buttons */
.btn { border-radius: var(--radius); font-family: var(--font-body); letter-spacing: 1.5px; font-size: .78rem; font-weight: 500; text-transform: uppercase; padding: .95rem 2.1rem; transition: all .4s var(--ease); border: 1px solid transparent; }

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-gold::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn-gold:hover { color: var(--gold-light); }
.btn-gold:hover::before { transform: translateX(0); }

.btn-outline-ivory {
  background: transparent;
  border-color: rgba(248,244,234,.55);
  color: var(--ivory);
}
.btn-outline-ivory:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }

.btn-outline-dark-gold {
  background: transparent;
  border-color: var(--gold-deep);
  color: var(--text-dark);
}
.btn-outline-dark-gold:hover { background: var(--charcoal); color: var(--gold-light); border-color: var(--charcoal); }

.btn-sm-pill { padding: .7rem 1.6rem; font-size: .72rem; }

/* Eyebrow + flourish signature element */
.eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.section--dark .eyebrow, .hero .eyebrow { color: var(--gold-light); }
.eyebrow .flourish { flex: none; }
.eyebrow.center { justify-content: center; }

.flourish { width: 46px; height: 14px; }
.flourish svg { width: 100%; height: 100%; display: block; }

.section-heading { max-width: 640px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: clamp(2rem, 3.2vw, 2.9rem); line-height: 1.15; }
.section-heading p { margin-top: 1rem; }

.section { padding: 6.5rem 0; position: relative; }
.section--tight { padding: 4.5rem 0; }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }
.section--dark p { color: var(--text-on-dark-muted); }
.section--ivory2 { background: var(--ivory-2); }

.divider-rule {
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}

/* =========================================================
   Preloader
   ========================================================= */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-ring {
  width: 58px; height: 58px; border-radius: 50%;
  border: 1.5px solid rgba(201,162,75,.25);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
  position: relative;
}
.preloader-ring::after {
  content: "N"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: var(--gold); font-size: 1.1rem;
  animation: spin-rev 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  padding: 1.35rem 0;
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s var(--ease);
  background: linear-gradient(to bottom, rgba(28,24,18,.75), rgba(28,24,18,0));
}
.site-header.is-scrolled {
  background: var(--charcoal);
  padding: .7rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.site-header .navbar-brand img { height: 86px; width: auto; transition: height .4s var(--ease); }
.site-header.is-scrolled .navbar-brand img { height: 58px; }

.main-nav { display: flex; align-items: center; gap: 2.1rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  color: var(--ivory);
  font-size: .8rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: .3rem 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1.4rem; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid rgba(248,244,234,.35);
  background: transparent;
  cursor: pointer;
  z-index: 1060;
}
.nav-toggle span { width: 18px; height: 1px; background: var(--ivory); margin: 0 auto; transition: all .35s var(--ease); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile off-canvas — opens left to right */
.offcanvas-backdrop-custom {
  position: fixed; inset: 0; background: rgba(15,12,8,.55);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease);
  z-index: 1045;
}
.offcanvas-backdrop-custom.is-visible { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(84vw, 360px);
  background: var(--charcoal);
  border-right: 1px solid rgba(201,162,75,.25);
  z-index: 1050;
  transform: translateX(-104%);
  transition: transform .5s var(--ease);
  padding: 6.5rem 2.2rem 2.5rem;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu .main-nav { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
.mobile-menu .main-nav li { width: 100%; border-bottom: 1px solid rgba(248,244,234,.08); }
.mobile-menu .main-nav a { display: block; padding: 1rem 0; font-size: .9rem; }
.mobile-menu .mobile-menu-foot { margin-top: 2.5rem; }
.mobile-menu .mobile-menu-foot p { font-size: .8rem; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-slide.is-active img { animation: heroZoom 7s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,12,.72) 0%, rgba(20,17,12,.55) 45%, rgba(20,17,12,.92) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: 4rem; }
.hero-content .eyebrow { justify-content: center; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  color: var(--ivory);
  line-height: 1.08;
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero .lead {
  color: var(--text-on-dark-muted);
  max-width: 560px; margin: 1.6rem auto 2.4rem;
  font-size: 1.05rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 30px;}
.hero-carousel-controls {
  position: absolute; right: clamp(1rem, 4vw, 4rem); bottom: 2.25rem; z-index: 2;
  display: flex; align-items: center; gap: .9rem;
}
.hero-carousel-arrow {
  width: 2.75rem; height: 2.75rem; border: 1px solid rgba(248,244,234,.6); border-radius: 50%;
  background: rgba(20,17,12,.25); color: var(--ivory); display: grid; place-items: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hero-carousel-arrow:hover, .hero-carousel-arrow:focus-visible { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.hero-carousel-dots { display: flex; align-items: center; gap: .5rem; }
.hero-carousel-dots button { width: 1.8rem; height: .2rem; border: 0; padding: 0; background: rgba(248,244,234,.45); transition: background .2s ease, width .2s ease; }
.hero-carousel-dots button.is-active { width: 3rem; background: var(--gold-light); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2.1rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: var(--text-on-dark-muted); font-size: .68rem; letter-spacing: 3px; text-transform: uppercase;
  z-index: 1;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Booking widget */
.booking-widget {
  position: relative; z-index: 2;
  background: var(--ivory);
  margin-top: -1.4rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.28);
  border-top: 3px solid var(--gold);
}
.booking-widget .field-label {
  font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-deep); font-weight: 600; margin-bottom: .4rem; display: block;
}
.booking-widget .form-control, .booking-widget .form-select {
  border-radius: 0; border: 1px solid #ddd3bb; background: #fff;
  padding: .7rem .9rem; font-size: .88rem; font-family: var(--font-body);
}
.booking-widget .form-control:focus, .booking-widget .form-select:focus {
  box-shadow: none; border-color: var(--gold);
}
.booking-widget .btn { width: 100%; height: 100%; }

/* =========================================================
   About / Welcome
   ========================================================= */
.about-media { position: relative; }
.about-media .frame-main { border: 1px solid rgba(201,162,75,.4); padding: 14px; }
.about-media .frame-main img { width: 100%; height: 560px; object-fit: cover; }
.about-media .frame-accent {
  position: absolute; bottom: -2.2rem; right: -1.6rem;
  width: 46%;
  border: 6px solid var(--ivory);
  box-shadow: 0 25px 50px rgba(0,0,0,.22);
}
.about-media .frame-accent img { width: 100%; height: 220px; object-fit: cover; }
.about-media .est-badge {
  position: absolute; top: -1.5rem; left: -1.5rem;
  background: var(--charcoal); color: var(--gold-light);
  width: 118px; height: 118px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-display); font-size: .85rem; line-height: 1.35;
  border: 1px solid rgba(201,162,75,.5);
  box-shadow: 0 15px 30px rgba(0,0,0,.25);
}
.about-media .est-badge strong { display: block; font-size: 1.5rem; color: var(--gold); }

.about-stats { margin-top: 2.6rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat-item { border-left: 1px solid rgba(34,29,22,.14); padding-left: 1.1rem; }
.stat-item .stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--charcoal); font-weight: 600; line-height: 1; }
.stat-item .stat-num .plus { color: var(--gold); }
.stat-item .stat-label { font-size: .74rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted); margin-top: .4rem; }

/* =========================================================
   Rooms
   ========================================================= */
.room-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(28,24,18,.08);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.room-card:hover { box-shadow: 0 34px 60px rgba(28,24,18,.2); }
.room-card .room-media { position: relative; overflow: hidden; height: 320px; }
.room-card .room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.room-card:hover .room-media img { transform: scale(1.12) rotate(.5deg); }
.room-card .room-price {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--charcoal); color: var(--gold-light);
  padding: .5rem 1rem; font-family: var(--font-display); font-size: 1rem; letter-spacing: .5px;
  border: 1px solid rgba(201,162,75,.4);
}
.room-card .room-price span { font-size: .65rem; color: var(--text-on-dark-muted); font-family: var(--font-body); letter-spacing: 1px; }
.room-card .room-body { padding: 1.6rem 1.7rem 1.9rem; }
.room-card h4 { font-size: 1.5rem; margin-bottom: .5rem; }
.room-card .room-amenities { display: flex; gap: 1.1rem; margin: 1rem 0 1.3rem; color: var(--text-muted); font-size: .78rem; }
.room-card .room-amenities span { display: flex; align-items: center; gap: .4rem; }
.room-card .room-amenities i { color: var(--gold); }
.room-card .room-cta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eee3cc; padding-top: 1.1rem; }
.room-card .room-cta a { font-size: .78rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500; color: var(--text-dark); }
.room-card .room-cta a i { margin-left: .4rem; transition: transform .35s var(--ease); }
.room-card .room-cta a:hover { color: var(--gold-deep); }
.room-card .room-cta a:hover i { transform: translateX(4px); }

/* =========================================================
   Amenities
   ========================================================= */
.amenity-card {
  text-align: center; padding: 2.6rem 1.6rem; border: 1px solid rgba(248,244,234,.1);
  transition: all .4s var(--ease); height: 100%;
  background: linear-gradient(180deg, rgba(248,244,234,.02), transparent);
}
.amenity-card:hover { border-color: rgba(201,162,75,.5); transform: translateY(-8px); background: rgba(201,162,75,.04); }
.amenity-card .amenity-icon {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 1.4rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,162,75,.4);
  font-size: 1.5rem; color: var(--gold);
  transition: all .45s var(--ease);
}
.amenity-card:hover .amenity-icon { background: var(--gold); color: var(--charcoal); transform: rotateY(360deg); }
.amenity-card h4 { font-size: 1.25rem; margin-bottom: .7rem; }
.amenity-card p { font-size: .88rem; margin: 0; }

/* =========================================================
   Gallery
   ========================================================= */
.gallery-item { position: relative; overflow: hidden; margin-bottom: 1.5rem; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,24,18,0) 40%, rgba(28,24,18,.85) 100%);
  opacity: 0; transition: opacity .45s var(--ease);
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-label { color: var(--ivory); font-family: var(--font-display); font-size: 1.1rem; }
.gallery-item .gallery-plus {
  position: absolute; top: 1.1rem; right: 1.1rem; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid var(--gold);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7); transition: all .4s var(--ease);
}
.gallery-item:hover .gallery-plus { opacity: 1; transform: scale(1); }
.gallery-h-sm { height: 260px; }
.gallery-h-lg { height: 555px; }

/* =========================================================
   Offer / CTA banner
   ========================================================= */
.offer-banner { position: relative; padding: 16rem 0; overflow: hidden; }
.offer-banner .offer-media { position: absolute; inset: 0; }
.offer-banner .offer-media img { width: 100%; height: 100%; object-fit: cover; }
/* .offer-banner .offer-media::after { content: ""; position: absolute; inset: 0; background: rgba(20,17,12,.48); } */
.offer-banner .offer-content { position: relative; z-index: 1; text-align: center; color: var(--ivory); }
.offer-banner h2 { color: var(--ivory); font-size: clamp(2rem, 4vw, 3.2rem); max-width: 720px; margin: 0 auto 1.6rem; }

/* =========================================================
   Testimonials
   ========================================================= */
.testimonial-card { text-align: center; max-width: 720px; margin: 0 auto; }
.testimonial-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1.4rem; }
.testimonial-card blockquote { font-family: var(--font-display); font-size: 1.6rem; font-style: italic; line-height: 1.55; color: var(--text-dark); margin: 0 0 1.8rem; }
.testimonial-card .avatar { width: 62px; height: 62px; border-radius: 50%; overflow: hidden; margin: 0 auto .9rem; border: 1px solid var(--gold); }
.testimonial-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card .guest-name { font-weight: 600; letter-spacing: .5px; }
.testimonial-card .guest-loc { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

.testimonial-nav { display: flex; justify-content: center; gap: .7rem; margin-top: 2.4rem; }
.testimonial-nav button {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold-deep); background: transparent; padding: 0; cursor: pointer;
  transition: all .35s var(--ease);
}
.testimonial-nav button.active { background: var(--gold); width: 26px; border-radius: 6px; }

/* =========================================================
   Newsletter
   ========================================================= */
.newsletter-strip { background: var(--pine); color: var(--ivory); padding: 3.4rem 0; }
.newsletter-strip h3 { color: var(--ivory); font-size: 1.9rem; }
.newsletter-form { display: flex; max-width: 440px; margin-left: auto; }
.newsletter-form input {
  flex: 1; border: 1px solid rgba(248,244,234,.35); background: transparent; color: var(--ivory);
  padding: .85rem 1.1rem; font-family: var(--font-body); font-size: .85rem; border-radius: 0;
}
.newsletter-form input::placeholder { color: rgba(248,244,234,.55); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button { border: 1px solid var(--gold); background: var(--gold); color: var(--charcoal); padding: 0 1.6rem; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all .35s var(--ease); }
.newsletter-form button:hover { background: transparent; color: var(--gold); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--charcoal); color: var(--text-on-dark-muted); padding-top: 5.5rem; }
.site-footer h5 { color: var(--ivory); font-size: 1.15rem; margin-bottom: 1.5rem; letter-spacing: .5px; }
.site-footer .footer-brand img { height: 82px; margin-bottom: 1.2rem; }
.site-footer p { color: var(--text-on-dark-muted); font-size: .9rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .8rem; }
.footer-links a { font-size: .88rem; color: var(--text-on-dark-muted); display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a::before { content: ""; width: 5px; height: 1px; background: var(--gold); transition: width .3s var(--ease); }
.footer-links a:hover { color: var(--gold-light); }
.footer-links a:hover::before { width: 12px; }
.footer-contact li { display: flex; gap: .8rem; margin-bottom: 1.1rem; font-size: .88rem; }
.footer-contact i { color: var(--gold); margin-top: .25rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(248,244,234,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(248,244,234,.1); margin-top: 4rem; padding: 1.6rem 0; font-size: .8rem; }
.footer-bottom a { color: var(--gold-light); }

/* Back to top */
.back-to-top {
  position: fixed; right: 1.8rem; bottom: 1.8rem; z-index: 1000;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.3);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .4s var(--ease);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--charcoal); color: var(--gold-light); }

/* =========================================================
   AOS tuning
   ========================================================= */
[data-aos] { pointer-events: auto; }

/* =========================================================
   Utility
   ========================================================= */
.text-gold { color: var(--gold) !important; }
.bg-charcoal { background: var(--charcoal) !important; }
.letter-spacing-2 { letter-spacing: 2px; }
.fw-medium { font-weight: 500; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991.98px) {
  .main-nav.desktop-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.8rem; }
  .about-media .frame-accent { width: 52%; right: 0; }
  .newsletter-form { margin: 1.4rem 0 0; }
  .gallery-h-lg { height: 340px; }
}

@media (max-width: 767.98px) {
    html, body { overflow-x: hidden; }
  .section { padding: 4.2rem 0; }
  .hero { min-height: 35rem; }
  .hero-content { padding-top: 7.5rem; padding-bottom: 8rem; }
  .hero h1 { font-size: 2.5rem; }
  .hero .lead { font-size: .98rem; }
  .hero-carousel-controls { left: 50%; right: auto; bottom: 1.65rem; transform: translateX(-50%); }
  .hero-carousel-arrow { width: 2.45rem; height: 2.45rem; }
  .scroll-cue { display: none; }
  .booking-widget { margin-top: -2.6rem; }
  .about-media .est-badge { width: 92px; height: 92px; font-size: .72rem; left: -.6rem; top: -1rem; }
  .about-media .est-badge strong { font-size: 1.15rem; }
  .gallery-h-lg, .gallery-h-sm { height: 240px; }
  .offer-banner { padding: 4.5rem 0; }
  .testimonial-card blockquote { font-size: 1.25rem; }
  .about-media .frame-main img { height: 450px; }
  .about-media .frame-accent { display: none; }
  .page-hero {min-height: 295px !important;   }
  .page-hero > img {height: 355px !important;}
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Inner pages */
.page-hero { min-height: 430px; position: relative; display: grid; place-items: center; overflow: hidden; background: var(--charcoal); color: var(--ivory); text-align: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(28,24,18,.88), rgba(28,24,18,.58)); z-index: 1; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 2; padding-top: 5rem; }
.page-hero h1 { color: var(--ivory); font-size: clamp(2.8rem, 6vw, 4rem); }
.page-hero p { color: var(--gold-light); letter-spacing: 3px; text-transform: uppercase; font-size: .8rem; }
.inner-card { height: 100%; padding: 2.25rem; background: #fffdf8; border: 1px solid #e7dcc4; }
.inner-card i { color: var(--gold); font-size: 2rem; margin-bottom: 1rem; } 
.inner-card h3 { font-size: 1.55rem; margin-bottom: .65rem; }
.room-detail-image { height: 270px; width: 100%; object-fit: cover; }
.menu-group { padding: 2rem; border: 1px solid #e5d8bc; background: #fffdf8; }
.menu-item { display:flex; justify-content:space-between; gap:1rem; padding:1rem 0; border-bottom:1px solid #eee4d1; }
.menu-item:last-child { border:0; }
.menu-item h5 { font-size:1.12rem; font-family: Jost; font-weight: 500; }
.menu-item span { color:var(--gold-deep); font-weight:600; white-space:nowrap; }
.contact-panel { background:var(--charcoal); padding:3rem; height:100%; }
.contact-panel h2 { color:var(--ivory); }
.contact-panel p, .contact-panel a { color:var(--text-on-dark-muted); }
.contact-panel i { color:var(--gold); width:1.5rem; }
.form-control, .form-select { border-radius:0; border-color:#d9c9a7; padding:.8rem 1rem; }
.form-control:focus, .form-select:focus { border-color:var(--gold); box-shadow:0 0 0 .2rem rgba(201,162,75,.18); }
