/* ================================================
   DESIGN TOKENS
   ================================================ */
:root {
  --font-primary: "sofia-pro", sans-serif;
  --font-heading: "adobe-garamond-pro", Georgia, "Times New Roman", serif;
  --font-accent: "Source Sans 3", sans-serif;
  --font-number: "avenir-lt-pro", sans-serif;

  --color-primary: #7d5445;
  --color-primary-light: #a56f52;
  --color-secondary: #655d56;
  --color-tertiary: #fdfbf7;
  --color-bg: #ffffff;
  --color-bg-alt: #f6f5f1;
  --color-text: #3F3A36;
  --color-text-dark: #212e2c;
  --color-text-light: #ffffff;
  --color-text-muted: #655d56;
  --color-border: rgba(173, 169, 146, 0.35);
  --color-overlay: rgba(33, 46, 44, 0.5);

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.25, 1, 0.5, 1);
  --transition: 0.35s var(--ease-out);
}

/* ================================================
   RESET & BASE
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

::selection { background: rgba(125, 84, 69, 0.2); color: var(--color-text-dark); }

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4 { line-height: 1.2; }

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #5A534D;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  margin-bottom: 20px;
}

h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

p {
  font-size: 16px !important;
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

/* ================================================
   LAYOUT
   ================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wrapper { max-width: 1170px; margin: 0 auto; }

.section-label {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.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; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  margin-top: 20px;
  border: 2px solid;
  font-weight: 600;
  line-height: 1.45;
  min-width: 18ch;
  text-align: center;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-tertiary);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-primary);
}

.btn-main {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(255,255,255,0.6);
}
.btn-main:hover {
  background: var(--color-text-light);
  color: var(--color-secondary);
  border-color: var(--color-text-light);
}

/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease-out);
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 5%;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-logo img {
  height: 95px;
  transition: height 0.3s var(--ease-out);
}
.site-nav.scrolled .nav-logo img {height: 92px;}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.site-nav.scrolled .nav-links a { color: var(--color-text); }

.nav-cta {
  font-size: 0.65rem !important;
  padding: 10px 22px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.15);
}
.site-nav.scrolled .nav-cta {
  border-color: var(--color-primary);
  color: var(--color-primary) !important;
}
.site-nav.scrolled .nav-cta:hover {
  background: var(--color-primary);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}
.site-nav.scrolled .nav-toggle span { background: var(--color-text); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 30px 5%;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }
  .nav-links.open a { color: var(--color-text) !important; }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: heroZoom 20s var(--ease-out) infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(33, 46, 44, 0.75) 0%,
    rgba(33, 46, 44, 0.35) 50%,
    rgba(33, 46, 44, 0.1) 100%
  );
  z-index: 1;
}

.logo-container { display: none; }

.content-wrapper {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 5%;
  padding-top: 60px;
}

.content-wrapper h5 {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  font-weight: 400;
}

.main-heading-offers {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-text-light);
  font-family: var(--font-heading);
}

.description {
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
}

.cta-group { display: flex; gap: 15px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .main-heading-offers { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .content-wrapper { padding-left: 0; width: 90%; text-align: center; }
  .cta-group { justify-content: center; }
  .description { margin-left: auto; margin-right: auto; }
}

/* ================================================
   APC CLOSER (ABOUT SECTION)
   ================================================ */
.apc-section { display: block; width: 100%; }

.apc-section--closer {
  background: var(--color-secondary);
  overflow: hidden;
}

.apc-closer {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  padding: 40px 36px;
}

.apc-closer__content {
  flex: 1;
  padding: 14px 0 30px;
  color: var(--color-text-light);
  font-family: var(--font-accent);
  text-align: left;
}

.apc-closer__content .title {
  margin-top: 18px;
  color: #fff;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.apc-closer__content .text {
  margin: 25px auto 0;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.9;
}

.apc-closer__image-wrapper { position: relative; }

.apc-closer__image-wrapper .image {
  width: 318px;
  height: 328px;
}

.apc-closer__image-wrapper .image img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@media (min-width: 48em) {
  .apc-closer { flex-direction: row; padding: 70px 20px 80px; gap: 40px; }
  .apc-closer__image-wrapper .image { width: 390px; height: 404px; }
}

@media (min-width: 64em) {
  .apc-closer__content { padding: 40px; }
  .apc-closer__content .title { margin-top: 34px; font-size: 44px; }
  .apc-closer__content .text { max-width: 440px; margin: 22px auto 0; }
  .apc-closer__image-wrapper .image { width: 494px; height: 512px; }
}

/* ================================================
   LODGE SECTION
   ================================================ */
.lodge-section {
  padding: 100px 20px;
  background: var(--color-bg-alt);
}

