@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

/* =====================
   Design Tokens
===================== */
:root {
  --fx-ink-strong: #0f0f0f;
  --fx-ink: #1e1e1e;
  --fx-ink-soft: #5a544c;
  --fx-bg: #f4f1ec;
  --fx-bg-elevated: #ffffff;
  --fx-bg-soft: #faf7f2;
  --fx-line: #e6ddcf;
  --fx-brand: #7a5131;
  --fx-brand-strong: #5f3d23;
  --fx-brand-soft: #efe2d3;
  --fx-success: #2f7b59;
  --fx-danger: #ad3e3e;
  --fx-radius-sm: 12px;
  --fx-radius-md: 18px;
  --fx-radius-lg: 26px;
  --fx-shadow-soft: 0 10px 28px rgba(19, 14, 10, 0.08);
  --fx-shadow: 0 18px 42px rgba(19, 14, 10, 0.12);
  --fx-shadow-heavy: 0 28px 60px rgba(19, 14, 10, 0.18);
}

/* =====================
   Reset + Base
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  color: var(--fx-ink);
  background:
    radial-gradient(circle at 2% 0%, rgba(122, 81, 49, 0.14), transparent 28%),
    radial-gradient(circle at 98% 0%, rgba(47, 123, 89, 0.08), transparent 24%),
    var(--fx-bg);
  line-height: 1.65;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  transition: color 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
}

main {
  width: 100%;
}

section {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(2.5rem, 4vw, 4.5rem) 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.22;
  color: var(--fx-ink-strong);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1rem;
  color: var(--fx-ink-soft);
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

label {
  display: block;
  margin-bottom: 0.38rem;
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4f463d;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cab8;
  border-radius: var(--fx-radius-sm);
  background: #fff;
  color: #1c1813;
  font: inherit;
  padding: 0.78rem 0.9rem;
  margin-bottom: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #b4895f;
  box-shadow: 0 0 0 3px rgba(180, 137, 95, 0.18);
  outline: none;
}

/* =====================
   Utility Components
===================== */
.section-shell {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(3rem, 4.6vw, 5rem) 0;
}

.section-header {
  max-width: 780px;
  margin-bottom: 1.9rem;
}

.section-header p {
  font-size: 1.02rem;
}

.eyebrow,
.proof-kicker,
.hero-kicker,
.process-step {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-brand);
}

.chip,
.duration-chip,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #dccab2;
  background: var(--fx-brand-soft);
  color: var(--fx-brand-strong);
  padding: 0.42rem 0.78rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.text-link {
  font-weight: 700;
  color: var(--fx-brand-strong);
  text-decoration: none;
}

.text-link:hover {
  color: #000;
}

.btn,
button,
.package-cta,
.read-link,
.book-btn,
.book-event-btn,
.checkout-btn,
.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn.primary,
button[type="submit"],
.package-cta,
.book-event-btn,
.checkout-btn,
.cart-btn {
  background: linear-gradient(135deg, var(--fx-brand), var(--fx-brand-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(20, 14, 10, 0.18);
}

.btn.primary:hover,
button[type="submit"]:hover,
.package-cta:hover,
.book-event-btn:hover,
.checkout-btn:hover,
.cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(20, 14, 10, 0.26);
}

.btn-secondary,
.btn.btn-secondary,
.auth-ghost-btn,
.auth-ghost-btn-dark {
  border-color: #c9b39b;
  background: #fff;
  color: #35291f;
}

.btn-secondary:hover,
.btn.btn-secondary:hover,
.auth-ghost-btn:hover,
.auth-ghost-btn-dark:hover {
  background: #f6eee4;
}

/* =====================
   Navbar
===================== */
.finix-nav {
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
  border-bottom: 1px solid rgba(221, 200, 168, 0.22);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(16, 13, 10, 0.9));
  backdrop-filter: blur(16px);
  transition: box-shadow 0.24s ease, background-color 0.24s ease, border-color 0.24s ease;
}

.finix-nav.is-scrolled {
  box-shadow: 0 18px 36px rgba(9, 7, 5, 0.36);
  border-bottom-color: rgba(214, 184, 142, 0.35);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(12, 10, 8, 0.94));
}

