:root {
  --gold: #D48812;
  --gold-light: #E8A830;
  --gold-dark: #B0700E;
  --ink: #0A0806;
  --cream: #FDFBF7;
  --cream-dark: #F5F0E8;
  --muted: rgba(10, 8, 6, 0.5);
  --muted-light: rgba(10, 8, 6, 0.08);
  --border: rgba(10, 8, 6, 0.08);
  --shadow: 0 2px 12px rgba(10, 8, 6, 0.06);
  --shadow-hover: 0 20px 40px rgba(10, 8, 6, 0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Navbar ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, padding 0.3s;
  background: var(--ink);
  border-bottom: 1px solid rgba(240,232,216,0.1);
}
nav.scrolled {
  background: rgba(10,8,6,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(240,232,216,0.1);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F0E8D8;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold) }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center }
.nav-links a {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(240,232,216,0.55); text-decoration: none;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #F0E8D8 }
.nav-links a.active { color: var(--gold) }
.nav-support {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.5rem 1.4rem;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  border-radius: 4px;
  font-size: 0.7rem !important;
}
.nav-support:hover { background: #E8A830 !important; color: var(--ink) !important }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101 }
.hamburger span { display: block; width: 22px; height: 2px; background: #F0E8D8; transition: 0.3s }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  z-index: 150; background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}
.mobile-nav-overlay.open { display: block }
.mobile-nav-panel {
  position: fixed; top: 0; right: -100%; bottom: 0; width: 85%; max-width: 400px;
  background: var(--ink); z-index: 160;
  padding: 5rem 2.5rem 3rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  border-left: 2px solid var(--gold);
}
.mobile-nav-panel.open { right: 0 }
.mobile-nav-panel a {
  font-size: 1.5rem; font-family: 'Playfair Display', serif;
  color: #F0E8D8; text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(240,232,216,0.1);
  transition: color 0.2s;
}
.mobile-nav-panel a:hover { color: var(--gold) }
.mobile-nav-panel a.active { color: var(--gold) }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #F0E8D8; font-size: 1.5rem; cursor: pointer }

/* ─── Hero ─── */
.tour-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 5% 4rem;
  overflow: hidden;
}
.tour-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  filter: saturate(0.8) brightness(0.4);
  transition: transform 0.15s linear;
}
.tour-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.7) 0%, rgba(10,8,6,0.85) 60%, var(--ink) 100%);
}
.tour-hero-content { position: relative; z-index: 2; max-width: 760px }
.kicker {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.tour-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 12vw, 7rem);
  color: #F0E8D8; line-height: 0.95;
  margin-bottom: 1.2rem; letter-spacing: 0.01em;
}
.tour-hero-content h1 span {
  color: var(--gold);
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-top: 0.15em;
}
.tour-hero-content .sub {
  font-size: 1.05rem; color: rgba(240,232,216,0.7);
  max-width: 560px; margin: 0 auto 2.5rem;
  font-weight: 300; line-height: 1.8;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--ink);
  padding: 0.9rem 2.2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.85rem;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.25s, transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px) }
.btn-primary.big { padding: 1.2rem 3rem; font-size: 1rem }
.scroll-cue {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  width: 24px; height: 40px;
  border: 2px solid rgba(240,232,216,0.3);
  border-radius: 12px;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%,100%{opacity:0;transform:translateY(0)} 50%{opacity:1;transform:translateY(8px)} }

