/* ============================================================
   Golden Acres Guest Lodge — Main Stylesheet
   ============================================================ */

:root {
  /* Logo + Anantara-inspired: olive, cream, warm accents */
  --olive:       #4B5320;
  --olive-light: #556B2F;
  --olive-dark:  #3E4D2C;
  --cream:       #F5F5DC;
  --cream-warm:  #FDF5E6;
  --white:       #FFFEF9;
  --text:        #2C3316;
  --mid:         #4B5320;
  --error:       #c0392b;
  --success:     #27ae60;
  /* Warm accent (Anantara-style) */
  --accent:      #B8860B;
  --accent-light:#D4A84B;
  --sand:        #E8E0D0;
  --charcoal:    #1C1C1C;
  /* Aliases */
  --gold:        var(--olive);
  --gold-light: var(--olive-light);
  --gold-pale:   var(--cream-warm);
  --dark:        var(--olive-dark);
  --dark2:       #3E4D2C;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Nav ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem clamp(2rem, 5vw, 4rem);
  background: rgba(28,28,28,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,168,75,.2);
  transition: padding .3s;
}
#main-nav.scrolled { padding: 1rem 4rem; }
.nav-logo a { display: flex; align-items: center; gap: .75rem; }
.nav-logo-img {
  display: block; height: 48px; width: 48px; flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,253,230,.35);
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; letter-spacing: .08em;
  color: var(--cream-warm);
}
.nav-logo-text em { font-style: italic; color: var(--white); }
.nav-logo span { font-style: italic; color: var(--white); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
.nav-social { display: flex; gap: .6rem; align-items: center; }
.nav-social-link {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: color .3s;
}
.nav-social-link:hover { color: var(--accent-light); }
.nav-icon { width: 22px; height: 22px; display: block; }
.nav-links .nav-social + li { margin-left: .25rem; }

/* Shared icon SVG (amenities, location, etc.) */
.icon-svg {
  width: 1.5em;
  height: 1.5em;
  flex-shrink: 0;
  display: block;
}
.amenity-icon .icon-svg { width: 2rem; height: 2rem; }
.loc-icon .icon-svg,
.map-pin .icon-svg { width: 1.75rem; height: 1.75rem; }
.palm-icon .icon-svg { width: 8rem; height: 8rem; opacity: .15; }
.room-img-icon .icon-svg { width: 4rem; height: 4rem; opacity: .3; }
.nav-links a {
  color: rgba(255,255,255,.7); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; transition: color .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-light); }
.nav-book {
  background: var(--accent) !important; color: var(--charcoal) !important;
  padding: .55rem 1.4rem; font-weight: 600 !important;
}
.nav-book:hover { background: var(--accent-light) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--olive); color: var(--cream-warm);
  padding: .95rem 2.4rem; border: none; cursor: pointer;
  font-family: 'Josefin Sans', sans-serif; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  transition: all .3s;
}
.btn-primary:hover { background: var(--olive-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(75,83,32,.4); }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: .95rem 2.4rem; border: 1px solid rgba(255,255,255,.3); cursor: pointer;
  font-family: 'Josefin Sans', sans-serif; font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 300;
  transition: all .3s;
}
.btn-outline:hover { border-color: var(--olive-light); color: var(--cream-warm); }
.btn-dark {
  display: inline-block;
  background: var(--dark); color: var(--cream-warm);
  padding: .7rem 1.4rem; border: none; cursor: pointer;
  font-family: 'Josefin Sans', sans-serif; font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  transition: all .3s;
}
.btn-dark:hover { background: var(--olive); color: var(--cream-warm); }
.btn-full { width: 100%; text-align: center; }