.finix-nav-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 1900;
}

.finix-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.finix-nav-inner {
  width: min(1240px, calc(100% - 1.5rem));
  margin-inline: auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.finix-nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.finix-nav-logo img {
  height: 46px;
  width: auto;
}

.finix-nav-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.finix-nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
}

.finix-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.96rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #f7f1e8;
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.finix-nav-link:hover,
.finix-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.finix-nav-link.is-active {
  background: rgba(209, 171, 118, 0.26);
  color: #fff;
}

.finix-has-dropdown {
  position: relative;
}

.finix-dropdown-head {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.finix-dropdown-toggle {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #f7f1e8;
}

.finix-dropdown-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.finix-dropdown-toggle:hover,
.finix-dropdown-toggle:focus-visible,
.finix-dropdown-toggle.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.finix-has-dropdown.is-open .finix-dropdown-toggle::before,
.finix-has-dropdown:hover .finix-dropdown-toggle::before {
  transform: rotate(-135deg) translateY(-1px);
}

.finix-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: max-content;
  min-width: 268px;
  list-style: none;
  padding: 0.62rem;
  margin: 0;
  background: rgba(252, 247, 240, 0.98);
  border: 1px solid #e5d5bf;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 11, 8, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.finix-dropdown-menu a {
  display: block;
  text-decoration: none;
  padding: 0.62rem 0.8rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #251d16;
}

.finix-dropdown-menu a:hover,
.finix-dropdown-menu a:focus-visible {
  background: rgba(122, 81, 49, 0.12);
}

.finix-has-dropdown:hover .finix-dropdown-menu,
.finix-has-dropdown:focus-within .finix-dropdown-menu,
.finix-has-dropdown.is-open .finix-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.finix-auth-slot {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 120px;
  position: relative;
  margin-left: 0.1rem;
}

.finix-auth-cluster {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.finix-auth-slot.is-loading {
  min-width: 92px;
}

.finix-auth-loading {
  width: 92px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ede6dc, #ddd0bf, #ede6dc);
  background-size: 180% 100%;
  animation: fx-auth-loading 1s linear infinite;
}

@keyframes fx-auth-loading {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.finix-login-btn {
  background: linear-gradient(135deg, #d6b17a, #b98f53);
  color: #17120f;
  border: 1px solid rgba(245, 219, 177, 0.75);
  border-radius: 999px;
  padding: 0.68rem 1.06rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-decoration: none;
}

.finix-login-btn:hover,
.finix-login-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(5, 4, 3, 0.36);
}

.finix-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.64rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 206, 167, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finix-cart-link:hover,
.finix-cart-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(5, 4, 3, 0.28);
}

.finix-cart-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.finix-cart-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.finix-cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 0.34rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2d7a7, #d6b17a);
  color: #17120f;
  display: inline-grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.finix-cart-count[hidden] {
  display: none;
}

.finix-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.finix-user-trigger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 206, 167, 0.52);
  background: linear-gradient(145deg, #15110e, #2a2119);
  color: #fff;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.finix-user-trigger:hover,
.finix-user-trigger:focus-visible {
  box-shadow: 0 0 0 2px rgba(214, 177, 122, 0.34);
}

.finix-user-caret {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(232, 206, 167, 0.45);
  border-radius: 999px;
  background: rgba(21, 17, 14, 0.86);
  color: #f8f2e8;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.finix-user-caret::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.finix-user-caret:hover,
.finix-user-caret:focus-visible {
  background: rgba(214, 177, 122, 0.2);
}

.finix-user-menu.is-open .finix-user-caret::before {
  transform: rotate(-135deg) translateY(-1px);
}

.finix-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--fx-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--fx-shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.finix-user-menu.is-open .finix-user-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.finix-user-dropdown a,
.finix-user-dropdown button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #1f1913;
  text-align: left;
  text-decoration: none;
  padding: 0.58rem 0.75rem;
  font-size: 0.83rem;
  font-weight: 600;
}

.finix-user-dropdown a:hover,
.finix-user-dropdown button:hover {
  background: rgba(122, 81, 49, 0.12);
}

.finix-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.64rem 0.56rem;
}