/* ─── Intro Strip ─── */
.intro-strip {
  padding: 4rem 5%;
  background: var(--ink);
  border-top: 1px solid rgba(240,232,216,0.08);
  border-bottom: 1px solid rgba(240,232,216,0.08);
}
.intro-strip p {
  max-width: 800px; margin: 0 auto;
  text-align: center; font-size: 1.1rem;
  color: rgba(240,232,216,0.75);
  line-height: 1.9;
}
.intro-strip strong { color: #F0E8D8 }
.intro-strip em { color: var(--gold); font-style: italic }

/* ─── Section Common ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5% }
.section-head {
  text-align: center; margin-bottom: 3.5rem;
}
.section-head.center { text-align: center }
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--ink); line-height: 1.1;
  letter-spacing: 0.01em;
}
.head-bar {
  width: 60px; height: 3px;
  background: var(--gold); margin: 1.2rem auto 0;
  border-radius: 2px;
}

/* ─── Category Cards ─── */
.categories-section {
  padding: 6rem 0;
  background: var(--cream);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.cat-card {
  background: white; border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s;
  box-shadow: var(--shadow);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.cat-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative;
}
.cat-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--ink);
  padding: 0.3rem 0.9rem; border-radius: 4px;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cat-tag.alt { background: var(--ink); color: #F0E8D8 }
.cat-body { padding: 1.8rem }
.cat-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.8rem; display: inline-block }
.cat-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; margin-bottom: 0.6rem;
  font-weight: 700;
}
.cat-body p {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 1rem;
}
.cat-link {
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.cat-card:hover .cat-link { gap: 0.7rem }

/* ─── Tour Blocks ─── */
.tour-block {
  padding: 6rem 0;
}
.tour-block.dark {
  background: var(--ink);
}
.tour-block.dark .block-head h2 { color: #F0E8D8 }
.tour-block.dark .block-head .lead { color: rgba(240,232,216,0.6) }
.tour-block.dark .kicker { color: var(--gold) }
.tour-block.light { background: var(--cream-dark) }
.tour-block.light.tinted { background: #EDE8DC }
.block-head { margin-bottom: 3rem; max-width: 600px }
.block-head.center { text-align: center; margin-left: auto; margin-right: auto }
.block-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--ink); line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.block-head .lead { font-size: 1.05rem; color: var(--muted); font-weight: 300 }

/* ─── Tour Cards (Cycle Tours) ─── */
.tour-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.tour-card {
  background: rgba(240,232,216,0.05); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(240,232,216,0.08);
  transition: transform 0.35s, box-shadow 0.35s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3) }
.tour-img {
  height: 220px; background-size: cover; background-position: center;
}
.tour-body { padding: 1.8rem }
.badge {
  display: inline-block;
  background: var(--gold); color: var(--ink);
  padding: 0.2rem 0.8rem; border-radius: 3px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 0.8rem;
}
.badge.alt { background: transparent; border: 1px solid var(--gold); color: var(--gold) }
.tour-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #F0E8D8; margin-bottom: 0.8rem;
}
.meta { display: flex; gap: 1.2rem; list-style: none; margin-bottom: 1rem; flex-wrap: wrap }
.meta li { font-size: 0.75rem; color: rgba(240,232,216,0.5); display: flex; align-items: center; gap: 0.35rem }
.meta i { color: var(--gold) }
.tour-body > p { font-size: 0.9rem; color: rgba(240,232,216,0.6); line-height: 1.7; margin-bottom: 1.2rem }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-weight: 600; font-size: 0.8rem;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em;
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 0.7rem }

/* ─── Group Tours ─── */
.group-list { display: flex; flex-direction: column; gap: 1.5rem }
.group-item {
  display: flex; gap: 2rem; align-items: center;
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.group-item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover) }
.group-img {
  width: 220px; min-height: 180px;
  background-size: cover; background-position: center; flex-shrink: 0;
}
.group-body { padding: 1.5rem 2rem 1.5rem 0; flex: 1 }
.group-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 0.4rem;
}
.group-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.6rem }
.departs { font-size: 0.8rem; display: block; margin-bottom: 0.8rem; color: var(--muted) }
.departs strong { color: var(--gold) }