/* ── Form Elements ── */
.form-group { margin-bottom: 1.4rem; }
.form-label {
  display: block; font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .45rem; font-weight: 600;
}
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1px solid var(--gold-pale);
  background: var(--cream); padding: .8rem 1rem;
  font-family: 'Josefin Sans', sans-serif; font-size: .85rem;
  color: var(--text); outline: none; transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input.error, .form-select.error, .form-textarea.error { border-color: var(--error); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-error { color: var(--error); font-size: .65rem; margin-top: .3rem; display: none; }
.field-error.show { display: block; }

/* ── Section Base (Anantara-style spacing & layout) ── */
section { padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 5vw, 4rem); max-width: 1600px; margin-left: auto; margin-right: auto; }
.section-tag {
  font-size: .6rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.section-title { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; color: var(--dark); letter-spacing: -.02em; }
.section-title em { font-style: italic; color: var(--olive); }
.section-center { text-align: center; }
.section-center .section-tag { justify-content: center; }
.section-center .section-tag::before { display: none; }

/* ── Alert / Flash ── */
.alert {
  padding: 1rem 1.4rem; margin-bottom: 1.5rem;
  font-size: .8rem; line-height: 1.6;
  border-left: 3px solid transparent;
}
.alert-success { background: #e8f8ef; border-color: var(--success); color: #1a5e36; }
.alert-error   { background: #fdf0ef; border-color: var(--error);   color: #7b1c14; }
.alert-info    { background: rgba(75,83,32,.08); border-color: var(--olive); color: var(--mid); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; left: 0; top: 0; right: 0; height: 50%; z-index: 0;
  background: var(--olive-dark);
  min-height: 200px;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 100%;
}
.hero-bg {
  position: absolute; left: 0; top: 50%; right: 0; bottom: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(62,77,44,.75) 0%, rgba(75,83,32,.6) 40%, rgba(44,52,28,.8) 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .06;
  background-image: repeating-linear-gradient(45deg, var(--olive) 0, var(--olive) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.hero-pattern { z-index: 1; }
.hero-overlay {
  position: absolute; left: 0; top: 50%; right: 0; bottom: 0; z-index: 1;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(28,28,28,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  animation: fadeUp 1.2s ease both;
}
.hero-tag {
  font-size: .65rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-tag::before,.hero-tag::after { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-title {
  font-size: clamp(3.5rem,8vw,7rem); font-weight: 300;
  color: var(--white); line-height: 1.05; margin-bottom: .3rem;
}
.hero-title em { font-style: italic; color: var(--cream-warm); }
.hero-sub {
  font-size: .7rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 3rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--cream-warm)); }

/* ── Quick Book Bar ── */
.quick-book {
  background: var(--charcoal); position: sticky; top: 73px; z-index: 100;
  border-bottom: 1px solid rgba(212,168,75,.15);
}
.quick-book form { display: flex; align-items: stretch; max-width: 1200px; margin: 0 auto; }
.qb-field {
  flex: 1; padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(245,253,230,.15);
  display: flex; flex-direction: column; gap: .2rem;
}
.qb-label { font-size: .55rem; letter-spacing: .25em; text-transform: uppercase; color: var(--cream-warm); font-weight: 600; }
.qb-input {
  background: transparent; border: none; color: var(--white);
  font-family: 'Josefin Sans', sans-serif; font-size: .85rem; font-weight: 300;
  outline: none; width: 100%; cursor: pointer;
}
.qb-input::placeholder { color: rgba(255,255,255,.4); }
input[type="date"].qb-input::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(1) saturate(3) hue-rotate(5deg); }
.qb-btn {
  background: var(--olive); color: var(--cream-warm); border: none;
  padding: 0 2.5rem; font-family: 'Josefin Sans', sans-serif;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  cursor: pointer; transition: background .3s; white-space: nowrap;
}
.qb-btn:hover { background: var(--olive-light); }

/* ── About ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); max-width: 1200px; margin: 4rem auto 0; align-items: center; }
.about-text p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.9; color: var(--mid); margin-bottom: 1.5rem; }
.stats-row { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); margin-top: .3rem; }
.about-visual {
  position: relative; height: 480px;
  background: linear-gradient(135deg, var(--dark2), var(--dark)); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,rgba(245,253,230,.06) 0,rgba(245,253,230,.06) 1px,transparent 0,transparent 10px);
  pointer-events: none;
}
.palm-icon { font-size: 8rem; opacity: .15; }
.about-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--olive); padding: 1.5rem; text-align: center;
}
.about-badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--cream-warm); line-height: 1; font-weight: 600; }
.about-badge-text { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cream-warm); margin-top: .3rem; }

/* ── Rooms ── */
.rooms { background: var(--sand); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); max-width: 1200px; margin: 4rem auto 0; }
.room-card {
  background: var(--white); overflow: hidden;
  transition: transform .4s, box-shadow .4s; cursor: pointer;
}
.room-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(75,83,32,.15); }
.room-img {
  height: 220px; background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.room-img-icon { font-size: 4rem; opacity: .3; }
.room-img-overlay {
  position: absolute; inset: 0; background: rgba(75,83,32,.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--white);
}
.room-card:hover .room-img-overlay { opacity: 1; }
.room-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--olive); color: var(--cream-warm);
  font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; padding: .3rem .7rem; font-weight: 600;
}
.room-info { padding: 1.8rem; }
.room-name { font-size: 1.5rem; margin-bottom: .5rem; color: var(--dark); }
.room-desc { font-size: .75rem; color: var(--mid); line-height: 1.7; margin-bottom: 1.2rem; }
.room-features { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.room-feat { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.room-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gold-pale); padding-top: 1.2rem;
}
.room-price-amt { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--gold); }
.room-price-per { font-size: .65rem; color: var(--mid); }

/* ── Amenities ── */
.amenities { background: var(--charcoal); }
.amenities .section-title { color: var(--white); }
.amenities .section-tag { color: var(--accent-light); }
.amenities .section-tag::before { background: var(--accent-light); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.04); max-width: 1200px; margin: 4rem auto 0;
}
.amenity-item { background: rgba(30,30,30,.6); padding: 2.5rem 2rem; text-align: center; transition: background .3s; }
.amenity-item:hover { background: rgba(75,83,32,.4); }
.amenity-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--accent-light); }
.amenity-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cream-warm); margin-bottom: .5rem; }
.amenity-desc { font-size: .7rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── Reviews ── */
.reviews { background: var(--cream-warm); }
.reviews .section-tag { color: var(--accent); }
.reviews .section-tag::before { background: var(--accent); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2vw, 1.5rem); max-width: 1200px; margin: 4rem auto 0; }
.review-card { background: var(--white); padding: 2rem; border-left: 4px solid var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.review-stars { color: var(--accent); margin-bottom: 1rem; }
.review-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.8; color: var(--mid); font-style: italic; margin-bottom: 1.5rem; }
.review-author { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); }
.rating-banner {
  display: flex; align-items: center; gap: 2.5rem; justify-content: center;
  background: var(--charcoal); padding: 2.5rem 3rem; max-width: 1200px; margin: 3rem auto 0;
}
.rating-big { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--accent-light); line-height: 1; }
.rating-divider { width: 1px; height: 60px; background: rgba(212,168,75,.3); }
.rating-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .3rem; }