.finix-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.finix-nav-toggle span + span {
  margin-top: 0.35rem;
}

.finix-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.finix-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.finix-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================
   Hero + Home Sections
===================== */
.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 58vh;
  padding: clamp(4rem, 8vw, 6.8rem) 0 clamp(2rem, 4vw, 3.4rem);
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(7, 7, 7, 0.7), rgba(44, 30, 17, 0.45));
}

.hero-inner {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-home {
  min-height: 85vh;
}

.hero-home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.hero-copy .eyebrow,
.hero-feature-copy .eyebrow {
  color: #edd7bc;
}

.hero h1,
.hero h2,
.hero h3,
.hero p,
.hero li,
.hero strong {
  color: #fff;
}

.hero-lead {
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  margin: 1.25rem 0 1.45rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-cred {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.hero-cred li {
  padding-left: 1rem;
  position: relative;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cred li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #efd5b4;
  position: absolute;
  left: 0;
  top: 0.68rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0.8rem;
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 0.32rem;
}

.hero-showcase {
  display: grid;
  gap: 1rem;
}

.hero-feature-card {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.hero-feature-copy {
  padding: 1rem;
}

.hero-feature-list {
  margin-top: 0.6rem;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.hero-mini-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 0.7rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.55rem;
}

.hero-mini-card img {
  width: 82px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-rectangle {
  width: min(460px, 82%);
  max-height: 180px;
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
}

.proof-grid,
.featured-grid,
.category-grid,
.process-grid,
.story-grid,
.tour-grid,
.reviews-grid,
.values-list,
.founders-grid,
.utility-grid,
.dashboard-cards,
.stats-grid {
  display: grid;
  gap: 1rem;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.category-card,
.process-card,
.why-card,
.story-copy-card,
.story-visual-card,
.value-item,
.founder-card,
.review-card,
.recommend-item,
.section-icon,
.section-image,
.destination-card,
.tour-card,
.package-card,
.post-card,
.article-main,
.aside-card,
.intro-card,
.child-card,
.dashboard-main .panel,
.dash-hero,
.booking-wrap,
.booking-container,
.cart-card,
.checkout-card,
.search-result {
  background: var(--fx-bg-elevated);
  border: 1px solid var(--fx-line);
  border-radius: var(--fx-radius-md);
  box-shadow: var(--fx-shadow-soft);
}

.proof-card,
.category-card,
.process-card,
.why-card,
.story-copy-card,
.review-card {
  padding: 1.1rem;
}

.home-proof {
  padding-top: 1.4rem;
}

.featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e6d8c6;
  background: linear-gradient(180deg, #fff, #fcf7ef);
  box-shadow: 0 14px 30px rgba(17, 12, 9, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.06));
}

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

.destination-content {
  padding: 1.02rem 1.06rem 1.15rem;
}

.destination-list {
  margin: 0.65rem 0 0.9rem;
}

.destination-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d8c3a6;
  background: #f8ecdc;
  color: #654426;
  padding: 0.34rem 0.62rem;
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.destination-quick-meta {
  list-style: none;
  margin: 0.6rem 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}

.destination-quick-meta li {
  font-size: 0.84rem;
  color: #5c4e40;
  padding-left: 0.92rem;
  position: relative;
}

.destination-quick-meta li::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #af7f43;
  position: absolute;
  left: 0;
  top: 0.48rem;
}

.destination-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(17, 12, 9, 0.16);
}

.kenya-destination-grid {
  gap: 1.1rem;
}

.safaris-page .safari-destinations-section .park {
  margin: 1.1rem 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  border-radius: 24px;
  border: 1px solid #e6d8c5;
  background: linear-gradient(180deg, #fff, #fcf6ed);
  box-shadow: 0 18px 36px rgba(18, 12, 8, 0.11);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.safaris-page .safari-destinations-section .park:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(18, 12, 8, 0.16);
}

.safaris-page .safari-destinations-section .park > img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.safaris-page .safari-destinations-section .park-content {
  padding: 1.2rem 1.18rem;
}

.safari-destination-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.46rem;
  border-radius: 999px;
  border: 1px solid #d5be9f;
  background: #f7e9d7;
  color: #5e3d20;
  padding: 0.3rem 0.62rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.safaris-page .safari-destinations-section .price {
  margin: 0.58rem 0 0.38rem;
}

.safari-package-links {
  margin: 0 0 0.95rem 1rem;
  color: #4a4037;
  line-height: 1.68;
  font-size: 0.88rem;
}

.safari-package-links a {
  color: #5f3e23;
  font-weight: 700;
}

.safari-package-links a:hover {
  color: #261a11;
}

.safaris-page .safari-destinations-section .book-btn {
  margin-top: 0.2rem;
}

.story-grid {
  grid-template-columns: 1fr 1fr;
}

.story-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--fx-radius-md);
}

.story-visual-card {
  padding: 0.65rem;
}

.story-visual-card figcaption {
  font-size: 0.9rem;
  margin-top: 0.6rem;
  color: #625749;
}

.story-points {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.story-points span {
  border-radius: 999px;
  background: #f1e4d5;
  color: #5e3e24;
  padding: 0.36rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f0e1cf;
  color: #5d3a21;
  font-size: 0.74rem;
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
  position: relative;
  overflow: hidden;
}

.why-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-icon,
.icon-wrap,
.icon-wrapper,
.value-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f0dfcb;
  color: #5d3a21;
}

.why-icon svg,
.icon-wrap svg,
.icon-wrapper svg,
.value-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.proposal-layout,
.auth-shell-split,
.account-section,
.account-section-login {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.proposal-copy-panel,
.auth-side-copy {
  background: linear-gradient(155deg, #1d1713, #36271c);
  color: #fff;
  border-radius: var(--fx-radius-md);
  padding: 1.4rem;
  box-shadow: var(--fx-shadow);
}

.proposal-copy-panel h2,
.proposal-copy-panel p,
.proposal-copy-panel span,
.auth-side-copy p {
  color: #fff;
}

.proposal-highlights {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.proposal-highlights span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
}

.proposal-form-card,
.auth-card,
.auth-card-login,
.auth-side-panel,
.session-panel {
  padding: 1.2rem;
}

.auth-card-login {
  display: grid;
  gap: 1rem;
}

#adventureForm,
#packageBookingForm,
.checkout-form,
.auth-pane form,
.booking-container form {
  display: grid;
}

.auth-social-stack {
  display: grid;
  gap: 0.6rem;
}

.auth-provider-btn {
  width: 100%;
  justify-content: center;
  gap: 0.7rem;
  border-color: #d9c9b6;
  background: #fff;
  color: #241c14;
  box-shadow: 0 10px 24px rgba(20, 14, 10, 0.08);
}

.auth-provider-btn:hover,
.auth-provider-btn:focus-visible {
  transform: translateY(-1px);
  background: #fbf7f1;
  box-shadow: 0 14px 28px rgba(20, 14, 10, 0.12);
}

.auth-provider-btn[disabled],
.auth-provider-btn.is-busy {
  cursor: not-allowed;
  opacity: 0.8;
  transform: none;
}

.auth-provider-icon {
  width: 1.4rem;
  height: 1.4rem;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.auth-provider-icon svg {
  width: 100%;
  height: 100%;
}

.auth-provider-label {
  font-weight: 700;
}

.auth-social-status {
  min-height: 1.2rem;
  margin: 0;
}

.auth-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1rem;
}

.auth-divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid #e4d7c6;
}

.auth-divider span {
  position: relative;
  padding: 0 0.85rem;
  background: #fff;
  color: #6b5f51;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-budget-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.55rem;
}

.booking-form-section {
  width: min(1100px, calc(100% - 2rem));
  padding-top: clamp(2rem, 4vw, 3rem);
}

.booking-form-header {
  max-width: 780px;
  margin: 0 auto 1.3rem;
  text-align: center;
}

.booking-eyebrow {
  margin-bottom: 0.5rem;
}

.booking-copy {
  margin: 0 auto;
  max-width: 72ch;
  color: #605548;
  line-height: 1.7;
  text-align: center;
}

.booking-wrap {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(1.15rem, 2.7vw, 1.9rem);
  border-radius: 22px;
  border: 1px solid #e6d7c5;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 240, 0.96));
  box-shadow: 0 18px 38px rgba(20, 14, 10, 0.13);
  overflow: hidden;
}

.booking-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 6% 0%, rgba(199, 154, 51, 0.14), transparent 30%),
    radial-gradient(circle at 96% 100%, rgba(95, 61, 35, 0.1), transparent 35%);
}

#packageBookingForm {
  position: relative;
  z-index: 1;
  gap: 0.28rem;
}

