/* ══════════════════════════════════════════════════
   BURROWDALE INN — style.css
   Natural Green + Gold/Silver · Hobbiton Brushhand + Raleway
   ══════════════════════════════════════════════════ */

:root {
  --green: #3d6b4f;
  --green-dark: #2a4e38;
  --green-light: #5a8f6b;
  --green-pale: #eef4f0;
  --gold: #b8962e;
  --gold-light: #d4b04a;
  --silver: #8a9ba8;
  --silver-light: #b8c5ce;
  --cream: #f7f3ec;
  --cream-dk: #ede6d8;
  --brown: #2e1e0f;
  --brown-mid: #5c3d20;
  --white: #ffffff;
  --text-dark: #1e1409;
  --text-mid: #4a3520;
  --text-muted: #7a6a55;
  --nav-h: 72px;
  --heading-font: 'Hobbiton Brushhand', cursive;
  --body-font: 'Raleway', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--body-font);
}

/* ═══════════ NAVBAR ═══════════ */
#mainNav {
  height: var(--nav-h);
  background: rgb(7 38 23 / 98%);
  transition: background 0.4s, box-shadow 0.4s;
  z-index: 9999;
  padding: 0;
}

#mainNav.scrolled {
  background: rgba(10, 28, 18, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  padding: 0 28px;
}

.pv-link {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px !important;
  transition: color 0.2s;
  white-space: nowrap;
}

.pv-link:hover {
  color: #fff !important;
}

.pv-active-box {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  padding: 5px 12px !important;
}

.btn-book-nav {
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  background: transparent;
  border-radius: 2px;
  padding: 7px 18px !important;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.22s, color 0.22s;
  white-space: nowrap;
}

.btn-book-nav:hover {
  background: var(--gold);
  color: #fff !important;
}

/* Centre Logo */
.nav-logo-item {
  overflow: hidden;
  max-width: 150px;
  opacity: 3;
  transition: max-width 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.nav-logo-item.logo-visible {
  max-width: 220px;
  opacity: 1;
  padding: 0 18px;
}

.nav-logo-text {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--gold-light);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.nav-logo-img {
  height: 90px;
  /* adjust as needed */
  width: auto;
  object-fit: contain;
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  #navAllLinks .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
    background: rgba(10, 28, 18, 0.97);
  }

  .nav-logo-item,
  .nav-logo-item.logo-visible {
    max-width: 100%;
    opacity: 1;
    padding: 8px 14px;
  }
}

/* ═══════════ HERO ═══════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 15, 8, 0.45) 0%,
      rgba(5, 15, 8, 0.25) 45%,
      rgba(5, 15, 8, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-bottom: 10rem;
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  font-weight: 500;
  font-family: var(--body-font);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(3.2rem, 8vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-family: var(--body-font);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 28px;
  font-style: italic;
}

/* Trust badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: 30px;
}

.badge-img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.badge-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

.badge-icon {
  color: var(--gold-light);
  font-size: 0.8rem;
}

.badge-stars {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.badge-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

/* Carousel dots */
.hero-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hero-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.hero-dot.active {
  background: var(--gold-light);
  width: 48px;
}

/* Booking Bar */
.booking-bar-wrap {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 92%;
  max-width: 880px;
}

.booking-bar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.bb-top-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.bb-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border-right: 1px solid #e8e0d0;
}

.bb-field:last-of-type {
  border-right: none;
}

.bb-label {
  font-family: var(--body-font);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

.bb-input {
  background: transparent;
  border: none;
  font-family: var(--body-font);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
}

.btn-check-avail {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-family: var(--body-font);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s;
  flex-shrink: 0;
  min-width: 160px;
  border-radius: 0 10px 10px 0;
}

.btn-check-avail:hover {
  background: var(--green-dark);
}

.bb-bottom-row {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px 14px;
  border-top: 1px solid #f0ece6;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s, transform 0.35s;
}

.bb-bottom-row.bb-show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.bb-nights-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
}