/* ── Location ── */
.location { background: var(--olive-dark); }
.location .section-title { color: var(--white); }
.location .section-tag { color: var(--accent-light); }
.location .section-tag::before { background: var(--accent-light); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 4rem); max-width: 1200px; margin: 4rem auto 0; }
.location-map {
  height: 360px; background: var(--dark2); border: 1px solid rgba(245,253,230,.2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.map-pin { font-size: 3rem; animation: pulse 2s infinite; margin-bottom: 1rem; }
.map-text { color: rgba(255,255,255,.35); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.location-info p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.9; color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.loc-items { display: flex; flex-direction: column; gap: 1rem; }
.loc-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(245,253,230,.12);
}
.loc-icon { color: var(--cream-warm); flex-shrink: 0; margin-top: .15rem; }
.loc-text { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.loc-text strong { color: var(--cream-warm); display: block; font-weight: 400; font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

/* ── Footer ── */
footer {
  background: var(--olive-dark); padding: 4rem;
  border-top: 1px solid rgba(245,253,230,.1);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
.footer-logo-img {
  height: 56px; width: 56px; margin-bottom: 1rem; display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,253,230,.25);
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300;
  color: var(--cream-warm); margin-bottom: 1rem;
}
.footer-logo-text em { font-style: italic; }
.footer-tagline { font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.7; max-width: 250px; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: .7rem; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(245,253,230,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: .75rem; transition: all .3s;
}
.social-link:hover { border-color: var(--cream-warm); color: var(--cream-warm); }
.footer-social-svg { width: 20px; height: 20px; display: block; }
.footer-col-title { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--cream-warm); margin-bottom: 1.5rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a { color: rgba(255,255,255,.4); font-size: .75rem; transition: color .3s; }
.footer-col a:hover { color: var(--cream-warm); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(245,253,230,.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .65rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .65rem; color: rgba(255,255,255,.3); transition: color .3s; }
.footer-legal a:hover { color: var(--cream-warm); }

/* ── Conference Page ── */
.conference-section { background: var(--cream); }
.conference-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.conference-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.conference-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 280px;
}
.conference-content .section-tag { color: var(--accent); }
.conference-content .section-tag::before { background: var(--accent); }
.conference-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.conference-price-box {
  display: inline-flex;
  flex-direction: column;
  background: var(--olive);
  color: var(--cream-warm);
  padding: 1.25rem 2rem;
  border-radius: 6px;
  margin: 1rem 0;
}
.conference-price-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .9;
}
.conference-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}
.conference-price-amount small { font-size: .65rem; opacity: .9; font-weight: 400; }
.conference-note {
  font-size: .9rem;
  color: var(--mid);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .conference-layout { grid-template-columns: 1fr; }
  .conference-image-wrap { order: -1; }
}

/* ── Gallery Page ── */
.gallery-section { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
}
.gallery-link {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--dark2);
}
.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid);
  font-size: 1rem;
}
.gallery-empty code { background: var(--gold-pale); padding: .2rem .5rem; border-radius: 4px; font-size: .9em; }