#packageBookingForm .inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

#packageBookingForm label {
  margin-bottom: 0.35rem;
  color: #4d3a2b;
}

#packageBookingForm input,
#packageBookingForm select,
#packageBookingForm textarea {
  border-color: #d7c4ab;
  border-radius: 12px;
  background: #fff;
  color: #221d16;
}

#packageBookingForm input:focus,
#packageBookingForm select:focus,
#packageBookingForm textarea:focus {
  outline: 2px solid rgba(184, 136, 81, 0.2);
  border-color: #b88851;
}

.package-summary {
  background: linear-gradient(180deg, #fef8f0, #fbf2e7);
  border: 1px solid #ead8c2;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.85rem;
  color: #4b301d;
}

.package-summary h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.package-summary p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

#packageBookingForm button {
  margin-bottom: 0;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
}

#packageBookingForm .inline-grid button {
  width: 100%;
}

#pesapalPayBtn {
  border-color: #1f1a15;
  background: #1f1a15;
  color: #fff;
  box-shadow: 0 8px 18px rgba(19, 14, 10, 0.2);
}

#pesapalPayBtn:hover {
  background: #32261b;
  border-color: #32261b;
}

#paymentStatus {
  margin: 0.6rem 0 0;
  min-height: 20px;
  font-size: 0.92rem;
}

