/* ═══════════════════════════════════════════════════
   GREENWOOD ECO LODGE — Safari Lodge Design System
   Palette: Forest Green · Charcoal Grey · White
   Fonts: Playfair Display (headings) · Lato (body)
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Lato:wght@300;400;700&family=Cinzel:wght@400;600&display=swap');

:root {
  --green:        #2E7D32;
  --green-dark:   #1B5E20;
  --green-light:  #4CAF50;
  --green-muted:  #A5C8A7;
  --grey:         #6B7280;
  --grey-dark:    #374151;
  --grey-light:   #F3F4F6;
  --charcoal:     #1A1A1A;
  --white:        #FFFFFF;
  --cream:        #FAF8F4;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent:  'Cinzel', serif;
  --font-body:    'Lato', sans-serif;

  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.22);
  --radius:       4px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
.display { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
.overline {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--green);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--green); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--grey-dark);
  transform: translateY(-2px);
}
.btn svg, .btn i { font-size: 0.9rem; transition: transform 0.3s; }
.btn:hover svg, .btn:hover i { transform: translateX(4px); }

/* ── Navbar ──────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  padding: 0;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 76px;
  gap: 8px;
}
.navbar.scrolled .navbar-inner { height: 68px; }

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}
.nav-logo-tag {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
/* Leaf icon before logo */
.nav-logo::before {
  display: none;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-accent);
  font-size: 0.64rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

/* Book Now nav button */
.nav-book {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.nav-book a {
  background: var(--green);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.64rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s;
  white-space: nowrap;
}
.nav-book a:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(26,26,26,0.98);
  padding: 20px 40px 30px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 16px; justify-content: center; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Stronger overlay so text is always readable */
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.60) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.20) 100%
  );
  z-index: 1;
}
/* Stripe removed — was causing overlap.
   Bottom fade provides clean transition to booking bar instead. */
.hero-stripe { display: none; }

.hero-content {
  position: relative;
  z-index: 2;          /* above overlay, below nothing */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 8% 140px; /* top: clear navbar | bottom: clear dots */
  max-width: 860px;
  width: 100%;
}
.hero-content .overline { font-size: 0.78rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--green-muted);
}
.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
/* Buttons — flex row, wrap on small screens, never overlap slides */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Slide indicator dots — pinned to bottom-left, above overlay */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 8%;
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.4) translateY(28px); }
}

/* ── Quick Booking Bar ───────────────────────────── */
.booking-bar {
  background: var(--charcoal);
  padding: 0;
  position: relative;
  z-index: 10;
}
.booking-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.booking-field {
  flex: 1;
  min-width: 160px;
  padding: 20px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-field label {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.booking-field input, .booking-field select {
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  width: 100%;
}
.booking-field select option { background: var(--charcoal); color: var(--white); }
.booking-field input::placeholder { color: rgba(255,255,255,0.5); }
.booking-btn-wrap {
  display: flex;
  align-items: center;
  padding: 16px 28px;
}
.booking-btn-wrap .btn { white-space: nowrap; }

/* ── Sections ────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.whats-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 24px;
  text-align: center;
}

@media (max-width: 720px) {
  .whats-included-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About Section ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 80%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 55%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--green);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 4px solid var(--white);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.about-badge-text {
  font-family: var(--font-accent);
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.about-text p {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.stat-item { text-align: center; flex: 1; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  display: block;
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Rooms ───────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  background: var(--white);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-price-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 2px;
}
.room-card-body { padding: 24px; }
.room-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.room-features {
  display: flex;
  gap: 16px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.room-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--grey);
}
.room-feat i { color: var(--green); font-size: 0.85rem; }
.room-card-body p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 12px 0 20px;
  line-height: 1.6;
}
.room-card-footer {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-light);
}
.room-card-footer .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 0.65rem; }

/* ── Services ────────────────────────────────────── */
.services-bg {
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.4s;
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-bottom-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
  font-size: 1.5rem;
  color: var(--green);
}
.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
}
.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ── Gallery ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.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.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,125,50,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(46,125,50,0.4); }
.gallery-item-overlay i {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay i { opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-bg {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.testimonials-bg::before {
  content: '"';
  position: absolute;
  top: -60px; left: 5%;
  font-family: var(--font-display);
  font-size: 40rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.testimonials-bg .section-label { color: var(--gold); }
.testimonials-bg .section-label::before { background: var(--gold); }
.testimonials-bg .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: background 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--green-muted);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.85rem; }
.testimonial-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-muted);
}
.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.testimonial-author-role {
  font-size: 0.78rem;
  color: var(--gold);
  font-family: var(--font-accent);
  letter-spacing: 1px;
}