/* ── Booking Page ── */
.page-hero {
  background: var(--dark); padding: 8rem 4rem 4rem;
  text-align: center; border-bottom: 1px solid rgba(245,253,230,.1);
}
.page-hero .section-title { color: var(--white); margin-top: .5rem; }
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; max-width: 1200px; margin: 4rem auto; padding: 0 4rem; }
.booking-steps-bar {
  display: flex; gap: 0; margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--gold-pale);
}
.step-btn {
  flex: 1; padding: 1rem 1.2rem; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: all .3s; text-align: center; background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Josefin Sans', sans-serif;
}
.step-btn.active { border-bottom-color: var(--gold); }
.step-btn.done .step-num { color: var(--gold); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-pale); transition: color .3s; display: block; }
.step-btn.active .step-num { color: var(--gold); }
.step-label { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); }
.booking-card { background: var(--white); padding: 2.5rem; border: 1px solid var(--gold-pale); }
.booking-card h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 1.5rem; }

/* Room selector */
.room-option {
  border: 2px solid var(--gold-pale); padding: 1.2rem; margin-bottom: 1rem;
  cursor: pointer; transition: all .3s; display: flex; align-items: center; gap: 1rem;
}
.room-option:hover { border-color: var(--gold); }
.room-option.selected { border-color: var(--gold); background: rgba(75,83,32,.08); }
.radio-dot {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--gold-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.room-option.selected .radio-dot { border-color: var(--gold); background: var(--gold); }
.room-option.selected .radio-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--dark); }
.room-option-details { flex: 1; }
.room-option-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); }
.room-option-cap { font-size: .65rem; color: var(--mid); }
.room-option-price { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); text-align: right; white-space: nowrap; }
.room-option-price small { font-size: .7rem; color: var(--mid); }