.event-booking-section {
  width: min(1120px, calc(100% - 2rem));
  padding-top: clamp(2rem, 4vw, 3rem);
}

.event-booking-header {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  text-align: center;
}

.event-booking-header p {
  margin: 0 auto;
  max-width: 65ch;
  color: #5f5346;
}

.event-booking-shell {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(1.1rem, 2.6vw, 1.8rem);
  border-radius: 24px;
  border: 1px solid #e5d7c6;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 236, 0.96));
  box-shadow: 0 20px 42px rgba(18, 13, 9, 0.14);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
  overflow: hidden;
}

.event-booking-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 2% 6%, rgba(199, 154, 51, 0.15), transparent 30%),
    radial-gradient(circle at 96% 100%, rgba(95, 61, 35, 0.1), transparent 33%);
}

.event-booking-copy {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  padding: 1.1rem;
  background: linear-gradient(155deg, #1f1813, #3b2b1f);
  color: #fff;
  box-shadow: 0 16px 30px rgba(20, 14, 10, 0.2);
}

.event-booking-copy h3 {
  margin-bottom: 0.6rem;
  color: #fff;
}

.event-booking-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.event-booking-points {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.event-booking-points li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.event-booking-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #d8ae6a;
}

.event-booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.85rem;
}

.event-booking-form .form-group {
  margin: 0;
}

.event-booking-form .form-group-wide {
  grid-column: 1 / -1;
}

.event-booking-form label {
  margin-bottom: 0.33rem;
  color: #4d3a2b;
}

.event-booking-form input,
.event-booking-form select,
.event-booking-form textarea {
  border-color: #d7c5ac;
  border-radius: 12px;
  background: #fff;
  color: #221d16;
}

.event-booking-form input:focus,
.event-booking-form select:focus,
.event-booking-form textarea:focus {
  outline: 2px solid rgba(184, 136, 81, 0.2);
  border-color: #b88851;
}

.event-booking-form textarea {
  min-height: 120px;
}

.event-booking-form button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0.2rem;
  min-height: 50px;
  border-radius: 999px;
  background: #1f1a15;
  border-color: #1f1a15;
  color: #fff;
  box-shadow: 0 10px 22px rgba(20, 14, 10, 0.2);
}

.event-booking-form button:hover {
  background: #32261b;
  border-color: #32261b;
}