/* ─── Treks ─── */
.tour-block.parallax {
  position: relative;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1600&q=80') center/cover fixed no-repeat;
}
.tour-block.parallax::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,8,6,0.8);
}
.tour-block.parallax .container { position: relative; z-index: 2 }
.tour-block.parallax .block-head h2 { color: #F0E8D8 }
.tour-block.parallax .block-head .lead { color: rgba(240,232,216,0.6) }
.trek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
.trek-card {
  text-align: center;
  background: rgba(240,232,216,0.06);
  border: 1px solid rgba(240,232,216,0.1);
  padding: 2rem 1.5rem; border-radius: 12px;
  transition: background 0.3s, transform 0.3s;
}
.trek-card:hover { background: rgba(240,232,216,0.1); transform: translateY(-4px) }
.trek-card i { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem }
.trek-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: #F0E8D8; margin-bottom: 0.4rem;
}
.trek-card p { font-size: 0.85rem; color: rgba(240,232,216,0.5) }

/* ─── International Tours ─── */
.intl-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.intl-card {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
}
.intl-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover) }
.intl-img {
  height: 180px; background-size: cover; background-position: center;
  position: relative;
}
.flag {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  font-size: 2rem; line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.intl-body { padding: 1.5rem }
.intl-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 0.4rem;
}
.intl-body p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem }
.intl-body a {
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.intl-body a:hover { gap: 0.7rem }

/* ─── Domestic Tours ─── */
.domestic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}
.dom-card {
  display: block; border-radius: 12px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--border); background: white;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover) }
.dom-img {
  height: 140px; background-size: cover; background-position: center;
}
.dom-card h4 {
  font-family: 'Playfair Display', serif;
  padding: 0.8rem 1rem 0.2rem;
  font-size: 1.1rem;
}
.dom-card p {
  padding: 0 1rem 1rem;
  font-size: 0.8rem; color: var(--muted);
}

/* ─── Why Us ─── */
.why-us {
  padding: 6rem 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem; margin-top: 1rem;
}
.why-item {
  text-align: center; padding: 2.5rem 1.5rem;
  background: white; border-radius: 16px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover) }
.why-item i { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem }
.why-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 0.5rem;
}
.why-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.7 }

/* ─── CTA ─── */
.cta-section {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(135deg, var(--ink) 0%, #1a1510 100%);
  border-top: 1px solid rgba(240,232,216,0.08);
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #F0E8D8; margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}
.cta-section p {
  font-size: 1rem; color: rgba(240,232,216,0.6);
  margin-bottom: 2rem;
}

/* ─── Footer ─── */
.ss-footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 7rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-grid h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.8rem;
}
.footer-grid h3 em { color: var(--gold); font-style: italic }
.footer-grid p { font-size: 0.85rem; color: var(--muted); line-height: 1.7 }
.footer-grid h5 {
  font-family: 'Courier Prime', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-grid a {
  display: block; font-size: 0.85rem; color: var(--muted);
  text-decoration: none; margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--ink) }
.socials { display: flex; gap: 1rem }
.socials a {
  font-size: 1.2rem; margin-bottom: 0;
  transition: color 0.2s;
}
.socials a:hover { color: var(--gold) }
.copy {
  text-align: center; font-size: 0.75rem;
  color: var(--muted); border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ─── Floating WhatsApp ─── */
.float-wa {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  z-index: 1000;
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.4) }

/* ─── Mobile Sub-menu ─── */
.mobile-exp-sub {
  text-align: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(240,232,216,0.1);
  width: 100%;
}
.mobile-exp-head {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  pointer-events: none;
  padding: 0.3rem 0;
}
.mobile-exp-sub a {
  font-size: 1.5rem;
  text-transform: none;
  border: none;
  padding: 10px 0;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  nav .nav-links { display: none }
  .hamburger { display: flex }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem }
  .group-item { flex-direction: column }
  .group-img { width: 100%; height: 200px }
  .group-body { padding: 1.5rem }
  .cat-grid { grid-template-columns: 1fr }
}
@media (max-width: 600px) {
  .tour-hero-content h1 { font-size: clamp(2.5rem, 15vw, 4rem) }
  .footer-grid { grid-template-columns: 1fr }
  .intl-slider { grid-template-columns: 1fr }
  .tour-cards { grid-template-columns: 1fr }
  .trek-grid { grid-template-columns: 1fr 1fr }
  .why-grid { grid-template-columns: 1fr }
  .domestic-grid { grid-template-columns: 1fr 1fr }
}