.lodge-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.lodge-text h2 { margin-bottom: 20px; }
.lodge-text p { margin-bottom: 20px; }

.lodge-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.lodge-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.6s var(--ease-out);
}

.lodge-images img:hover { transform: scale(1.03); }
.lodge-images img:first-child { grid-row: span 2; }

@media (max-width: 900px) {
  .lodge-grid { grid-template-columns: 1fr; gap: 30px; }
  .lodge-images { grid-template-columns: 1.5fr 1fr; grid-template-rows: 200px 200px; }
}

@media (max-width: 600px) {
  .lodge-images { grid-template-columns: 1fr; grid-template-rows: auto; }
  .lodge-images img { grid-row: auto; grid-column: auto; height: 220px; }
  .lodge-images img:first-child { grid-row: auto; grid-column: auto; height: 280px; }
}

/* ================================================
   FEATURES LIST
   ================================================ */
.features-list { list-style: none; margin: 20px 0; }

.features-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ================================================
   OFFERS SECTION
   ================================================ */
.offers-section {
  padding: 60px 20px 20px;
  background: var(--color-bg);
  text-align: center;
}

.faq-section { padding: 60px 20px 0 !important; }

/* ================================================
   CARD CONTAINER (ROOM LISTINGS)
   ================================================ */
.card-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 40px;
  transition: box-shadow 0.4s;
}

.card-container:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}

.card-content-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  background: var(--color-bg-alt);
}

@media (min-width: 1024px) {
  .card-content-wrapper { flex-direction: row; }
  .image-column { width: 45%; }
  .info-column { width: 55%; }
}

.image-column {
  position: relative;
  width: 100%;
  height: 18rem;
  background: #e8e6e1;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .image-column { height: auto; min-height: 100%; }
}

.sold-out-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  z-index: 20;
}

/* Carousel */
.carousel-container { position: absolute; inset: 0; }

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 8s var(--ease-out);
  transform: scale(1.08);
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.4);
}

.prev-btn { left: 1rem; }
.next-btn { right: 1rem; }

.dots-container {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 20;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.3s;
  cursor: pointer;
}
.dot.active { background: white; transform: scale(1.2); }
.dot.inactive { background: rgba(255,255,255,0.45); }

/* Info Column */
.info-column {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.room-header h3 { font-size: 1.1rem; color: #4D4741; font-weight: 400; }

.room-title {
  font-size: 1.5rem;
  font-family: var(--font-primary);
  font-weight: 700;
  color: #5A534D;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) { .room-title { font-size: 1.875rem; } }

.price-area {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 1.5rem 0;
}

.price-container { text-align: right; }

.rate-label { font-size: 0.7rem; font-weight: 700; color: var(--color-text); margin-bottom: -4px; }

.price-flex {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
}

.price-amount {
  font-size: 1.5rem;
  font-family: var(--font-number);
  font-weight: 600;
  color: var(--color-text);
}

.price-unit {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
}

/* Rate Grid */
.rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: auto;
}

@media (min-width: 640px) { .rate-grid { grid-template-columns: 1fr 1fr; } }

.rate-card {
  position: relative;
  padding: 1.2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  border: 1.5px solid rgba(125,84,69,0.3);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  background: rgba(255,255,255,0.5);
}

.rate-card:hover {
  border-color: var(--color-primary);
  background: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(125,84,69,0.1);
}

.ms { border: 2px solid var(--color-primary); background: rgba(255,255,255,0.8); }

.rate-card.selected {
  border: 2px solid var(--color-primary);
  background: rgba(253,251,247,0.9);
  box-shadow: 0 4px 20px rgba(125,84,69,0.12);
}

.popular-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--color-primary);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 5px 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 6px;
}

.card-title {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
  margin-bottom: 4px;
  padding-right: 7rem;
}

.card-desc {
  font-size: 0.75rem !important;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.card-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-number);
  margin-top: 2px;
}

.card-period {
  font-size: 0.7rem;
  font-weight: 700;
  color: #5A534D;
  text-transform: uppercase;
}

.select-text {
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
  min-width: 80px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: color 0.3s;
}

.select-text:hover { color: var(--color-text-dark); }

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
/* ================================================
   EXPERIENCES SECTION
   ================================================ */
.experiences-section {
  padding: 100px 20px;
  background: var(--color-secondary);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.experience-card {
  text-align: left;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.experience-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: transform 0.6s var(--ease-out);
}

.experience-card:hover img { transform: scale(1.05); }

.experience-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-text-light);
  font-family: var(--font-primary);
  font-weight: 600;
}

.experience-card p { font-size: 0.85rem; }

.es { color: var(--color-text-light) !important; }

@media (max-width: 1024px) { .experiences-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .experiences-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .experiences-grid { grid-template-columns: 1fr; } }