.bb-promo-inline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #555;
}

/* Scroll down */
.scroll-down-btn {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 36px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.25s;
}

.scroll-down-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.scroll-down-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(20px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* WhatsApp */
.wa-bubble {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-bubble:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ═══════════ OUR STORY ═══════════ */
.story-section {
  background: var(--cream);
  padding: 100px 0;
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-col {
  position: relative;
}

.story-img-main {
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(30, 20, 9, 0.22);
}

.story-img-accent {
  position: absolute;
  top: 84px;
  left: -78px;
  width: 315px;
  height: 358px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 8px 32px rgba(30, 20, 9, 0.2);
}

.story-quote-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: var(--green);
  color: #fff;
  padding: 20px 24px;
  border-radius: 4px;
  max-width: 220px;
  box-shadow: 0 6px 24px rgba(30, 80, 48, 0.35);
}

.story-quote-badge p {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  margin-bottom: 6px;
}

.story-quote-badge span {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  font-weight: 600;
}

.story-text-col {
  padding-bottom: 40px;
}

.story-eyebrow {
  font-family: var(--body-font);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-title {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 10px;
}

.story-bar {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin-bottom: 24px;
}

.story-body {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.story-sig {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  color: var(--green);
  margin: 20px 0 28px;
}

.story-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
}

.story-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ss-num {
  font-family: var(--body-font);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--green);
  line-height: 1;
}

.ss-lbl {
  font-family: var(--body-font);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.btn-story {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 2px;
  padding: 13px 30px;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s;
}

.btn-story:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

@media (max-width: 991px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 24px;
  }

  .story-img-col {
    order: -1;
  }

  .story-img-accent {
    right: -10px;
  }

  .story-quote-badge {
    left: 10px;
  }
}

.read-more-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #0b3938;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #145c5a;
}

/* ═══════════ RETREATS ═══════════ */
/* ── Section ── */
.retreats-section {
  background: #f8f5ef;
  padding: 30px 0 25px;
}

/* ── Heading ── */
.retreats-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7c6a4e;
  font-weight: 600;
  margin-bottom: 8px;
}

.retreats-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2c2215;
  margin-bottom: 14px;
}

.retreats-sub {
  max-width: 580px;
  margin: 0 auto;
  color: #6b5c44;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Card ── */
.retreat-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44, 34, 21, .10);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.retreat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(44, 34, 21, .16);
}

/* ── Image Slider ── */
.retreat-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.retreat-slider .carousel-inner,
.retreat-slider .carousel-item {
  height: 100%;
}

.retreat-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Small controller buttons */
.retreat-slider .carousel-control-prev,
.retreat-slider .carousel-control-next {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .85);
  border-radius: 50%;
  top: 30%;
  transform: translateY(-50%);
  opacity: 0;
  position: fixed;
  transition: opacity .25s;
}

.retreat-card:hover .carousel-control-prev,
.retreat-card:hover .carousel-control-next {
  opacity: 1;
}

.retreat-slider .carousel-control-prev {
  left: 8px;
}

.retreat-slider .carousel-control-next {
  right: 8px;
}

.retreat-slider .carousel-control-prev-icon,
.retreat-slider .carousel-control-next-icon {
  width: 12px;
  height: 12px;
  filter: invert(30%) sepia(30%) saturate(500%) hue-rotate(10deg);
}

/* Dots */
.retreat-slider .carousel-indicators {
  margin-bottom: 6px;
}

.retreat-slider .carousel-indicators button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .6);
  margin: 0 3px;
  padding: 0;
}

.retreat-slider .carousel-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}

/* Badge */
.rp-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255, 255, 255, .92);
  color: #5a4433;
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

/* ── Card Body ── */
.retreat-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rp-eyebrow {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a58860;
  font-weight: 600;
  margin-bottom: 4px;
}

.rp-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2c2215;
  margin-bottom: 8px;
}