#eventBookingStatus {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  min-height: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.home-cta-section {
  padding-top: 0.8rem;
}

.cta-panel {
  background: linear-gradient(140deg, #1e1713, #3d2a1d);
  border-radius: var(--fx-radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  color: #fff;
  box-shadow: var(--fx-shadow-heavy);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: #fff;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* =====================
   Packages / Tours / Blog / Reviews
===================== */
.tour-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tour-card {
  overflow: hidden;
}

.tour-image,
.tour-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tour-content {
  padding: 1rem;
}

.tour-content .price,
.starting-price {
  color: var(--fx-brand);
  font-weight: 700;
}

/* Keep event cards compact without affecting safari/detail pages */
.event-booking-page .tour {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 0.78rem;
}

.event-booking-page .tour > div > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.event-booking-page .tour-card-link {
  display: block;
  width: 100%;
}

.event-booking-page .tour-card {
  max-width: 100%;
}

.event-booking-page .tour-card img {
  height: 180px;
}

.event-booking-page .tour-content {
  padding: 0.8rem;
}

.event-booking-page .tour-content h3 {
  font-size: 1.02rem;
}

.event-booking-page .tour-content p {
  margin-bottom: 0.56rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.event-booking-page .tour-content .price {
  font-size: 0.95rem;
}

.event-booking-page .tour-content .book-event-btn,
.event-booking-page .tour-content .event-add-cart {
  min-height: 40px;
  padding: 0.56rem 1rem;
  font-size: 0.84rem;
}

.destination-block {
  overflow: hidden;
}

.destination-head {
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background-size: cover;
  background-position: center;
}

.destination-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.66));
}

.destination-title {
  position: relative;
  z-index: 1;
  color: #fff;
}

.destination-title h3,
.destination-title p {
  color: #fff;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.package-card {
  padding: 1rem;
  background: linear-gradient(180deg, #fff, #fefaf4);
}

.finix-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.finix-card-actions .book-btn,
.finix-card-actions .package-cta,
.finix-card-actions .btn {
  flex: 1 1 220px;
}

.finix-inline-cart-btn {
  flex: 1 1 180px;
  border: 1px solid #c9b39b;
  border-radius: 999px;
  background: #fff;
  color: #35291f;
  box-shadow: none;
}

.finix-inline-cart-btn:hover,
.finix-inline-cart-btn:focus-visible {
  background: #f6eee4;
}

.finix-inline-cart-btn.is-added {
  background: #17352a;
  border-color: #17352a;
  color: #fff;
}

.finix-card-note {
  margin: 0.55rem 0 0;
  color: #6c6051;
  font-size: 0.8rem;
}

.package-card ul {
  margin: 0.7rem 0 1rem;
}

.child-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-note,
.blog-cta,
.review-cta {
  margin-top: 1.3rem;
  border-radius: var(--fx-radius-md);
  padding: 1.4rem;
  background: linear-gradient(145deg, #1e1713, #452e20);
  color: #fff;
  text-align: center;
  box-shadow: var(--fx-shadow);
}

.pricing-note h3,
.pricing-note p,
.blog-cta h3,
.blog-cta p {
  color: #fff;
}

.blog-toolbar {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr;
  padding: 1rem;
  border-radius: var(--fx-radius-md);
  background: #fff;
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow-soft);
}

.blog-search {
  display: flex;
  gap: 0.5rem;
}

.blog-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.chip.active {
  background: linear-gradient(135deg, #7a5131, #5f3d23);
  color: #fff;
  border-color: transparent;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--fx-radius-md);
  background: #fff;
  border: 1px solid var(--fx-line);
  box-shadow: var(--fx-shadow-soft);
}

.featured-post > a img,
.featured-post img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.featured-content {
  padding: 1.2rem;
}

.post-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fx-brand);
  font-weight: 700;
}

.post-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.post-card {
  overflow: hidden;
}

.post-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
}

.post-body {
  padding: 1rem;
}

.post-body a {
  text-decoration: none;
  font-weight: 700;
  color: var(--fx-brand-strong);
}

.post-body a:hover {
  color: #000;
}