/* ================================================
   INCLUSIONS SECTION
   ================================================ */
.inclusions-section {
  padding: 100px 20px;
  background: var(--color-bg);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.inclusions-grid > div:first-child img {
  border-radius: 6px;
  transition: transform 0.6s var(--ease-out);
}

.inclusions-grid > div:first-child:hover img { transform: scale(1.02); }

@media (max-width: 768px) { .inclusions-grid { grid-template-columns: 1fr; } }

/* ================================================
   SEASONS SECTION
   ================================================ */
.seasons-section { padding: 80px 20px; }

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.season-card { overflow: hidden; border-radius: 6px; }

.season-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: transform 0.6s var(--ease-out);
}

.season-card:hover img { transform: scale(1.05); }

.season-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.season-card p { font-size: 0.85rem; }

@media (max-width: 1024px) { .seasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .seasons-grid { grid-template-columns: 1fr; } }

/* ================================================
   FAQ SECTION
   ================================================ */
.tz-faq-wrapper {
  font-family: var(--font-primary);
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.tz-faq-wrapper *, .tz-faq-wrapper *::before, .tz-faq-wrapper *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}

.tz-faq-container { max-width: 700px; margin: 0 auto; }

.tz-faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.tz-faq-item {
  background: #fff;
  border: 1px solid #e8e6e1;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tz-faq-item:hover {
  border-color: rgba(125,84,69,0.3);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.tz-faq-item summary { list-style: none; cursor: pointer; }
.tz-faq-item summary::-webkit-details-marker { display: none; }

.tz-faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  font-family: var(--font-primary);
  transition: color 0.3s;
}

.tz-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform 0.3s var(--ease-out);
}

.tz-faq-item[open] .tz-faq-icon { transform: rotate(180deg); }

.tz-faq-answer {
  padding: 0 1.5rem 1.5rem 3.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.tz-faq-answer p { margin-bottom: 1rem; font-family: var(--font-primary); padding-right: 1rem; }
.tz-faq-answer p:last-child { margin-bottom: 0; }

.faq { margin-bottom: 0; }

@media (max-width: 600px) {
  .tz-faq-wrapper { padding: 2rem 1rem; }
  .tz-faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }
  .tz-faq-answer { padding: 0 1.25rem 1.25rem 2.75rem; }
}

/* ================================================
   APC STORY SECTION
   ================================================ */
.apc-section--story { position: relative; }

.apc-story__media, .apc-story__media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.apc-story__media { background: var(--color-secondary); }

.apc-story__media img {
  z-index: 1;
  object-fit: cover;
  object-position: left top;
}

.apc-story__media::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(33, 46, 44, 0.7));
}

.apc-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 60px 40px;
}

.apc-story__image-wrapper { position: relative; z-index: 3; }
.apc-story__image-wrapper .image { width: 318px; height: 364px; }

.apc-story__image-wrapper .image img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apc-story__content {
  z-index: 5;
  flex: 1;
  padding: 14px 0 30px;
  color: var(--color-text-light);
  font-family: var(--font-accent);
  text-align: center;
  isolation: isolate;
}

.apc-story__content .title {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-family: var(--font-heading);
}

.apc-story__content .text {
  max-width: 460px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.9;
}

.gap-30 { width: 100%; height: 30px; }

@media (min-width: 48em) {
  .apc-story { flex-direction: row; align-items: flex-start; gap: 60px; padding: 105px 40px 130px; }
  .apc-story__content { text-align: left; }
}

@media (min-width: 64em) {
  .apc-story__image-wrapper .image { width: 343px; height: 391px; }
  .apc-story__content .title { font-size: 44px; }
}

.showgraphic .apc-story__media::after { display: block; }
.apc-closer__image-wrapper::after { display: none; }

/* ================================================
   PHOTO GALLERY (FP WIZARD)
   ================================================ */
.fp-wizard-container {
  margin: 80px auto;
  max-width: 450px;
  min-height: 612px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1176px) {
  .fp-wizard-container {
    align-items: center;
    display: flex;
    height: 535px;
    justify-content: space-between;
    max-width: unset;
  }
}

@media (min-width: 1176px) {
  .fp-fade-vertical::before {
    background: linear-gradient(var(--color-bg) 0%, transparent 100%);
    content: "";
    height: 80px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
  }
  .fp-fade-vertical::after {
    background: linear-gradient(transparent 0%, var(--color-bg) 100%);
    bottom: 0;
    content: "";
    height: 80px;
    left: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
  }
}

@media (max-width: 1175px) {
  .fp-fade-horizontal::before {
    background: linear-gradient(270deg, transparent 0%, var(--color-bg) 100%);
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 40px;
    z-index: 2;
  }
  .fp-fade-horizontal::after {
    background: linear-gradient(90deg, transparent 0%, var(--color-bg) 100%);
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
  }
}

