/* =============================================
   The Rachata @ Ayothaya — Main Stylesheet
   Color palette: Crimson Red #8B1A1A | Off-White #F5F0E8 | Deep Crimson #6B1313 | Gold #C9A84C
   No black anywhere — section backgrounds are off-white, crimson, or gold only.
   ============================================= */

:root {
  --red:       #8B1A1A;
  --red-dark:  #6B1313;
  --red-light: #A52020;
  --cream:     #F5F0E8;
  --cream-dark:#EDE6D8;
  --white:     #FFFFFF;
  --dark:      #8B1A1A;   /* crimson — used for dark section BACKGROUNDS (never black) */
  --ink:       #2b2020;   /* warm near-black — used for body TEXT and headings */
  --gold:      #C9A84C;
  --gold-light:#E0C97A;
  --grey:      #6B6B6B;
  --grey-light:#C8C0B4;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Raleway', sans-serif;
  --transition: 0.35s ease;
}

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

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.section-label {
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ---- Book Now (always visible) ---- */
.book-now-fixed {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
  background: var(--red);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 999;
  transition: background var(--transition);
}
.book-now-fixed:hover { background: var(--red-dark); color: var(--white); }

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  /* subtle crimson scrim so the white logo + nav stay legible over bright hero photos */
  background: linear-gradient(to bottom, rgba(61,11,11,0.72) 0%, rgba(61,11,11,0) 100%);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(139,26,26,0.97);
  box-shadow: 0 2px 20px rgba(107,19,19,0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.75rem;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.45));
}
.nav-logo .logo-top {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-logo .logo-at {
  color: var(--red-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 0.6rem;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--red-light);
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0.6rem; right: 0.6rem; }
.nav-book {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.55rem 1.05rem !important;
  text-shadow: none;
}
.nav-book:hover { background: var(--red-dark); }
.nav-book::after { display: none !important; }

/* Language dropdown */
.nav-lang { position: relative; }
.nav-lang-btn {
  display: flex; align-items: center; gap: 0.3rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 0.6rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.nav-lang-btn:hover { color: var(--white); }
.nav-lang-menu {
  position: absolute; top: 100%; right: 0; margin: 0;
  list-style: none; padding: 0.3rem 0;
  min-width: 140px; background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18); border-radius: 4px; overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 1000;
}
.nav-lang.open .nav-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-lang-menu a {
  display: block; padding: 0.55rem 1.1rem;
  font-size: 0.82rem; letter-spacing: 0.04em; text-transform: none;
  color: var(--ink); transition: background .2s ease, color .2s ease;
}
.nav-lang-menu a::after { display: none; }
.nav-lang-menu a:hover { background: var(--cream); color: var(--red); }
.nav-lang-menu a.active { color: var(--red); font-weight: 700; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity;
}
.hero-bg.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(107,19,19,0.80) 0%,
    rgba(139,26,26,0.32) 50%,
    rgba(139,26,26,0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 1rem;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 0.4rem;
}
.hero-content h1 .at-mark { color: var(--red-light); }
.hero-location {
  font-size: 1rem;
  color: var(--grey-light);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ---- Quick Booking Bar ---- */
.booking-bar {
  background: var(--red-dark);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.booking-bar .bfield {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.booking-bar .bfield label,
.bk-strip-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.booking-bar .bfield input,
.booking-bar .bfield select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.3rem 0.5rem 0.3rem 0;
  outline: none;
  min-width: 160px;
  cursor: pointer;
}
.booking-bar .bfield select option { background: var(--dark); color: var(--white); }
.booking-bar .bfield input:focus,
.booking-bar .bfield select:focus {
  border-bottom-color: var(--red-light);
}
.booking-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ---- Sections ---- */
.section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto 2.5rem; }

.bg-cream { background: var(--cream-dark); }
.bg-dark  { background: var(--dark); color: var(--white); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-subtitle { color: var(--grey-light); }
.bg-red { background: var(--red); color: var(--white); }

/* Full-width wrapper for bg sections */
.section-wrap {
  width: 100%;
}
.section-wrap .section {
  padding: 6rem 3rem;
}

/* ---- Cards Grid ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--grey-light);
  position: relative;
  overflow: hidden;
}
.card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.8rem; }
.card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.card-text { font-size: 0.9rem; color: var(--grey); margin-bottom: 1.4rem; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.card-price { font-family: var(--font-head); font-size: 1.3rem; }
.card-price .from { font-size: 0.7rem; color: var(--grey); display: block; }

/* ---- Feature Split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  align-items: stretch;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
}
.split:hover .split-img img { transform: scale(1.05); }
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  background: var(--white);
}
.split-content.dark {
  background: var(--dark);
  color: var(--white);
}
.split-content.dark .section-title { color: var(--white); }
.split-content.dark p { color: var(--grey-light); }

/* ---- Amenities Icons ---- */
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--grey);
}
.amenity-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.5rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.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(139,26,26,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(139,26,26,0.25); }

/* ---- Placeholder Images (colored blocks) ---- */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---- Stats Bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 4rem 3rem;
  background: var(--dark);
}
.stat-item {
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--red-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 0.5rem;
  display: block;
}

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  padding: 7rem 3rem;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--red);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2rem; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--grey); margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-location { font-size: 0.75rem; color: var(--grey); }
.stars { color: #C9A84C; margin-bottom: 1rem; font-size: 0.9rem; }

/* ---- Page Header ---- */
.page-header {
  height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,19,19,0.78) 0%, transparent 60%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.page-header-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
}
.breadcrumb {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--red-light); }
.breadcrumb .sep { margin: 0 0.5rem; }