.kenya-featured-safaris,
.kenya-destination-explorer,
.kenya-signature-events,
.kenya-blog-preview {
  position: relative;
}

.kenya-featured-safaris::before,
.kenya-destination-explorer::before,
.kenya-signature-events::before,
.kenya-blog-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0 0, rgba(199, 154, 51, 0.08), transparent 24%);
}

.kenya-safari-grid .tour-card img {
  height: 230px;
}

.kenya-package-card .tour-content ul {
  margin: 0.62rem 0 0.92rem;
  padding-left: 1rem;
  color: #5e5349;
}

.kenya-package-card .tour-content ul li {
  margin-bottom: 0.34rem;
}

.kenya-package-card .package-cta {
  margin-top: 0.2rem;
}

.kenya-event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kenya-event-grid .category-card {
  background: linear-gradient(180deg, #fff, #fcf7f0);
}

.kenya-event-grid .category-card h3 {
  font-size: 1.02rem;
}

.kenya-event-cta,
.kenya-blog-cta {
  justify-content: center;
}

.kenya-blog-grid .post-card img {
  height: 215px;
}

.reviews-section {
  padding-top: 1.2rem;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 1.1rem;
}

.review-location {
  font-size: 0.84rem;
  color: var(--fx-brand);
  font-weight: 700;
}

.review-text {
  font-size: 0.95rem;
}

.stars {
  display: inline-flex;
  gap: 0.2rem;
  margin: 0.35rem 0 0.55rem;
}

.star {
  width: 14px;
  height: 14px;
  fill: #d5a74b;
}

svg.tour-icon,
svg.season-icon,
svg.icon {
  width: 18px;
  height: 18px;
}

/* =====================
   Structured Content + Dashboard
===================== */
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1rem;
}

.article-main,
.aside-card {
  padding: 1rem;
}

.article-main img,
.article-image img {
  border-radius: 14px;
}

.meta-label {
  font-weight: 700;
  color: #3f352d;
}

.meta-value {
  color: #5f554d;
}

.dashboard-page,
.search-page,
.checkout-page,
.booking-page,
.event-booking-page,
.login-page {
  min-height: 100vh;
}

.dashboard-shell {
  width: min(1240px, calc(100% - 1.4rem));
  margin: 1.6rem auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
}

.dashboard-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  border-radius: var(--fx-radius-md);
  background: linear-gradient(170deg, #18120f, #3a291c);
  color: #fff;
  padding: 1rem;
  box-shadow: var(--fx-shadow);
}

.sidebar-nav {
  display: grid;
  gap: 0.48rem;
}

.sidebar-nav a,
.sidebar-nav button {
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: left;
  text-decoration: none;
  padding: 0.6rem 0.7rem;
  font: inherit;
  font-weight: 600;
}

.sidebar-nav a:hover,
.sidebar-nav button:hover,
.sidebar-nav .active {
  background: #f0dcc2;
  color: #261b13;
}

.dashboard-main {
  display: grid;
  gap: 1rem;
}

.dash-hero {
  padding: 1.2rem;
  border-radius: var(--fx-radius-md);
}

.dashboard-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 0.95rem;
}

.search-box {
  display: flex;
  gap: 0.6rem;
  margin: 1rem 0;
}

.search-results {
  display: grid;
  gap: 0.8rem;
}

.search-result {
  padding: 0.9rem;
}

.status-msg.success {
  color: var(--fx-success);
}

.status-msg.error {
  color: var(--fx-danger);
}