.fp-desktop-scroll { display: none; height: 100%; max-width: 458px; position: relative; }
@media (min-width: 1176px) { .fp-desktop-scroll { display: flex; } }

.fp-desktop-scroll-left { animation: fp-scroll-up 25s linear infinite; }
.fp-desktop-scroll-right { animation: fp-scroll-down 25s linear infinite; }

.fp-image-column { display: flex; flex-direction: column; }

.fp-image-column .fp-image-box {
  background: var(--color-bg-alt);
  border-radius: 8px;
  flex-shrink: 0;
  height: 107px;
  margin-bottom: 107px;
  overflow: hidden;
  width: 107px;
}

.fp-image-column.fp-column-odd .fp-image-box { margin-bottom: 0; margin-top: 107px; }
.fp-desktop-scroll-right .fp-image-column .fp-image-box { margin-bottom: 0; margin-top: 107px; }
.fp-desktop-scroll-right .fp-image-column.fp-column-odd .fp-image-box { margin-bottom: 107px; margin-top: 0; }

.fp-image-box img { display: block; height: 100%; object-fit: cover; width: 100%; }

.fp-content-column { margin: 0 auto; max-width: 370px; padding: 0 24px; }

.fp-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
  text-align: center;
  color: #3f3529;
}

@media (max-width: 767px) { .fp-heading { font-size: 30px; } }

.fp-cta-wrapper { width: 100%; text-align: center; }

.fp-mobile-scroll {
  animation: fp-scroll-sideways 12s linear infinite;
  height: 285px;
  margin: 80px auto 0;
  max-width: 450px;
  position: relative;
}

@media (min-width: 1176px) { .fp-mobile-scroll { display: none; } }

.fp-image-track { display: flex; }

.fp-image-track .fp-image-box {
  background: var(--color-bg-alt);
  border-radius: 8px;
  flex-shrink: 0;
  height: 83px;
  margin-right: 83px;
  overflow: hidden;
  width: 83px;
}

.fp-image-track.fp-track-odd .fp-image-box { margin-left: 83px; margin-right: 0; }

@keyframes fp-scroll-sideways { to { transform: translateX(-498px); } }
@keyframes fp-scroll-up { to { transform: translateY(-642px); } }
@keyframes fp-scroll-down { 0% { transform: translateY(-642px); } to { transform: translateY(0); } }

/* ================================================
   WHATSAPP WIDGET
   ================================================ */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 1000; }

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 10px 18px 10px 10px;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
}

.whatsapp-button:hover {
  box-shadow: 0 8px 35px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.whatsapp-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-text { display: flex; flex-direction: column; gap: 1px; }

.whatsapp-title {
  font-size: 14px;
  font-weight: 600;
  color: #5A534D;
  line-height: 1.2;
}

.whatsapp-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .whatsapp-float { right: 50%; transform: translateX(50%); width: 60%; }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #2a2420;
  padding: 80px 20px 40px;
  text-align: center;
  color: var(--color-text-light);
}

.footer img { height: 60px; margin: 0 auto 30px; opacity: 0.9; }

.footer p {
  color: rgba(255,255,255,0.4) !important;
  font-size: 10px !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ================================================
   OASSLR MODAL
   ================================================ */
:root {
  --oasslr-color-sand: #a47052;
  --oasslr-color-charcoal: #1a1a1a;
  --oasslr-color-ivory: #fdfbf7;
  --oasslr-color-white: #ffffff;
  --oasslr-transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --oasslr-shadow: 0 25px 80px -20px rgba(0,0,0,0.4), 0 10px 30px -10px rgba(0,0,0,0.2);
}

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

.oasslr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--oasslr-transition);
  z-index: 9999;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 768px) { .oasslr-overlay { padding: 20px; } }

.oasslr-overlay.oasslr-active { opacity: 1; visibility: visible; }

.oasslr-modal {
  background: #fff;
  width: 100%;
  height: 100dvh;
  max-width: 100%;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  transition: var(--oasslr-transition);
  position: relative;
}

@media (min-width: 768px) {
  .oasslr-modal {
    max-width: 1100px;
    max-height: 90vh;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--oasslr-shadow);
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) { .oasslr-modal { grid-template-columns: 42% 58%; } }

.oasslr-overlay.oasslr-active .oasslr-modal { transform: translateY(0); }

.oasslr-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--oasslr-transition);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (min-width: 768px) { .oasslr-close { top: 20px; right: 20px; width: 44px; height: 44px; } }

.oasslr-close:hover { background: var(--color-primary-light); }
.oasslr-close:hover svg { stroke: white; }
.oasslr-close svg { width: 18px; height: 18px; stroke: var(--oasslr-color-charcoal); transition: 0.3s; }