/* ---- Room Detail ---- */
.room-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 2rem 0;
}
.feature-box {
  background: var(--cream);
  border: 1px solid rgba(139,26,26,0.10);
  border-radius: 6px;
  padding: 1.15rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.2rem;
}
.feature-box .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.55rem;
  color: var(--red);
}
.feature-box strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.feature-box span {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--grey);
}
/* On the dark Signature room: gold icons, lighter borders, readable text */
.split-content.dark .feature-box { border-color: rgba(255,255,255,0.14); }
.split-content.dark .feature-box .icon { color: var(--gold-light); }
.split-content.dark .feature-box strong { color: var(--white); }
.split-content.dark .feature-box span { color: rgba(255,255,255,0.6); }

/* Buttons sitting on crimson sections turn gold so they don't blend in */
.split-content.dark .btn-primary,
.bg-dark .btn-primary {
  background: var(--gold);
  color: var(--red-dark);
  border-color: var(--gold);
}
.split-content.dark .btn-primary:hover,
.bg-dark .btn-primary:hover {
  background: var(--gold-light);
  color: var(--red-dark);
}

/* ---- Map / Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail .icon {
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-detail p { font-size: 0.9rem; color: var(--grey); }
.contact-detail strong { color: var(--ink); display: block; margin-bottom: 0.2rem; }

.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.4rem; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--grey-light);
  background: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 140px; }

.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  margin-top: 3rem;
}

/* ---- Getting Here ---- */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.transport-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition);
}
.transport-card:hover { transform: translateY(-4px); }
.transport-icon {
  width: 64px; height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
}
.transport-card h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}
.transport-card p { font-size: 0.88rem; color: var(--grey); }

/* ---- Offers ---- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.offer-card {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform var(--transition);
}
.offer-card:hover { transform: translateY(-5px); }
.offer-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  font-weight: 700;
}
.offer-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--grey-light); }
.offer-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.offer-card:hover .offer-img img { transform: scale(1.06); }
.offer-body { padding: 1.8rem; }
.offer-period { font-size: 0.75rem; color: var(--grey); margin-bottom: 0.4rem; letter-spacing: 0.08em; }
.offer-body h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 0.6rem; }
.offer-body p { font-size: 0.88rem; color: var(--grey); margin-bottom: 1.4rem; }
.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.offer-price { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.offer-price small { font-size: 0.72rem; color: var(--grey); font-family: var(--font-body); display: block; }

/* ---- Explore Tabs ---- */
.explore-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tab-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--grey-light);
  background: transparent;
  color: var(--grey);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }

/* ---- Cafe / Dining ---- */
.menu-section { margin-bottom: 3rem; }
.menu-section h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--red);
}
.menu-item { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-bottom: 1px dotted var(--cream-dark); gap: 1rem; }
.menu-item-name { font-weight: 600; font-size: 0.92rem; }
.menu-item-desc { font-size: 0.82rem; color: var(--grey); }
.menu-item-price { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; }

/* ---- Footer ---- */
.site-footer {
  background: #6B1313;
  color: rgba(255,255,255,0.78);
  padding: 5rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-top {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-logo .logo-at { color: var(--red-light); }
.footer-logo p {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
}
.footer-logo .social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 36px; height: 36px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--red-light); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--red-light); }

/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(107,19,19,0.97);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---- Decorative Red Bar ---- */
.red-bar {
  height: 5px;
  background: var(--red);
  width: 60px;
  margin-bottom: 1.5rem;
}
.red-bar.center { margin-left: auto; margin-right: auto; }

/* ---- Responsive ---- */
/* Collapse the horizontal nav into the hamburger menu below 1200px */
@media (max-width: 1200px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; text-align: left; position: absolute; top: 100%; left: 0; right: 0; background: rgba(139,26,26,0.98); padding: 1rem 1.75rem 1.75rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  /* All menu items left-aligned */
  .nav-links a:not(.nav-book) { display: block; text-align: left; padding: 0.9rem 0.25rem; font-size: 0.9rem; letter-spacing: 0.1em; border-bottom: 1px solid rgba(255,255,255,0.12); text-shadow: none; white-space: normal; }
  .nav-links a:not(.nav-book)::after { display: none; }
  .nav-lang { width: 100%; }
  .nav-lang-btn { width: 100%; justify-content: flex-start; padding: 0.9rem 0.25rem; font-size: 0.9rem; letter-spacing: 0.1em; text-shadow: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-lang-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0; min-width: 0; border-radius: 0; }
  .nav-lang-menu a { color: rgba(255,255,255,0.8); padding: 0.7rem 0.25rem 0.7rem 1.5rem; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .nav-lang-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
  .nav-lang-menu a.active { color: var(--gold-light); }
  /* Book Now stays centered */
  .nav-links li:last-child { text-align: center; margin-top: 1.25rem; }
  .nav-book { display: inline-block; }
  .nav-toggle { display: flex; }
}

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-img { min-height: 320px; }
  .split-content { padding: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(139,26,26,0.98); padding: 1.5rem; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  /* Language switcher shows inline (no dropdown) inside the mobile menu */
  .nav-lang { width: 100%; }
  .nav-lang-btn { width: 100%; justify-content: flex-start; padding: 0.9rem 1rem; font-size: 0.78rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-lang-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; padding: 0; min-width: 0; border-radius: 0; }
  .nav-lang-menu a { color: rgba(255,255,255,0.85); padding-left: 2rem; }
  .nav-lang-menu a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
  .nav-lang-menu a.active { color: var(--gold-light); }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 1rem 1.5rem; }
  .hero-content { padding: 4rem 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .booking-bar { padding: 1.5rem; gap: 1rem; }
  .booking-divider { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .room-features { grid-template-columns: 1fr 1fr; }
  .book-now-fixed { display: none; }
  .page-header { height: 300px; }
  .cta-banner { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .split-content { padding: 2rem 1.5rem; }
}