/* =====================
   Cart / Checkout / Tables
===================== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  border-bottom: 1px solid #eadfce;
  padding: 0.62rem;
  text-align: left;
  vertical-align: top;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.qty-controls button {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid #cdb9a0;
  background: #fff;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #b43f3f;
  padding: 0;
  font-weight: 700;
}

.totals {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.3rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
}

.grand-total {
  font-weight: 800;
}

/* =====================
   Footer + Floating Actions
===================== */
.site-footer {
  width: 100%;
  margin: 2rem 0 0;
  padding: 2.4rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(160deg, #161210, #2e2118),
    radial-gradient(circle at 10% -20%, rgba(213, 167, 75, 0.26), transparent 34%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-image {
  width: min(760px, 100%);
  margin: 0 auto 1rem;
}

.footer-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact {
  margin-top: 0.52rem;
}

.footer-contact a,
.site-footer a {
  color: #f0d7b1;
  text-decoration: none;
}

.footer-contact a:hover,
.site-footer a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1600;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.social-float {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 1500;
  display: grid;
  gap: 0.45rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e7ddcf;
  padding: 0.44rem 0.78rem;
  text-decoration: none;
  color: #241a12;
  font-size: 0.78rem;
  box-shadow: var(--fx-shadow-soft);
}

.social-btn svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.social-btn:hover {
  transform: translateY(-1px);
}

.social-btn.facebook:hover,
.social-btn.facebook:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

/* =====================
   Interaction Polish
===================== */
.destination-card:hover,
.tour-card:hover,
.post-card:hover,
.review-card:hover,
.why-card:hover,
.category-card:hover,
.process-card:hover,
.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fx-shadow);
}

/* =====================
   Responsive
===================== */
@media (max-width: 1180px) {
  .hero-home-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid,
  .tour-grid,
  .post-grid,
  .reviews-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .category-grid,
  .process-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proposal-layout,
  .auth-shell-split,
  .account-section,
  .account-section-login {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .safaris-page .safari-destinations-section .park {
    grid-template-columns: 1fr;
  }

  .safaris-page .safari-destinations-section .park > img {
    min-height: 220px;
    max-height: 300px;
  }

  .event-booking-shell {
    grid-template-columns: 1fr;
  }

  .event-booking-copy {
    order: 2;
  }

  .finix-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    order: 3;
    margin-left: 0.35rem;
  }

  .finix-nav-logo {
    order: 1;
  }

  .finix-auth-slot {
    order: 2;
    margin-left: auto;
  }

  .finix-cart-label {
    display: none;
  }

  .finix-cart-link {
    padding: 0.64rem 0.78rem;
  }

  .finix-nav-panel {
    order: 4;
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    border-radius: 18px;
    border: 1px solid #3a3a3a;
    background: #121212;
    box-shadow: var(--fx-shadow);
    padding: 0.8rem;
    display: grid;
    gap: 0.65rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .finix-nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .finix-nav-links {
    display: grid;
    gap: 0.24rem;
  }

  .finix-nav-link {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
    white-space: normal;
  }

  .finix-dropdown-head {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.28rem;
  }

  .finix-dropdown-link {
    width: 100%;
  }

  .finix-dropdown-toggle {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
  }

  .finix-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 0.6rem;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
  }

  .finix-has-dropdown.is-open .finix-dropdown-menu {
    max-height: 320px;
    pointer-events: auto;
    margin-top: 0.3rem;
  }

  .finix-dropdown-menu a {
    color: #f5f2ed;
  }

  .finix-dropdown-menu a:hover,
  .finix-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
  }

  .finix-user-dropdown {
    right: 0;
    top: calc(100% + 8px);
  }

  .finix-user-caret {
    width: 30px;
    height: 30px;
  }

  .hero-stats,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .blog-categories {
    justify-content: flex-start;
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-post img {
    min-height: 220px;
  }
}

@media (max-width: 680px) {
  .safaris-page .safari-destinations-section .park-content {
    padding: 0.94rem 0.86rem;
  }

  .event-booking-section {
    width: min(1120px, calc(100% - 1.2rem));
  }

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

  section,
  .section-shell,
  .hero-inner {
    width: min(1240px, calc(100% - 1.2rem));
  }

  .hero {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    min-height: 52vh;
  }

  .proof-grid,
  .featured-grid,
  .category-grid,
  .process-grid,
  .tour-grid,
  .post-grid,
  .reviews-grid,
  .why-grid,
  .package-grid,
  .child-pricing,
  .article-wrap,
  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .proposal-budget-row,
  .inline-grid,
  .search-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-actions {
    flex-direction: column;
  }

  .btn,
  .btn-secondary,
  .btn.btn-secondary,
  .btn.primary {
    width: 100%;
  }

  .social-float {
    left: 10px;
    bottom: 12px;
  }

  .social-btn span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
