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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #FAF7F0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

/* ============================= */
/* SITE HEADER / NAV */
/* ============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FAF7F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.home .site-header {
  background: transparent;
  box-shadow: none;
}

body.home .site-header.scrolled {
  background: #FAF7F0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}

.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1B4332;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

body.home .site-header:not(.scrolled) .site-logo-text {
  color: #FAF7F0;
}

.site-logo-text small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #D4AF37;
  letter-spacing: 0.03em;
}

.site-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.site-nav-list a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

body.home .site-header:not(.scrolled) .site-nav-list a {
  color: #FAF7F0;
}

.site-nav-list a:hover,
.site-nav-list a.active {
  color: #D4AF37;
  border-bottom-color: #D4AF37;
}

.site-header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #25D366;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #25D366;
  border-radius: 9999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-whatsapp:hover {
  background: #25D366;
  color: #FFFFFF;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1B4332;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

body.home .site-header:not(.scrolled) .hamburger span {
  background: #FAF7F0;
}

@media (max-width: 900px) {
  .site-nav,
  .site-header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  background: var(--forest-green, #1B4332);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #E8C84A;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  color: #FAF7F0;
  font-weight: 700;
  margin: 0 0 20px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.78);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: #D4AF37;
  color: #0A2416;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.28);
}

.btn-gold:hover {
  background: #E8C84A;
  transform: translateY(-2px);
}

.btn-outline-cream {
  background: transparent;
  color: #FAF7F0;
  border: 1px solid rgba(250, 247, 240, 0.4);
}

.btn-outline-cream:hover {
  border-color: #FAF7F0;
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  border-top: 1px solid rgba(250, 247, 240, 0.15);
  padding-top: 28px;
  max-width: 480px;
}

.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #D4AF37;
  font-weight: 700;
}

.hero-stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(250, 247, 240, 0.6);
  margin-top: 4px;
}

/* ============================= */
/* PROMO CARD (reusable) */
/* ============================= */
.promo-card {
  background: #FAF7F0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}

.promo-card-image {
  height: 220px;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card-placeholder {
  height: 220px;
  background: #F0EBE0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 16px;
}

.promo-card-tag {
  display: inline-block;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.promo-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1A1A1A;
  margin: 0 0 6px;
}

.promo-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555555;
  margin: 0 0 16px;
}

.promo-card-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1B4332;
  text-decoration: none;
}

.promo-card-link:hover {
  color: #D4AF37;
}

.promo-card-highlights {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.promo-card-highlights li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #555555;
  padding-left: 14px;
  position: relative;
}

.promo-card-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: #D4AF37;
}

.promo-card-price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-card-price-line {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1A1A1A;
}

.promo-card-price-line strong {
  color: #1B4332;
}

/* ============================= */
/* SECTION TITLE (shared) */
/* ============================= */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #1B4332;
  text-align: center;
  margin-bottom: 48px;
}

/* ============================= */
/* DESTINATIONS STRIP */
/* ============================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.destinations-strip {
  background: #FAF7F0;
  padding: 90px 0;
}

.destinations-strip-inner {
  max-width: 1200px;          /* restored for large screens */
  margin: 0 auto;
  padding: 0 24px;
}

.destinations-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
}

.destination-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 328px;
  height: 390px;
  margin: 0 auto;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.destination-card-image {
  flex: 1;
  overflow: hidden;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-card-placeholder {
  height: 100%;
  background: #F0EBE0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 12px;
}

.destination-card-name {
  display: block;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  padding: 14px 8px;
  flex-shrink: 0;
}
.destination-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
}

.destination-card-region {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999999;
}

.destination-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
}

/* Destinations strip CTA button */
.destinations-strip-cta {
  text-align: center;
  margin-top: 40px;
}

.destinations-strip-cta .btn {
  min-width: 220px;
}

.destination-card-wrapper {
  display: block;
}

.no-destinations-msg {
  text-align: center;
  padding: 40px 20px;
  color: #777;
  font-size: 16px;
}

.region-jump-pill {
  cursor: pointer;
  border: none;
}

.destination-card-wrapper {
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}
/* ============================= */
/* FEATURED TOUR */
/* ============================= */
.featured-tour {
  background: #FFFFFF;
  padding: 90px 0;
}

.featured-tour-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.featured-tour-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.featured-tour-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.featured-tour-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #B8960C;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.featured-tour-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 38px);
  color: #1B4332;
  margin: 0 0 18px;
}

.featured-tour-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
  margin: 0 0 28px;
}

.featured-tour-meta-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-tour-meta-list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
}

.featured-tour-meta-list strong {
  color: #1B4332;
}

.featured-tour-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #F0EBE0;
  padding-top: 28px;
}

.featured-tour-price-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999999;
  margin-bottom: 2px;
}

.featured-tour-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #C1440E;
}

/* ============================= */
/* PROMO CARD — GRID EXTRAS */
/* ============================= */
.promo-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.promo-card-tag-pill {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #1B4332;
  background: #F0EBE0;
  padding: 4px 10px;
  border-radius: 9999px;
}

.promo-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #F0EBE0;
  padding-top: 16px;
  margin-top: auto;
}