.oasslr-image {
  position: relative;
  min-height: 200px;
  max-height: 35vh;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) { .oasslr-image { min-height: 280px; max-height: none; } }
@media (min-width: 900px) { .oasslr-image { min-height: unset; } }

.oasslr-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.oasslr-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 40%, rgba(0,0,0,0.75) 100%);
}

.oasslr-image-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: white;
}

@media (min-width: 768px) { .oasslr-image-content { padding: 30px; } }

.oasslr-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--color-primary-light);
  color: #fff;
  padding: 6px 14px;
  margin-bottom: 10px;
  border-radius: 2px;
}

.oasslr-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}

@media (min-width: 768px) { .oasslr-title { font-size: clamp(24px, 4vw, 32px); } }

.oasslr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
}

.oasslr-divider { width: 4px; height: 4px; background: #fff; border-radius: 50%; }

.oasslr-price {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  opacity: 0.85;
  color: #fff;
}

.oasslr-form-container {
  padding: 25px 20px 40px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) { .oasslr-form-container { padding: 40px 35px; max-height: 90vh; } }
@media (min-width: 900px) { .oasslr-form-container { padding: 45px 40px; } }

.oasslr-form-header { text-align: center; margin-bottom: 25px; }
@media (min-width: 768px) { .oasslr-form-header { margin-bottom: 35px; } }

.oasslr-form-header h2 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

@media (min-width: 768px) { .oasslr-form-header h2 { font-size: clamp(26px, 4vw, 34px); } }

.oasslr-form-header p {
  font-family: var(--font-primary);
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.oasslr-form-container::-webkit-scrollbar { width: 4px; }
.oasslr-form-container::-webkit-scrollbar-track { background: #f1f1f1; }
.oasslr-form-container::-webkit-scrollbar-thumb { background: var(--color-primary-light); border-radius: 3px; }

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .oasslr-form-container { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
}

/* ================================================
   RESPONSIVE OVERRIDES
   ================================================ */
@media (max-width: 768px) {
  .lodge-section, .offers-section, .experiences-section,
  .inclusions-section, .seasons-section { padding: 50px 20px; }

  .section-label { font-size: 9px !important; }
  .content-wrapper { text-align: center; }

  .btn {
    display: block;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .info-column { padding: 1.5rem 2rem; }
}

@media (max-width: 767px) {
  .card-container {
    width: 92%;
    max-width: 800px;
    border-radius: 10px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-container { width: 90%; }
}

/* ================================================
   UTILITY
   ================================================ */
.font-primary { font-family: var(--font-primary); }
.font-heading { font-family: var(--font-heading); }
.underline-accent { position: relative; }



/* ── Why Choose Section ── */
	.af-why-section {
		background: #faf8f5;
		padding: 80px 0;
	}
	.af-why-section .section-label { text-align: center; display: block; }
	.af-why-section h2 { text-align: center; margin-bottom: 56px; }
	.af-pillars {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 32px;
		margin-bottom: 64px;
	}
	@media (max-width: 900px) { .af-pillars { grid-template-columns: repeat(2, 1fr); } }
	@media (max-width: 540px) { .af-pillars { grid-template-columns: 1fr; } }
	.af-pillar {
		background: #fff;
		border: 1px solid #e8e0d8;
		border-radius: 4px;
		padding: 36px 28px;
		text-align: center;
	}
	.af-pillar__num {
		display: block;
		font-size: 42px;
		font-weight: 700;
		color: #a47052;
		line-height: 1;
		margin-bottom: 12px;
	}
	.af-pillar h3 {
		font-size: 17px;
		font-weight: 600;
		margin: 0 0 12px;
		color: #1a1a1a;
	}
	.af-pillar p {
		font-size: 14px;
		color: #555;
		line-height: 1.7;
		margin: 0;
	}
	.af-trust-bar {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 48px;
		padding: 36px;
		background: #a47052;
		border-radius: 4px;
		flex-wrap: wrap;
	}
	.af-trust-item {
		text-align: center;
		color: #fff;
	}
	.af-trust-item__num {
		display: block;
		font-size: 28px;
		font-weight: 700;
		letter-spacing: -0.5px;
	}
	.af-trust-item__label {
		display: block;
		font-size: 13px;
		opacity: 0.85;
		margin-top: 2px;
	}
	.af-trust-divider {
		width: 1px;
		height: 40px;
		background: rgba(255,255,255,0.3);
	}
	@media (max-width: 600px) { .af-trust-divider { display: none; } .af-trust-bar { gap: 24px; } }

	/* ── Wildebeest Migration Section ── */
	.af-migration-section {
		background: #16130f;
		padding: 80px 0;
		border-top: 3px solid #a47052;
	}
	.af-migration-section--light {
		background: #fff;
		border-top: 3px solid #a47052;
	}
	.af-migration-section--light .af-migration-content .section-label { color: #a47052; }
	.af-migration-section--light .af-migration-content h2 { color: #1a1612; }
	.af-migration-section--light .af-migration-content > p { color: #555; }
	.af-migration-section--light .af-migration-facts li { color: #555; }
	.af-migration-section--light .af-migration-facts li strong { color: #1a1612; }
	.af-migration-section--light .af-migration-facts li::before { background: #a47052; }
	.af-migration-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 64px;
		align-items: center;
	}
	@media (max-width: 900px) { .af-migration-inner { grid-template-columns: 1fr; gap: 40px; } }
	.af-migration-inner--reverse { direction: rtl; }
	.af-migration-inner--reverse > * { direction: ltr; }
	@media (max-width: 900px) { .af-migration-inner--reverse { direction: ltr; } }
	.af-migration-content .section-label { color: #a47052; }
	.af-migration-content h2 {
		color: #fff;
		font-size: clamp(26px, 3.5vw, 40px);
		margin: 16px 0 20px;
		line-height: 1.2;
	}
	.af-migration-content > p {
		color: rgba(255,255,255,0.82);
		font-size: 15px;
		line-height: 1.8;
		margin-bottom: 28px;
	}
	.af-migration-facts {
		list-style: none;
		padding: 0;
		margin: 0 0 36px;
		display: flex;
		flex-direction: column;
		gap: 14px;
	}
	.af-migration-facts li {
		color: rgba(255,255,255,0.82);
		font-size: 14px;
		line-height: 1.6;
		padding-left: 18px;
		position: relative;
	}
	.af-migration-facts li::before {
		content: '';
		position: absolute;
		left: 0;
		top: 8px;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #a47052;
	}
	.af-migration-facts li strong { color: #fff; }
	.af-migration-image {
		position: relative;
		border-radius: 4px;
		overflow: hidden;
	}
	.af-migration-image img {
		width: 100%;
		height: 420px;
		object-fit: cover;
		display: block;
		border-radius: 4px;
	}
	.af-migration-badge {
		position: absolute;
		bottom: 24px;
		left: 24px;
		background: #a47052;
		padding: 12px 20px;
		border-radius: 2px;
	}
	.af-migration-badge__num {
		display: block;
		font-size: 18px;
		font-weight: 700;
		color: #fff;
		line-height: 1.2;
	}
	.af-migration-badge__label {
		display: block;
		font-size: 11px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: rgba(255,255,255,0.75);
		margin-top: 2px;
	}

	/* ══════════════════════════════════════
	   FOOTER — Pyramid Structure
	   Layer 1: Full-width CTA band
	   Layer 2: 4-column main body
	   Layer 3: Payment strip (centred)
	   Layer 4: Slim copyright bar
	══════════════════════════════════════ */

	/* — Layer 1: Pre-footer CTA — */
	.af-prefooter {
		background: #a47052;
		padding: 56px 24px;
		text-align: center;
	}
	.af-prefooter__eyebrow {
		display: block;
		font-size: 11px;
		letter-spacing: 3px;
		text-transform: uppercase;
		color: rgba(255,255,255,0.65);
		margin-bottom: 14px;
	}
	.af-prefooter h2 {
		color: #fff;
		font-size: clamp(26px, 4vw, 40px);
		margin: 0 0 10px;
		line-height: 1.2;
	}
	.af-prefooter p {
		color: rgba(255,255,255,0.75);
		font-size: 15px;
		margin: 0 0 32px;
	}
	.af-prefooter .af-cta-row {
		display: flex;
		gap: 16px;
		justify-content: center;
		flex-wrap: wrap;
	}
	.af-btn-white {
		background: #fff;
		color: #a47052;
		border: none;
		padding: 14px 32px;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 1px;
		text-transform: uppercase;
		cursor: pointer;
		border-radius: 2px;
		text-decoration: none;
		display: inline-block;
		transition: background 0.2s, color 0.2s;
	}
	.af-btn-white:hover { background: #1a1612; color: #fff; }
	.af-btn-outline-white {
		background: transparent;
		color: #fff;
		border: 1px solid rgba(255,255,255,0.5);
		padding: 14px 32px;
		font-size: 13px;
		font-weight: 600;
		letter-spacing: 1px;
		text-transform: uppercase;
		cursor: pointer;
		border-radius: 2px;
		text-decoration: none;
		display: inline-block;
		transition: background 0.2s, border-color 0.2s;
	}
	.af-btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

	/* — Layer 2: Main footer body — */
	.af-footer {
		background: #16130f;
		color: #9a9188;
		font-size: 14px;
	}
	.af-footer-body {
		max-width: 1200px;
		margin: 0 auto;
		padding: 64px 32px 56px;
		display: grid;
		grid-template-columns: 1.8fr 1fr 1fr 1fr;
		gap: 48px;
		border-bottom: 1px solid rgba(255,255,255,0.06);
	}
	@media (max-width: 960px) { .af-footer-body { grid-template-columns: 1fr 1fr; gap: 40px; } }
	@media (max-width: 540px)  { .af-footer-body { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; } }

	/* Brand column */
	.af-fc-brand .af-footer-logo {
		font-size: 22px;
		font-weight: 700;
		color: #fff;
		letter-spacing: 1px;
		display: block;
		margin-bottom: 4px;
	}
	.af-fc-brand .af-footer-tagline {
		font-size: 11px;
		letter-spacing: 2.5px;
		text-transform: uppercase;
		color: #a47052;
		display: block;
		margin-bottom: 20px;
	}
	.af-fc-brand p {
		font-size: 13px;
		line-height: 1.8;
		color: #6e6660;
		margin: 0 0 28px;
		max-width: 260px;
	}
	.af-fc-brand .af-contact-row {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.af-fc-brand .af-contact-row a,
	.af-fc-brand .af-contact-row span {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 13px;
		color: #9a9188;
		text-decoration: none;
		transition: color 0.2s;
	}
	.af-fc-brand .af-contact-row a:hover { color: #a47052; }
	.af-contact-dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: #a47052;
		flex-shrink: 0;
	}

	/* Generic footer column */
	.af-fc h5 {
		font-size: 10px;
		letter-spacing: 2.5px;
		text-transform: uppercase;
		color: #fff;
		margin: 0 0 22px;
		padding-bottom: 12px;
		border-bottom: 1px solid rgba(255,255,255,0.07);
	}
	.af-fc ul {
		list-style: none;
		padding: 0;
		margin: 0;
		display: flex;
		flex-direction: column;
		gap: 11px;
	}
	.af-fc ul li a {
		color: #6e6660;
		text-decoration: none;
		font-size: 13px;
		transition: color 0.2s, padding-left 0.2s;
		display: block;
	}
	.af-fc ul li a:hover { color: #a47052; padding-left: 4px; }

	/* Footer accordion toggle — desktop: hide toggle button, show heading */
	.af-fc__toggle { display: none; }
	.af-fc__heading { display: block; }

	/* Mobile accordion */
	@media (max-width: 540px) {
		.af-fc--accordion .af-fc__heading { display: none; }
		.af-fc__toggle {
			display: flex;
			align-items: center;
			justify-content: space-between;
			width: 100%;
			background: none;
			border: none;
			border-bottom: 1px solid rgba(255,255,255,0.07);
			padding: 0 0 14px;
			margin-bottom: 0;
			cursor: pointer;
			color: #fff;
			font-size: 10px;
			font-weight: 700;
			letter-spacing: 2.5px;
			text-transform: uppercase;
			font-family: inherit;
		}
		.af-fc__chevron {
			width: 16px;
			height: 16px;
			stroke: #9a9188;
			flex-shrink: 0;
			transition: transform 0.3s ease;
		}
		.af-fc--accordion.af-fc--open .af-fc__chevron {
			transform: rotate(180deg);
		}
		/* Collapsed state */
		.af-fc--accordion .af-fc__body {
			max-height: 0;
			overflow: hidden;
			transition: max-height 0.35s ease, margin-top 0.25s ease;
			margin-top: 0;
		}
		/* Open state */
		.af-fc--accordion.af-fc--open .af-fc__body {
			max-height: 400px;
			margin-top: 18px;
		}
	}

	/* Social icons row */
	.af-social-row {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	.af-social-link {
		display: flex;
		align-items: center;
		gap: 14px;
		text-decoration: none;
		color: #6e6660;
		font-size: 13px;
		transition: color 0.2s;
	}
	.af-social-link:hover { color: #fff; }
	.af-social-ball {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255,255,255,0.05);
		border: 1px solid rgba(255,255,255,0.08);
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		transition: background 0.2s, border-color 0.2s;
	}
	.af-social-link:hover .af-social-ball {
		background: #a47052;
		border-color: #a47052;
	}
	.af-social-ball svg { width: 16px; height: 16px; fill: #9a9188; transition: fill 0.2s; }
	.af-social-link:hover .af-social-ball svg { fill: #fff; }
	/* Instagram uses stroke */
	.af-social-ball--ig svg { fill: none; stroke: #9a9188; stroke-width: 1.8; }
	.af-social-link:hover .af-social-ball--ig svg { stroke: #fff; }

	/* — Layer 3: Payment strip — */
	.af-payment-strip {
		border-bottom: 1px solid rgba(255,255,255,0.06);
		padding: 28px 32px;
	}
	.af-payment-strip-inner {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
		flex-wrap: wrap;
	}
	.af-payment-strip-label {
		font-size: 10px;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #4a443e;
		white-space: nowrap;
	}
	.af-payment-badges {
		display: flex;
		gap: 8px;
		flex-wrap: wrap;
	}
	.af-pay-chip {
		border: 1px solid rgba(255,255,255,0.1);
		border-radius: 3px;
		padding: 5px 14px;
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.8px;
		color: #6e6660;
		background: rgba(255,255,255,0.03);
		white-space: nowrap;
	}

	/* — Layer 4: Copyright bar — */
	.af-footer-base {
		padding: 18px 32px;
	}
	.af-footer-base-inner {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		flex-wrap: wrap;
	}
	.af-footer-base p {
		margin: 0;
		font-size: 11px;
		color: #3e3832;
		letter-spacing: 0.3px;
	}
	.af-footer-base-links {
		display: flex;
		gap: 20px;
	}
	.af-footer-base-links a {
		font-size: 11px;
		color: #3e3832;
		text-decoration: none;
		transition: color 0.2s;
	}
	.af-footer-base-links a:hover { color: #a47052; }
	.af-legal-links {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
	}
	.af-legal-links a {
		font-size: 11px;
		color: #3e3832;
		text-decoration: none;
		transition: color 0.2s;
	}
	.af-legal-links a:hover { color: #a47052; }
/* ── TripAdvisor Reviews Section ── */
/* ═══ Reviews Section ═══ */
.af-reviews-section {
	background: #fff;
	padding: 80px 0 64px;
	border-top: 1px solid #e8e0d8;
	border-bottom: 1px solid #e8e0d8;
}
.af-reviews-header {
	text-align: center;
	margin-bottom: 48px;
}
.af-reviews-header .section-label {
	display: block;
	margin-bottom: 12px;
	color: #a47052 !important;
}
.af-reviews-header h2 {
	font-size: clamp(24px, 3vw, 38px);
	color: #1a1612;
	margin: 0 0 28px;
	line-height: 1.2;
}
.af-reviews-rating {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: #faf8f5;
	border: 1px solid #e8e0d8;
	border-radius: 60px;
	padding: 12px 24px;
}
.af-ta-logo {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
}
.af-reviews-score {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.af-reviews-score__num {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: #1a1612;
	line-height: 1;
}
.af-reviews-stars {
	display: flex;
	gap: 3px;
	margin: 4px 0 2px;
}
.af-reviews-stars span {
	color: #d4a853;
	font-size: 14px;
}
.af-reviews-score__label {
	display: block;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #9a9188;
}
.af-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 40px;
}
@media (max-width: 960px) { .af-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .af-reviews-grid { grid-template-columns: 1fr; } }
.af-review-card {
	background: #faf8f5;
	border: 1px solid #e8e0d8;
	border-radius: 4px;
	padding: 24px 24px 18px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.af-review-card::before {
	content: '\201C';
	position: absolute;
	top: 10px;
	right: 18px;
	font-size: 72px;
	line-height: 1;
	color: #ede8e2;
	font-family: Georgia, 'Times New Roman', serif;
	pointer-events: none;
	z-index: 0;
}
.af-review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.af-review-card__stars {
	display: flex;
	gap: 3px;
	margin-bottom: 12px;
	position: relative;
	z-index: 1;
}
.af-review-card__stars span {
	color: #d4a853;
	font-size: 14px;
}
.af-review-card__text {
	font-size: 13.5px;
	line-height: 1.7;
	color: #3d3530;
	margin: 0;
	flex: 1;
	font-style: italic;
	position: relative;
	z-index: 1;
}
.af-review-card__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #e8e0d8;
	position: relative;
	z-index: 1;
}
.af-review-card__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #a47052 0%, #7d5238 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.af-review-card__name {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1a1612;
	margin-bottom: 2px;
}
.af-review-card__detail,
.af-review-card__date {
	display: block;
	font-size: 11px;
	color: #9a9188;
	line-height: 1.4;
}
.af-reviews-cta {
	text-align: center;
}
.af-reviews-ta-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #1a1612;
	text-decoration: none;
	border: 1px solid #d4ccc4;
	padding: 12px 28px;
	border-radius: 3px;
	transition: border-color 0.2s, color 0.2s;
}
.af-reviews-ta-link:hover {
	border-color: #34e0a1;
	color: #34e0a1;
}
@media (max-width: 600px) {
	.af-reviews-section { padding: 56px 0 48px; }
	.af-reviews-header { margin-bottom: 36px; }
	.af-review-card { padding: 20px 18px 16px; }
}