/* Nights banner */
.nights-banner {
  background: var(--olive); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; margin: 1.5rem 0;
}
.nights-banner-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-warm); }
.nights-banner-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream-warm); }

/* Payment methods */
.pay-methods { display: flex; gap: .8rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pay-method {
  border: 2px solid var(--gold-pale); padding: .75rem 1.2rem;
  cursor: pointer; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  transition: all .3s; color: var(--mid); background: none;
  font-family: 'Josefin Sans', sans-serif;
}
.pay-method.active { border-color: var(--gold); color: var(--dark); background: rgba(75,83,32,.08); }
.card-brands { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.card-brand {
  background: var(--dark); color: var(--cream-warm); padding: .3rem .6rem;
  font-size: .65rem; font-weight: 600; letter-spacing: .05em;
}

/* Booking summary sidebar */
.booking-summary {
  background: var(--dark); padding: 2.5rem; color: var(--white);
  position: sticky; top: 140px; height: fit-content;
  align-self: start;
}
.summary-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream-warm); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(245,253,230,.2); }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .8rem; font-size: .8rem; color: rgba(255,255,255,.65); }
.summary-row.total { border-top: 1px solid rgba(245,253,230,.2); padding-top: 1rem; margin-top: 1rem; font-size: 1rem; color: var(--white); }
.summary-val { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--cream-warm); }
.summary-val.big { font-size: 1.8rem; }
.summary-perks { margin-top: 1.8rem; padding: 1rem; background: rgba(75,83,32,.12); font-size: .7rem; color: rgba(255,255,255,.5); line-height: 1.8; }

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; }
.booking-nav { display: flex; justify-content: space-between; margin-top: 2rem; }

/* Confirmation */
.confirm-card { text-align: center; padding: 3rem; }
.confirm-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirm-title { font-size: 2.5rem; color: var(--dark); margin-bottom: .5rem; }
.confirm-ref {
  display: inline-block; background: var(--gold-pale); padding: .8rem 2.5rem;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--mid); margin: 1.5rem 0;
}
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; margin: 2rem 0; }
.confirm-item-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.confirm-item-val { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--dark); }
.confirm-address { background: var(--gold-pale); padding: 1.5rem; text-align: left; font-size: .8rem; color: var(--mid); line-height: 2; margin: 1.5rem 0; }
.confirm-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Admin ── */
.admin-wrap { max-width: 1300px; margin: 6rem auto 4rem; padding: 0 2rem; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .78rem; }
.admin-table th {
  background: var(--dark); color: var(--cream-warm); padding: .9rem 1rem;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; text-align: left;
}
.admin-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--gold-pale); color: var(--text); }
.admin-table tr:hover td { background: rgba(75,83,32,.06); }
.status-badge {
  display: inline-block; padding: .25rem .7rem;
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}
.status-confirmed  { background: #e8f8ef; color: #1a5e36; }
.status-pending    { background: #fff7e0; color: #7a5c0a; }
.status-cancelled  { background: #fdf0ef; color: #7b1c14; }
.status-checked_in { background: rgba(75,83,32,.15); color: var(--mid); }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.admin-stat-card { background: var(--white); padding: 1.8rem; border: 1px solid var(--gold-pale); }
.admin-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.admin-stat-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); margin-top: .3rem; }

/* ── Check Booking ── */
.check-booking-wrap { max-width: 600px; margin: 8rem auto 6rem; padding: 0 2rem; }
.booking-detail-card { background: var(--white); padding: 3rem; border: 1px solid var(--gold-pale); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(8px); } }
@keyframes pulse  { 0%,100% { transform:scale(1); } 50% { transform:scale(1.2); } }
.fade-in { opacity:0; transform:translateY(20px); transition:opacity .7s ease,transform .7s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ── Chatbot ── */
.chatbot-wrap { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; font-family: 'Josefin Sans', sans-serif; }
.chatbot-toggle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--olive); color: var(--cream-warm);
  border: 2px solid rgba(245,253,230,.4); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(75,83,32,.4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.chatbot-toggle:hover { background: var(--olive-light); transform: scale(1.05); box-shadow: 0 6px 24px rgba(75,83,32,.5); }
.chatbot-toggle-icon { width: 28px; height: 28px; display: block; }
.chatbot-toggle-close { display: none; font-size: 1.6rem; line-height: 1; }
.chatbot-wrap.open .chatbot-toggle-icon { display: none; }
.chatbot-wrap.open .chatbot-toggle-close { display: block; }

.chatbot-panel {
  position: absolute; bottom: 70px; right: 0;
  width: 360px; max-width: calc(100vw - 2rem); max-height: 480px;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: none; flex-direction: column;
  overflow: hidden; border: 1px solid var(--gold-pale);
}
.chatbot-wrap.open .chatbot-panel {
  display: flex;
}
.chatbot-header {
  background: var(--olive); color: var(--cream-warm);
  padding: 1rem 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
}
.chatbot-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; }
.chatbot-subtitle { font-size: .7rem; opacity: .9; width: 100%; }
.chatbot-close {
  margin-left: auto; background: none; border: none; color: inherit;
  font-size: 1.5rem; cursor: pointer; padding: 0 .25rem; line-height: 1;
  opacity: .85;
}
.chatbot-close:hover { opacity: 1; }