.promo-card-price-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #999999;
}

.promo-card-price {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #C1440E;
}

.promo-card-btn {
  width: 100%;
  text-align: center;
}

/* ============================= */
/* TOUR PACKAGES GRID */
/* ============================= */
.tour-packages {
  background: #F0EBE0;
  padding: 90px 0;
}

.tour-packages-inner {
  max-width: 1200px;          /* restored for large screens */
  margin: 0 auto;
  padding: 0 24px;
}

.tour-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tour-packages-grid .promo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ============================= */
/* WHY CHOOSE US */
/* ============================= */
.why-choose-us {
  background: #1B4332;
  padding: 100px 0;
}

.why-choose-us-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.section-title-light {
  color: #FAF7F0;
  text-align: left;
  margin-bottom: 40px;
}

.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.why-feature:last-child {
  margin-bottom: 0;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-feature-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #FAF7F0;
  margin: 0 0 8px;
}

.why-feature-text p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.7);
  margin: 0;
}

.why-choose-us-images {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.why-choose-us-img {
  flex: 1;
  height: 520px;
  border-radius: 12px;
  overflow: hidden;
}

.why-choose-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================= */
/* PLACEHOLDER & FEATURE ICONS */
/* ============================= */
.img-placeholder {
  flex-direction: column;
  gap: 10px;
}

.placeholder-icon {
  width: 32px;
  height: 32px;
  color: #C4BCA8;
}

.why-feature-icon svg {
  width: 24px;
  height: 24px;
  color: #D4AF37;
}

/* ============================= */
/* KENTE STRIPE BORDER */
/* ============================= */
.kente-border {
  height: 8px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    #D4AF37 0px, #D4AF37 20px,
    #1B4332 20px, #1B4332 40px,
    #C41E3A 40px, #C41E3A 60px,
    #1A1A1A 60px, #1A1A1A 80px
  );
}

/* ============================= */
/* SITE FOOTER */
/* ============================= */
.site-footer {
  background: #0A2416;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 48px;
}

.site-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.site-footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}

.site-footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #FAF7F0;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-footer-logo small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #D4AF37;
}

.site-footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.6);
  margin-bottom: 22px;
  max-width: 340px;
}

.site-footer-socials {
  display: flex;
  gap: 12px;
}

.site-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(250, 247, 240, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 240, 0.7);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer-socials a:hover {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #0A2416;
}

.site-footer-socials svg {
  width: 17px;
  height: 17px;
}

.site-footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FAF7F0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.site-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(250, 247, 240, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-col a:hover {
  color: #D4AF37;
}

.site-footer-contact li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(250, 247, 240, 0.65);
  line-height: 1.6;
}

.site-footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding: 22px 24px;
  text-align: center;
}

.site-footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.5);
}

/* ============================= */
/* HAMBURGER — ACTIVE STATE */
/* ============================= */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #FAF7F0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    padding: 100px 24px 24px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .site-nav.nav-open {
    display: flex;
    flex-direction: column;
    right: 0;
  }

  .site-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-nav-list a {
    color: #1A1A1A !important;
  }
}

/* ============================= */
/* STATS SECTION */
/* ============================= */
.stats-section {
  background: #F0EBE0;
  padding: 80px 0;
}

.stats-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-counter-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #1B4332;
}

.stat-counter-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555555;
  margin-top: 8px;
}



/* ============================= */
/* TESTIMONIALS                   */
/* ============================= */
.testimonials {
  background: #FFFFFF;
  padding: 90px 0;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: #FAF7F0;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: #D4AF37;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #F0EBE0;
  padding-top: 16px;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #1B4332;
}

.testimonial-origin {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999999;
  margin-top: 2px;
}

/* ============================= */
/* GALLERY                        */
/* ============================= */
.gallery {
  background: #FAF7F0;
  padding: 90px 0;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}


/* ============================= */
/* FINAL CTA                      */
/* ============================= */
.final-cta {
  background: #1B4332;
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  color: #FAF7F0;
  margin: 0 0 18px;
}

.final-cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.75);
  margin: 0 0 36px;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}