/* ── Page Hero (inner pages) ─────────────────────── */
.page-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 0;
  padding-top: 80px;
}
.menu-page-hero {
  background-image: url('https://lh3.googleusercontent.com/pw/AP1GczOQQMLijZZPPqS_WQ9NpnXMROEdGjAXse2VBhrGdzY-aHzncb4w3ZSFkTy8f2lZXXS4vJwgADLILAZLwAvbIBTgYInIQd0pIMpCMmSB35m7XcJG2Ws=w1920-h1080-no');
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(46,125,50,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── Booking Form ────────────────────────────────── */
.booking-section { background: var(--cream); }
.booking-form-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.booking-summary-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.booking-summary-card h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.summary-line:last-child { border-bottom: none; }
.summary-line strong { color: var(--white); }
.summary-total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold) !important;
}
#bookingConfirm {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#bookingConfirm .confirm-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
#bookingConfirm h3 { color: var(--charcoal); margin-bottom: 8px; }
#bookingConfirm p { color: var(--grey); font-size: 0.95rem; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contact-info p { color: var(--grey); margin-bottom: 2rem; line-height: 1.8; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-detail:hover .contact-detail-icon {
  background: var(--green);
  color: var(--white);
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  margin-top: 28px;
  background: var(--grey-light);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.55);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.footer-social:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.footer-heading {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.3s, padding-left 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--green-muted);
  flex-shrink: 0;
  transition: width 0.3s;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { width: 22px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--green-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Animations / Reveal ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Utility ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-green  { color: var(--green) !important; }
.text-gold   { color: var(--gold) !important; }
.text-grey   { color: var(--grey) !important; }
.bg-cream    { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); }
.bg-green    { background: var(--green); }
.mt-auto     { margin-top: auto; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16      { gap: 16px; }
.mb-8        { margin-bottom: 8px; }
.mb-16       { margin-bottom: 16px; }
.mb-24       { margin-bottom: 24px; }
.mb-48       { margin-bottom: 48px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE — thorough multi-breakpoint pass
══════════════════════════════════════════════════ */

/* ── 1400px+ desktops: nothing special needed ─────── */

/* ── 1200px tablet landscape ──────────────────────── */
@media (max-width: 1200px) {
  .container, .container-wide { padding: 0 32px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; height: 300px; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .about-grid { gap: 48px; }
  .booking-form-wrap { grid-template-columns: 1fr; gap: 28px; }
  .booking-summary-card { position: static; }
  .contact-grid { gap: 40px; }
}

/* ── 1024px — switch to hamburger ─────────────────── */
@media (max-width: 1024px) {
  .navbar-inner { height: 62px; padding: 0 20px; }
  .nav-links, .nav-book { display: none !important; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 6vw, 4rem); }
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 380px; }

  .booking-form-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ── 768px mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  /* Base */
  .container, .container-wide { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section-sm { padding: 28px 0; }
  .section-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

  /* Navbar */
  .navbar-inner { padding: 0 16px; height: 58px; }
  .nav-logo-name { font-size: 0.95rem; }
  .nav-logo-tag { font-size: 0.5rem; letter-spacing: 2px; }
  .nav-mobile { padding: 16px 20px 24px; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-start; }
  .hero-content { padding: 90px 18px 120px; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.1; }
  .hero-subtitle { font-size: 0.92rem; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  .hero-dots { bottom: 28px; left: 18px; }
  .hero-stripe { display: none; }
  .scroll-hint { display: none; }

  /* Booking bar */
  .booking-bar-inner { flex-direction: column; }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 13px 18px; }
  .booking-btn-wrap { padding: 13px 18px; }
  .booking-btn-wrap .btn { width: 100%; justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-images { height: 280px; }
  .about-img-main { width: 78%; }
  .about-img-accent { width: 56%; }
  .about-badge { width: 76px; height: 76px; }
  .about-badge-num { font-size: 1.2rem; }
  .about-stats { flex-wrap: wrap; gap: 0; }
  .stat-item { min-width: 33%; padding: 10px 0; }
  .stat-num { font-size: 1.6rem; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; gap: 20px; }
  .room-card-img { height: 210px; }
  .room-card-footer { flex-direction: column; gap: 8px; }
  .room-card-footer .btn { width: 100%; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 16px; }
  .service-icon { width: 50px; height: 50px; font-size: 1.15rem; margin-bottom: 12px; }
  .service-card h4 { font-size: 0.95rem; }
  .service-card p { font-size: 0.82rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; max-height: none !important; }
  .gallery-item:first-child { grid-column: span 2; height: 200px; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .gallery-item { height: 150px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px 20px; }

  /* Page hero */
  .page-hero { height: 240px; padding-top: 58px; }
  .page-hero-content h1 { font-size: clamp(1.7rem, 6vw, 2.6rem); }

  /* Booking form */
  .form-card { padding: 26px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-summary-card { position: static; padding: 24px 18px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-map { height: 220px; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 20px 0; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }

  /* Dining/Events two-col overrides */
  .about-grid[style*="order"] > div { order: unset !important; }
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

  /* Events/Leisure inline grids */
  div[style*="padding:60px"] { padding: 28px 20px !important; }
  div[style*="padding: 60px"] { padding: 28px 20px !important; }

  /* Menu tabs */
  .menu-tabs-wrap { top: 58px; }
  .menu-tab, .subtab { font-size: 0.6rem !important; padding: 10px 14px !important; }

  /* Menu item image cards */
  .dish-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .drink-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .dish-img, .dish-ph { height: 120px !important; }
  .drink-img, .drink-ph { height: 130px !important; }
  .spirits-grid { grid-template-columns: 1fr !important; }
  .cat-h h3 { font-size: 1.2rem !important; }
}

/* ── 480px small phones ───────────────────────────── */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 14px; }
  .section { padding: 44px 0; }
  .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .overline { font-size: 0.65rem; letter-spacing: 3px; }

  .hero-title { font-size: clamp(1.8rem, 10vw, 2.5rem); }
  .hero-subtitle { font-size: 0.88rem; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 130px; }
  .gallery-item:first-child { height: 170px; }

  .about-images { height: 240px; }
  .about-stats { gap: 0; }
  .stat-item { min-width: 50%; }

  .rooms-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 18px; font-size: 0.65rem; }
  .nav-logo-name { font-size: 0.88rem; }

  .dish-grid { grid-template-columns: 1fr 1fr !important; }
  .drink-grid { grid-template-columns: 1fr 1fr !important; }

  /* Make inline style grids responsive */
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── 360px tiny phones ───────────────────────────── */
@media (max-width: 360px) {
  .navbar-inner { padding: 0 12px; }
  .nav-logo-name { font-size: 0.82rem; }
  .container, .container-wide { padding: 0 12px; }
  .hero-title { font-size: 1.75rem; }
  .btn { padding: 11px 16px; font-size: 0.63rem; }
  .dish-grid { grid-template-columns: 1fr !important; }
  .drink-grid { grid-template-columns: 1fr 1fr !important; }
}