.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: .75rem;
  min-height: 200px; max-height: 320px; background: var(--cream);
}
.chatbot-msg { max-width: 88%; align-self: flex-start; }
.chatbot-msg-user { align-self: flex-end; }
.chatbot-msg p {
  margin: 0; padding: .75rem 1rem; font-size: .85rem; line-height: 1.5;
  border-radius: 12px;
}
.chatbot-msg-bot p { background: var(--white); color: var(--text); border-bottom-left-radius: 4px; border: 1px solid var(--gold-pale); }
.chatbot-msg-user p { background: var(--olive); color: var(--cream-warm); border-bottom-right-radius: 4px; }
.chatbot-msg-bot p strong { color: var(--olive); }
.chatbot-msg a { color: var(--olive); text-decoration: underline; }

.chatbot-input-wrap {
  display: flex; gap: .5rem; padding: .75rem 1rem;
  background: var(--white); border-top: 1px solid var(--gold-pale);
}
.chatbot-input {
  flex: 1; padding: .7rem 1rem; border: 1px solid var(--gold-pale);
  border-radius: 8px; font-family: inherit; font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.chatbot-input:focus { border-color: var(--olive); }
.chatbot-send {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--olive); color: var(--cream-warm); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.chatbot-send:hover { background: var(--olive-light); }
.chatbot-send:disabled { opacity: .6; cursor: not-allowed; }

@media (max-width: 400px) {
  .chatbot-panel { width: calc(100vw - 2rem); right: -0.5rem; }
}

/* ── Print ── */
@media print {
  nav, footer, .booking-nav, .confirm-actions, .quick-book, .chatbot-wrap { display: none !important; }
  body { background: white; color: black; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; padding: 0 2rem; }
  .booking-summary { position: static; }
}
@media (max-width: 900px) {
  #main-nav { padding: 1rem 2rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(28,28,28,.98); padding: 1rem 2rem 2rem; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 4rem 2rem; }
  .about-grid,.location-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quick-book form { flex-direction: column; }
  .qb-field { border-right: none; border-bottom: 1px solid rgba(245,253,230,.15); }
  .qb-btn { padding: 1rem 2rem; }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .confirm-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