/* ============================= */
/* PAGE HERO (shared — inner pages) */
/* ============================= */
.page-hero {
  background: #1B4332;
  padding: 160px 0 70px;
  text-align: center;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(250, 247, 240, 0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(250, 247, 240, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #D4AF37;
}

.breadcrumb-sep {
  margin: 0 8px;
}

.breadcrumb-current {
  color: #D4AF37;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  color: #FAF7F0;
  margin: 0 0 14px;
}

.page-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(250, 247, 240, 0.75);
  margin: 0;
}

/* ============================= */
/* STORY                          */
/* ============================= */
.story {
  background: #FFFFFF;
  padding: 90px 0;
}

.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.story-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.story-text:last-child {
  margin-bottom: 0;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-img {
  overflow: hidden;
  border-radius: 12px;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* .story-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-img {
  height: 260px;
  border-radius: 12px;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* ============================= */
/* MISSION & VISION                */
/* ============================= */
.mission-vision {
  background: #F0EBE0;
  padding: 90px 0;
}

.mission-vision-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mission-vision-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mission-vision-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-vision-icon svg {
  width: 26px;
  height: 26px;
  color: #B8960C;
}

.mission-vision-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #1B4332;
  margin: 0 0 14px;
}

.mission-vision-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

/* ============================= */
/* CORE VALUES                    */
/* ============================= */
.core-values {
  background: #FFFFFF;
  padding: 90px 0;
}

.core-values-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.core-value-card {
  background: #FAF7F0;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.core-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.core-value-icon svg {
  width: 26px;
  height: 26px;
  color: #B8960C;
}

.core-value-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1B4332;
  margin: 0 0 12px;
}

.core-value-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

/* ============================= */
/* REGION QUICK-JUMP NAV          */
/* ============================= */
.region-jump-nav {
  position: sticky;
  top: 74px; /* sits just below the fixed site header */
  z-index: 500;
  background: #FAF7F0;
  border-bottom: 1px solid #F0EBE0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.region-jump-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.region-jump-nav-inner::-webkit-scrollbar {
  display: none;
}

.region-jump-pill {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1B4332;
  background: #F0EBE0;
  padding: 9px 18px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.region-jump-pill:hover {
  background: rgba(212, 175, 55, 0.2);
}

.region-jump-pill.active {
  background: #1B4332;
  color: #FAF7F0;
}

.region-jump-pill-empty {
  background: transparent;
  color: #999999;
  border: 1px dashed #C4BCA8;
}

.region-jump-pill-empty:hover {
  background: #F0EBE0;
  color: #555555;
}


/* ============================= */
/* TRUST BADGES ROW               */
/* ============================= */
.trust-badges-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(250, 247, 240, 0.85);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: #D4AF37;
  flex-shrink: 0;
}

/* ============================= */
/* BOOKING PAGE — MAIN LAYOUT     */
/* ============================= */
.booking-main {
  background: #FAF7F0;
  padding: 80px 0 100px;
}

.booking-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* CONTACT CARD */
.booking-contact-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 90px;
}

.booking-contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1B4332;
  margin: 0 0 20px;
}

.booking-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #555555;
}

.booking-contact-item svg {
  width: 18px;
  height: 18px;
  color: #D4AF37;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-contact-item a {
  color: #555555;
  text-decoration: none;
}

.booking-contact-item a:hover {
  color: #1B4332;
}

.booking-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.booking-contact-btn {
  justify-content: center;
  width: 100%;
}

.btn-outline-dark {
  background: transparent;
  color: #1B4332;
  border: 1px solid #1B4332;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-dark:hover {
  background: #1B4332;
  color: #FAF7F0;
}

.booking-map-placeholder {
  height: 180px;
  border-radius: 12px;
  background: #F0EBE0;
}

/* FORM CARD */
.booking-form-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #1B4332;
  margin: 0 0 28px;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 32px;
}

.form-fieldset legend {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1B4332;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F0EBE0;
  width: 100%;
}

.form-row {
  margin-bottom: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="datetime-local"],
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  background: #FAF7F0;
  border: 1px solid #F0EBE0;
  border-radius: 8px;
  padding: 11px 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
}

.form-group textarea {
  resize: vertical;
}

.radio-inline-group {
  display: flex;
  gap: 20px;
}

.radio-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 400;
  cursor: pointer;
}

.radio-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-privacy-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999999;
  margin-bottom: 20px;
}

.btn-full-width {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.booking-form-message {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.booking-form-message.is-success {
  background: rgba(27, 67, 50, 0.1);
  color: #1B4332;
  border-left: 4px solid #1B4332;
}

.booking-form-message.is-error {
  background: rgba(193, 68, 14, 0.08);
  color: #C1440E;
  border-left: 4px solid #C1440E;
}
/* ============================= */
/* TRUST STRIP                    */
/* ============================= */
.trust-strip {
  background: #FFFFFF;
  padding: 70px 0;
  border-top: 1px solid #F0EBE0;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.trust-strip-card svg {
  width: 32px;
  height: 32px;
  color: #D4AF37;
  margin: 0 auto 16px;
}

.trust-strip-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #1B4332;
  margin: 0 0 8px;
}

.trust-strip-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
}

/* ============================= */
/* CONTACT PAGE — 3 COLUMN LAYOUT */
/* ============================= */
.contact-map-embed,
.booking-map-embed {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.contact-map-embed iframe,
.booking-map-embed iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}
.contact-main {
  background: #FAF7F0;
  padding: 80px 0 100px;
}

.contact-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-column {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-column-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #1B4332;
  margin: 0 0 20px;
}

.contact-column-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-booking-btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}

.contact-map-placeholder {
  height: 280px;
  border-radius: 12px;
  background: #F0EBE0;
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #F0EBE0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-social-link:hover {
  background: #FAF7F0;
  border-color: #D4AF37;
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
  color: #D4AF37;
  flex-shrink: 0;
}


/* ============================= */
/* LEGAL PAGE */
/* ============================= */

.legal-content {
  padding: 60px 0 80px;
}

.legal-content-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin: 40px 0 16px;
  color: #1A1A1A;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.legal-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 32px;
}