.rp-bar {
  width: 36px;
  height: 3px;
  background: #b88a4a;
  border-radius: 2px;
  margin-bottom: 10px;
}

.rp-style {
  font-size: .78rem;
  color: #9e8060;
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.rp-desc {
  font-size: .875rem;
  color: #5a4d3a;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}

.rp-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.rp-specs span {
  font-size: .75rem;
  color: #6b5c44;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.rp-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.rp-amenities span {
  background: #f3ede3;
  color: #7c6040;
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .03em;
}

.rp-cta-row {
  display: grid;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-rp-inquire {
  background: #2c2215;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 18px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
}

.btn-rp-inquire:hover {
  background: #4a3820;
  color: #fff;
}

.btn-rp-avail {
  background: transparent;
  color: #7c6040;
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #c4a472;
  text-decoration: none;
  transition: all .2s;
}

.btn-rp-avail:hover {
  background: #f3ede3;
  color: #5a4020;
}

/* ── Row spacing ── */
.retreats-grid .g-4 {
  --bs-gutter-y: 1.5rem;
}

/* Tab Strip */
.retreat-tabs-strip {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--cream-dk);
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}

.retreat-tabs-strip::-webkit-scrollbar {
  display: none;
}

.retreat-tab {
  flex: 1;
  min-width: 130px;
  padding: 18px 20px;
  font-family: var(--body-font);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.retreat-tab:hover {
  color: var(--green);
}

.retreat-tab.active {
  color: var(--green);
  border-bottom-color: var(--gold);
}

.retreat-tabs-nav {
  display: flex;
  border-left: 1px solid var(--cream-dk);
  flex-shrink: 0;
}

.retreat-tab-arrow {
  width: 48px;
  height: 56px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, background 0.2s;
  font-size: 0.9rem;
}

.retreat-tab-arrow:hover {
  color: var(--green);
  background: var(--cream);
}

.retreat-tab-arrow+.retreat-tab-arrow {
  border-left: 1px solid var(--cream-dk);
}

@media (max-width: 768px) {
  .retreat-panel {
    grid-template-columns: 1fr !important;
  }

  .rp-img-col {
    min-height: 280px;
  }

  .rp-info-col {
    padding: 32px 24px;
  }

  .rp-name {
    font-size: 2rem;
  }
}

/* ═══════════ GALLERY ═══════════ */
/* ── Section wrapper ── */
/* ─────────────────────────────────────────
       SECTION
    ───────────────────────────────────────── */
.gallery-section {
  background: #f0ece4;
  padding: 80px 0 70px;
}

/* ─────────────────────────────────────────
       HEADING
    ───────────────────────────────────────── */
.gallery-eyebrow {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #7c6a4e;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2c2215;
  margin-bottom: 12px;
}

.gallery-sub {
  max-width: 560px;
  margin: 0 auto 48px;
  color: #6b5c44;
  font-size: 1rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
       GALLERY BOX
    ───────────────────────────────────────── */
.gallery-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background: #1a120a;
  margin-bottom: 0;
  cursor: pointer;
}

.gallery-box a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

/* Image */
.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25, .46, .45, .94),
    opacity .45s ease;
}

/* Semi-transparent black overlay */
.link-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 2, 0.50);
  opacity: 0;
  transition: opacity .38s ease;
  z-index: 2;
}

/* ─────────────────────────────────────────
       CORNER BRACKET LINES
       Four <span> elements draw the L-shaped
       brackets at each corner
    ───────────────────────────────────────── */
.corner-brackets {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.corner-brackets span {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  transition:
    opacity .32s ease,
    transform .38s cubic-bezier(.25, .46, .45, .94);
}

/* Top-left ↖ */
.corner-brackets span:nth-child(1) {
  top: 12px;
  left: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-8px, -8px);
}

/* Top-right ↗ */
.corner-brackets span:nth-child(2) {
  top: 12px;
  right: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(8px, -8px);
}

/* Bottom-left ↙ */
.corner-brackets span:nth-child(3) {
  bottom: 12px;
  left: 12px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-8px, 8px);
}

/* Bottom-right ↘ */
.corner-brackets span:nth-child(4) {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(8px, 8px);
}

/* ─────────────────────────────────────────
       LABEL — centred, uppercase
    ───────────────────────────────────────── */
.details-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  opacity: 0;
  transition: opacity .32s ease .06s;
  width: 80%;
}

.details-wrap h3 {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
       HOVER STATE
    ───────────────────────────────────────── */
.gallery-box:hover img {
  transform: scale(1.06);
  opacity: .72;
}

.gallery-box:hover .link-overlay {
  opacity: 1;
}

.gallery-box:hover .corner-brackets span {
  opacity: 1;
  transform: translate(0, 0);
}

.gallery-box:hover .details-wrap {
  opacity: 1;
}

/* ─────────────────────────────────────────
       VIEW MORE BUTTON
    ───────────────────────────────────────── */
.view-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #2c2215;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.8px solid #c4a472;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}

.btn-view-more:hover {
  background: #2c2215;
  color: #f3ede3;
  border-color: #2c2215;
}

.btn-view-more i {
  font-size: .9rem;
  transition: transform .25s;
}

.btn-view-more:hover i {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────
       HIDDEN EXTRAS
    ───────────────────────────────────────── */
.gallery-extra {
  display: none;
}

.gallery-extra.show {
  display: block;
}

/* ─────────────────────────────────────────
       FANCYBOX – prominent ✕ close button
    ───────────────────────────────────────── */
.fancybox__toolbar {
  background: transparent !important;
  padding: 10px 14px !important;
}

/* Round close button */
[data-fancybox-close] {
  width: 46px !important;
  height: 46px !important;
  background: rgba(255, 255, 255, .18) !important;
  border: 1.5px solid rgba(255, 255, 255, .55) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background .2s, transform .2s !important;
}

[data-fancybox-close]:hover {
  background: rgba(255, 255, 255, .36) !important;
  transform: rotate(90deg) !important;
}

[data-fancybox-close] svg {
  width: 20px !important;
  height: 20px !important;
  color: #fff !important;
  stroke: #fff !important;
}

/* ═══════════ EXPLORE / ATTRACTIONS ═══════════ */

/* ── Section ── */
.explore-section {
  background: var(--cream);
  padding: 90px 0 80px;
}

/* ── Heading ── */
.explore-eyebrow {
  font-size: .62rem;
  letter-spacing: .28em;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.explore-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  margin-top: .5rem;
}

.explore-sub {
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ── Pill Tabs ── */
.explore-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.explore-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid rgba(46, 95, 68, .4);
  color: var(--green);
  border-radius: 30px;
  padding: 10px 22px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .22s;
  white-space: nowrap;
}

.explore-tab:hover {
  border-color: var(--green);
  background: rgba(46, 95, 68, .08);
}

.explore-tab.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.explore-tab i {
  font-size: .85rem;
}

/* ── Cards grid ── */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Card ── */
.explore-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30, 20, 9, .08);
  transition: transform .3s, box-shadow .3s;
  display: none;
  flex-direction: column;
}

.explore-card.visible {
  display: flex;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30, 20, 9, .14);
}

/* Image */
.ec-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.ec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.explore-card:hover .ec-img img {
  transform: scale(1.06);
}

/* Body */
.ec-body {
  padding: 20px 20px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ec-tag {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gold);
  background: rgba(184, 138, 74, .1);
  border: 1px solid rgba(184, 138, 74, .28);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.ec-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.35;
}

.ec-body p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

/* ── View on Map link ── */
.ec-map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: .04em;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s, color .2s;
  width: fit-content;
}

.ec-map-link i {
  font-size: .78rem;
}

.ec-map-link:hover {
  color: #1e3f2d;
  border-bottom-color: var(--green);
}

/* ── Divider line between body and map link ── */
.ec-divider {
  height: 1px;
  background: #ede8df;
  margin: 0 -20px 14px;
}

/* ── View All on Map CTA ── */
.explore-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-view-all-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.8px solid #c4a472;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s;
}

.btn-view-all-map i {
  font-size: .9rem;
  transition: transform .22s;
}

.btn-view-all-map:hover {
  background: var(--brown);
  color: #f3ede3;
  border-color: var(--brown);
}

.btn-view-all-map:hover i {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .explore-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

/* Explore CTA */
.explore-cta {
  text-align: center;
  margin-top: 48px;
}

.btn-explore-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}

.btn-explore-cta:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-explore-cta i {
  font-size: 0.9rem;
}

/* Placeholder fix for cards without images */
.ec-img-placeholder {
  height: 200px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ec-placeholder-icon {
  font-size: 2.5rem;
  color: var(--green);
  opacity: 0.6;
}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-section {
  background: var(--green-dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(61, 107, 79, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(184, 150, 46, 0.15) 0%, transparent 60%);
  padding: 90px 0;
}

.test-heading {
  margin-bottom: 48px;
}

.test-eyebrow {
  font-family: var(--body-font);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.test-title {
  font-family: var(--heading-font);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 12px;
}

.test-sub {
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.reviews-widget-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Platform bar */
.review-platforms-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 24px 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

.rpb-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 120px;
}

.rpb-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rpb-air {
  background: #ff5a5f;
  font-size: 1rem;
}

.rpb-g {
  background: #4285f4;
}

.rpb-yelp {
  background: #d32323;
}

.rpb-name {
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2px;
}

.rpb-score {
  font-family: var(--body-font);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.rpb-score span {
  font-weight: 700;
  color: var(--gold-light);
}

.rpb-overall {
  margin-left: auto;
  text-align: right;
}

.rpb-overall-label {
  font-family: var(--body-font);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rpb-overall-score {
  font-family: var(--body-font);
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}

.rpb-overall-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin: 2px 0;
}

.rpb-overall-count {
  font-family: var(--body-font);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Review cards carousel */
.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 18px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card-item {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}

.review-card-item:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.rci-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rci-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.rci-green {
  background: var(--green);
}

.rci-gold {
  background: var(--gold);
}

.rci-earth {
  background: var(--brown-mid);
}

.rci-name {
  font-family: var(--body-font);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.rci-platform {
  margin-top: 2px;
}

.rci-air,
.rci-google,
.rci-yelp {
  font-family: var(--body-font);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
}

.rci-air {
  background: #ff5a5f;
  color: #fff;
}

.rci-google {
  background: #4285f4;
  color: #fff;
}

.rci-yelp {
  background: #d32323;
  color: #fff;
}

.rci-stars {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.rci-text {
  font-family: var(--body-font);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.rci-date {
  font-family: var(--body-font);
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.reviews-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 2;
  transition: background 0.25s;
}

.reviews-arr:hover {
  background: rgba(255, 255, 255, 0.25);
}

.reviews-prev {
  left: -22px;
}

.reviews-next {
  right: -22px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 32px;
}

.rv-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s;
  cursor: pointer;
}

.rv-dot.active {
  background: var(--gold-light);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-write-review {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  border-radius: 2px;
  padding: 13px 28px;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.btn-write-review:hover {
  background: var(--gold-light);
  color: var(--brown);
}

.btn-yelp-review {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.38);
  border-radius: 2px;
  padding: 13px 28px;
  font-family: var(--body-font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}

.btn-yelp-review:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

@media (max-width: 991px) {
  .reviews-widget-wrap {
    padding: 0 24px;
  }

  .review-card-item {
    flex: 0 0 calc(50% - 9px);
  }
}

@media (max-width: 600px) {
  .review-card-item {
    flex: 0 0 calc(90% - 9px);
  }

  .reviews-prev {
    left: -10px;
  }

  .reviews-next {
    right: -10px;
  }
}

/* ═══════════ FAQs ═══════════ */
.faq-section {
  background: var(--cream);
  padding: 90px 0 80px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-eyebrow {
  font-family: var(--body-font);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.faq-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--brown);
  margin-bottom: 12px;
  font-weight: 400;
}

.faq-header h2 span {
  color: var(--green);
}

.faq-header>p {
  font-family: var(--body-font);
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.faq-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
  margin: 0 auto;
}

/* Filter Tabs */
.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.faq-tab-btn {
  background: transparent;
  border: 1.5px solid rgba(61, 107, 79, 0.35);
  color: var(--green);
  border-radius: 30px;
  padding: 8px 20px;
  font-family: var(--body-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.faq-tab-btn:hover {
  border-color: var(--green);
  background: rgba(61, 107, 79, 0.06);
}

.faq-tab-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Accordion Wrap */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--cream-dk);
}

/* Individual FAQ item */
.faq-item {
  border-bottom: 1px solid var(--cream-dk);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hidden-faq {
  display: none !important;
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.92rem;
  color: var(--brown);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green);
}

.faq-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.faq-item.faq-open .faq-num {
  background: var(--green);
  color: #fff;
}

.faq-q-text {
  flex: 1;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--green);
  transition: transform 0.3s, background 0.25s, color 0.25s;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}

.faq-answer-inner {
  font-family: var(--body-font);
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.82;
  padding: 4px 0 24px 52px;
}

.faq-answer-inner a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.faq-answer-inner a:hover {
  color: var(--green-dark);
}

.faq-answer-inner hr {
  border: none;
  border-top: 1px solid var(--cream-dk);
  margin: 14px 0 12px;
}

.faq-answer-inner strong {
  color: var(--brown);
}

/* Answer tags */
.answer-tag {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 6px;
  margin-top: 4px;
}

.tag-teal {
  background: rgba(61, 107, 79, 0.12);
  color: var(--green);
  border: 1px solid rgba(61, 107, 79, 0.25);
}

.tag-gold {
  background: rgba(184, 150, 46, 0.12);
  color: var(--gold);
  border: 1px solid rgba(184, 150, 46, 0.28);
}

/* View more button */
.faq-view-more-wrap {
  text-align: center;
  margin-top: 36px;
}

.faq-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.8px solid rgba(61, 107, 79, 0.45);
  padding: 12px 32px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--body-font);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.faq-view-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

@media (max-width: 991px) {
  .faq-wrap {
    padding: 0 8px;
  }

  .faq-answer-inner {
    padding-left: 16px;
  }
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
  background: var(--green-dark);
  color: #fff;
}

.footer-top {
  padding: 70px 20px 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-heading {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  font-family: var(--body-font);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-list li i {
  color: var(--gold-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.footer-contact-list li a:hover {
  color: var(--gold-light);
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--brown);
}

.footer-logo-text {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-family: var(--body-font);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-brand-desc {
  font-family: var(--body-font);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 20px;
}

.btn-footer-book {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  border-radius: 2px;
  padding: 12px 26px;
  font-family: var(--body-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.btn-footer-book:hover {
  background: var(--gold-light);
  color: var(--brown);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  font-family: var(--body-font);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-map-full {
  max-width: 1200px;
  margin: 50px auto 0;
}

.footer-map-tag {
  font-family: var(--body-font);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.footer-map-wrap {
  border-radius: 8px;
  overflow: hidden;
}

.footer-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-map-link {
  font-family: var(--body-font);
  font-size: 0.68rem;
  color: var(--gold-light);
  display: inline-block;
  margin-top: 10px;
  transition: color 0.2s;
}

.footer-map-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.footer-bottom p {
  font-family: var(--body-font);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    padding: 50px 20px 36px;
  }
}

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}