@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Space+Mono:wght@400;700&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --primary-green: #C4552A;
  --primary-dark: #7A2E0E;
  --light-bg: #FDF5E8;
  --white: #FFFDF8;
  --black: #1E0D04;
  --text-primary: #1a0e05;
  --text-secondary: #6B4530;
  --accent-gold: #E8971A;
  --accent-orange: #E84D1A;
  --botanical: #2A4A3E;

  --spacing-xs: 1rem;
  --spacing-sm: 2rem;
  --spacing-md: 4rem;
  --spacing-lg: 6rem;
  --spacing-xl: 8rem;
}

/* ========================================
   DARK MODE
   ======================================== */
body.dark-mode {
  --light-bg: #111111;
  --white: #1C1C1C;
  --text-primary: #F0EAE0;
  --text-secondary: #8A8178;
  --accent-gold: #D4891A;
  --accent-orange: #E84D1A;
  --botanical: #2A4A3E;
  background: #111111;
  color: #F0EAE0;
}

body.dark-mode .header.scrolled {
  background: rgba(17,17,17,0.96);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

body.dark-mode .mobile-nav {
  background: rgba(20,20,20,0.98);
}

body.dark-mode .value-card,
body.dark-mode .process-card,
body.dark-mode .about-value-card,
body.dark-mode .team-card,
body.dark-mode .contact-form-block,
body.dark-mode .contact-info-block,
body.dark-mode .inc-col,
body.dark-mode .legal-inner {
  background: #1C1C1C;
  border-color: rgba(255,255,255,0.07);
}

body.dark-mode .trip-card {
  background: #1C1C1C;
  border-color: rgba(255,255,255,0.07);
}

body.dark-mode .faq-item {
  background: #1C1C1C;
  border-left-color: #2A4A3E;
}

body.dark-mode .value-card:hover,
body.dark-mode .about-value-card:hover {
  border-color: rgba(255,255,255,0.15);
}

body.dark-mode .block-section {
  background: #0D0D0D;
}

body.dark-mode .block-title {
  color: #D4891A;
}

body.dark-mode .block-text {
  color: #8A8178;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
  background: #161616;
  color: #F0EAE0;
  border-color: rgba(255,255,255,0.12);
}

body.dark-mode input:focus,
body.dark-mode textarea:focus,
body.dark-mode select:focus {
  border-color: rgba(255,255,255,0.3);
}

body.dark-mode footer {
  background: #0D0D0D;
  border-top: 1px solid rgba(255,255,255,0.06);
}

body.dark-mode .footer-bottom {
  border-top-color: rgba(255,255,255,0.06);
}

body.dark-mode .divider {
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), rgba(255,255,255,0.2), rgba(255,255,255,0.12), transparent);
}

body.dark-mode .divider::after {
  background: linear-gradient(to right, transparent, rgba(212,137,26,0.4), rgba(232,77,26,0.3), rgba(212,137,26,0.4), transparent);
}

body.dark-mode .hero-statement {
  background: #0D0D0D;
}

body.dark-mode .page-hero-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

body.dark-mode .section-label {
  color: #2A4A3E;
  filter: brightness(1.6);
}

body.dark-mode .trip-footer {
  border-top-color: rgba(255,255,255,0.07);
}

body.dark-mode .trip-card-body h3,
body.dark-mode .process-card h3,
body.dark-mode .value-card h3,
body.dark-mode .about-value-card h3 {
  color: #F0EAE0;
}

body.dark-mode .lang-dropdown {
  background: #1C1C1C;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

body.dark-mode .lang-dropdown button {
  color: #F0EAE0;
}

body.dark-mode .lang-dropdown button:hover {
  background: #242424;
  color: #D4891A;
}

body.dark-mode .step-num-display {
  color: rgba(255,255,255,0.08);
}

body.dark-mode .inc-col.included {
  border-top-color: #2A4A3E;
}

body.dark-mode .info-item {
  border-bottom-color: rgba(255,255,255,0.07);
}

body.dark-mode .process-num {
  color: rgba(255,255,255,0.08);
}

body.dark-mode address {
  color: #8A8178;
}

/* ========================================
   DARK MODE TOGGLE BUTTON
   ======================================== */
.darkmode-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.darkmode-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.08);
}

body.dark-mode .darkmode-btn {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

body.dark-mode .darkmode-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .darkmode-btn {
    display: none;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  color: var(--text-primary);
  background: var(--light-bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.nav-links a,
.btn,
.section-label,
.step-number,
.trip-meta,
.form-group label,
.badge,
.team-role {
  font-family: 'Jost', sans-serif;
}

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

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

ul {
  list-style: none;
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 1rem 2rem;
}

.header.scrolled {
  background: linear-gradient(135deg, #2A4A3E 0%, #1a2f28 100%);
  box-shadow: 0 4px 24px rgba(42,74,62,0.3);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  width: 100%;
}

.header-cta-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--accent-orange);
  padding: 0 2rem;
  height: 44px;
  border-radius: 50px;
  border: 2px solid var(--accent-orange);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: auto;
  animation: warmPulse 3.5s ease-in-out infinite;
}

.header-cta-btn:hover {
  background: #fff;
  color: var(--accent-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,77,26,0.3);
}

.header-cta-btn::after {
  display: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2A4A3E 0%, #1a2f28 100%);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-nav a:last-of-type {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-nav-divider {
  display: none;
}

.mobile-nav-settings {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-lang-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1rem;
}

.mobile-nav-lang-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.mobile-nav-lang-label {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}

.mobile-lang-select {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
}

.mobile-lang-select option {
  background: #2a2a2a;
  color: #fff;
}

.mobile-darkmode-btn {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 0 1rem 0;
  transition: none;
}

.mobile-darkmode-btn:hover {
  background: none;
}

.mobile-darkmode-icon {
  font-size: 1rem;
  line-height: 1;
}

body.dark-mode .mobile-nav {
  background: rgba(17,17,17,0.98);
}

body.dark-mode .mobile-nav a {
  border-bottom-color: rgba(255,255,255,0.08);
}

body.dark-mode .mobile-lang-select option {
  background: #1c1c1c;
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 0 1rem;
  height: 36px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.lang-arrow {
  font-size: 0.7rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(30,13,4,0.18);
  overflow: hidden;
  min-width: 160px;
  z-index: 2000;
  flex-direction: column;
}

.lang-switcher.open .lang-dropdown {
  display: flex;
}

.lang-dropdown button {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  padding: 0.75rem 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-dropdown button:hover {
  background: var(--light-bg);
  color: var(--accent-orange);
}

.lang-dropdown button.active {
  color: var(--accent-orange);
  font-weight: 700;
}

@media (max-width: 768px) {
  .lang-switcher {
    display: none;
  }
}

/* ========================================
   HERO — HOMEPAGE
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2A4A3E 0%, #1a2f28 100%);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.15) brightness(1.02);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-cta {
  font-size: 1rem;
  padding: 0.85rem 2.5rem;
}

.hero-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  animation: gentleGlow 6s ease-in-out infinite 1.2s;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.2s; }
.hero-title span:nth-child(2) { animation-delay: 0.4s; }
.hero-title span:nth-child(3) { animation-delay: 0.6s; }

.hero-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  margin-top: 1rem;
}

.hero-subtitle span {
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(232,151,26,0.6), transparent);
  animation: warmFloat 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50% { opacity: 0.4; transform: scaleY(0.8) translateY(8px); }
}


@keyframes warmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,77,26,0); }
  50% { box-shadow: 0 0 28px 8px rgba(232,77,26,0.3); }
}

@keyframes warmFloat {
  0%, 100% { opacity: 0.9; transform: translateY(0); }
  50% { opacity: 0.35; transform: translateY(12px); }
}

@keyframes gentleGlow {
  0%, 100% { text-shadow: 0 0 0px rgba(232,151,26,0); }
  50% { text-shadow: 0 2px 40px rgba(232,151,26,0.2), 0 0 80px rgba(232,77,26,0.1); }
}

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

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: calc(var(--spacing-xl) + 80px) 2rem var(--spacing-md);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.page-hero-content p {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
}

/* ========================================
   SECTION COMMONS
   ======================================== */
section {
  padding: var(--spacing-xl) 2rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--botanical);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--botanical);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

/* Hero Statement */
.hero-statement {
  background: linear-gradient(135deg, #FDF5E8 0%, #FFFDF8 100%);
  padding: 5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-statement span {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-statement span:nth-child(2) {
  color: #2A4A3E;
}

/* Divider */
.divider {
  width: 40%;
  max-width: 480px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent-gold), var(--accent-orange), var(--accent-gold), transparent);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(232,151,26,0.9), rgba(255,220,100,0.7), rgba(232,151,26,0.9), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-orange {
  background: var(--accent-orange);
  color: #fff;
  border: 3px solid var(--accent-orange);
  animation: warmPulse 3.5s ease-in-out infinite;
}

.btn-orange::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.btn-orange:hover::before {
  left: 0;
}

.btn-orange:hover {
  color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232,77,26,0.3);
}

.btn-orange span {
  position: relative;
  z-index: 1;
}

.btn-green {
  background: var(--primary-green);
  color: #fff;
  border: 3px solid var(--primary-green);
}

.btn-green:hover {
  background: transparent;
  color: var(--primary-green);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 3px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary-green);
  border: 3px solid #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
}

/* ========================================
   HOMEPAGE — INTRO SECTION
   ======================================== */
.intro-section {
  background: var(--white);
  padding: var(--spacing-xl) 2rem;
}

.intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.intro-text .section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.intro-text p {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.9;
  margin-top: 1.5rem;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* ========================================
   HOMEPAGE — VALUES SECTION
   ======================================== */
.values-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.values-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.values-header h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: #2A4A3E;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.value-card {
  background: var(--white);
  padding: var(--spacing-md);
  border: 2px solid var(--light-bg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
  border-color: #2A4A3E;
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(232,77,26,0.18), 0 2px 10px rgba(232,151,26,0.12);
}

.value-card.highlight {
  background: var(--white);
}

.value-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ========================================
   HOMEPAGE — BLOCK HIGHLIGHT
   ======================================== */
.block-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.block-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: var(--light-bg);
  border-left: 4px solid var(--primary-green);
  padding: var(--spacing-md);
}

.block-title {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--botanical);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.block-text {
  font-family: 'Merriweather', serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 900px;
}

/* ========================================
   HOMEPAGE — PROCESS SECTION
   ======================================== */
.process-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.process-header {
  max-width: 1400px;
  margin: 0 auto var(--spacing-md);
}

.process-header h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--botanical);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.process-header p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
}

.process-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.process-card {
  background: var(--white);
  padding: var(--spacing-md);
  min-height: 400px;
  border: 2px solid transparent;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 50px rgba(232,151,26,0.16), 0 4px 16px rgba(232,77,26,0.1);
}

.process-num {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #2A4A3E;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.process-card p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  flex: 1;
}

.process-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #2A4A3E;
  margin-top: 2rem;
  position: relative;
  padding-bottom: 4px;
}

.process-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2A4A3E;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-link:hover::after {
  width: 100%;
}

/* ========================================
   HOMEPAGE — CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #2A4A3E 0%, #1a2f28 100%);
  padding: var(--spacing-xl) 2rem;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(160deg, #0d1f1a 0%, #142920 100%);
  color: rgba(255,255,255,0.7);
  padding: var(--spacing-xl) 2rem 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-logo-main {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col address {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-style: normal;
}

.footer-col a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ========================================
   HOW IT WORKS PAGE
   ======================================== */
.hiw-step {
  padding: var(--spacing-xl) 2rem;
}

.hiw-step:nth-child(odd) {
  background: var(--white);
}

.hiw-step:nth-child(even) {
  background: var(--light-bg);
}

.hiw-step-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hiw-step-inner.reverse {
  direction: rtl;
}

.hiw-step-inner.reverse > * {
  direction: ltr;
}

.hiw-step-img-wrap {
  position: relative;
}

.hiw-step-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-step:hover .hiw-step-img-wrap img {
  transform: scale(1.05);
}

.hiw-step-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: #2A4A3E;
  opacity: 0.25;
  z-index: -1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-step:hover .hiw-step-img-accent {
  bottom: -10px;
  right: -10px;
}

.hiw-step-text .step-num-display {
  font-family: 'Jost', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: #2A4A3E;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hiw-step-text h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hiw-step-text p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hiw-step-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hiw-step-list li {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.hiw-step-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2A4A3E;
  font-weight: 700;
}

/* HIT page CTA */
.hiw-cta {
  background: linear-gradient(135deg, #2A4A3E 0%, #1a2f28 100%);
  padding: var(--spacing-xl) 2rem;
  text-align: center;
}

.hiw-cta h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.hiw-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   TRIPS PAGE
   ======================================== */
.trips-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.trips-header {
  max-width: 1400px;
  margin: 0 auto var(--spacing-md);
}

.trips-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 4rem;
}

.trip-card {
  background: var(--white);
  border: 2px solid transparent;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.trip-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(232,77,26,0.22), 0 6px 20px rgba(232,151,26,0.15);
}

.trip-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
}

.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.trip-card:hover .trip-card-img img {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 0;
}

.trip-card-body {
  padding: 4rem;
}

.trip-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trip-location {
  color: var(--primary-green) !important;
}

.trip-card-body h3 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.trip-card-body p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-bg);
  flex-wrap: wrap;
  gap: 1rem;
}

.trip-dates {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trip-price-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.trip-price-value {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
}

.trip-cta {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-gold);
  padding: 1rem 2rem;
  border-radius: 0;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.trip-cta:hover {
  background: var(--primary-green);
  transform: translateX(5px);
}

/* ========================================
   INCLUSIONS
   ======================================== */
.inclusions-section {
  background: var(--white);
  padding: var(--spacing-xl) 2rem;
}

.inclusions-header {
  max-width: 1400px;
  margin: 0 auto var(--spacing-md);
  text-align: center;
}

.inclusions-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.inc-col {
  background: var(--light-bg);
  border-radius: 10px;
  padding: 3rem;
}

.inc-col h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.inc-col.included h3 {
  color: #2A4A3E;
}

.inc-col.not-included h3 {
  color: var(--text-secondary);
}

.inc-list li {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(196,85,42,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.inc-list li:last-child {
  border-bottom: none;
}

.inc-list li::before {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.inc-col.included .inc-list li::before {
  content: '✓';
  color: #2A4A3E;
}

.inc-col.not-included .inc-list li::before {
  content: '✗';
  color: #999;
}

/* Custom trip CTA */
.custom-trip-cta {
  background: linear-gradient(135deg, #2A4A3E 0%, #1a2f28 100%);
  padding: var(--spacing-xl) 2rem;
  text-align: center;
}

.custom-trip-cta h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.custom-trip-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.mission-section {
  background: var(--white);
  padding: var(--spacing-xl) 2rem;
}

.mission-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.mission-text {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 900px;
}

.story-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.story-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-text p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-values-section {
  background: var(--white);
  padding: var(--spacing-xl) 2rem;
}

.about-values-header {
  max-width: 1400px;
  margin: 0 auto var(--spacing-md);
  text-align: center;
}

.about-values-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.about-value-card {
  background: var(--light-bg);
  padding: 4rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-value-card:hover {
  transform: translateY(-10px);
}

.about-value-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
}

.about-value-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.about-value-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.team-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.team-header {
  max-width: 1400px;
  margin: 0 auto var(--spacing-md);
  text-align: center;
}

.team-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.team-card {
  background: var(--white);
  padding: 3rem;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-8px);
  box-shadow: 0 18px 48px rgba(232,77,26,0.2), 0 4px 14px rgba(232,151,26,0.12);
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.team-role {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.contact-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
}

.contact-form-block {
  background: var(--white);
  padding: 4rem;
}

.contact-form-block h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 0;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  background: var(--white);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a4a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-orange);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196,85,42,0.3);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(196,85,42,0.1);
  border-left: 3px solid #2A4A3E;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #2A4A3E;
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(200,80,80,0.08);
  border-left: 3px solid #c85050;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: #c85050;
}

.contact-info-block {
  background: var(--white);
  padding: 4rem;
}

.contact-info-block h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-bg);
  align-items: flex-start;
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.info-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.info-item p,
.info-item a {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.info-item a:hover {
  color: var(--accent-gold);
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-social a {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-green);
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social a svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-social a:hover {
  background: var(--primary-green);
  color: #fff;
  transform: translateY(-5px);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 2rem;
}

.faq-header {
  max-width: 1400px;
  margin: 0 auto var(--spacing-md);
}

.faq-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid #2A4A3E;
}

.faq-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.faq-item p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item a {
  color: var(--accent-gold);
  text-decoration: underline;
  transition: color 0.2s;
}

.faq-item a:hover {
  color: var(--primary-green);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-section {
  background: var(--white);
  padding: var(--spacing-xl) 2rem;
  min-height: 60vh;
}

.legal-inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-inner h1 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.legal-inner .updated {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.legal-inner h2 {
  font-family: 'Jost', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 3rem 0 1rem;
}

.legal-inner h3 {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 2rem 0 0.75rem;
}

.legal-inner p,
.legal-inner li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-inner ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.legal-inner a {
  color: var(--primary-green);
  text-decoration: underline;
}

/* ========================================
   FADE-IN ANIMATION
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* ---- Tablet landscape ---- */
@media (max-width: 1024px) {
  .header {
    padding: 0.9rem 1.5rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .intro-inner,
  .story-inner,
  .contact-grid,
  .hiw-step-inner {
    gap: 3rem;
  }
  .trips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Tablet portrait / large phone ---- */
@media (max-width: 768px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-lg: 3.5rem;
    --spacing-md: 2.5rem;
    --spacing-sm: 1.5rem;
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .header { padding: 0.8rem 1.2rem; }
  .header-logo img { height: 40px; }

  /* Mobile nav sizing */
  .mobile-nav { top: 72px; padding: 1.5rem; gap: 1.2rem; }

  /* Hero */
  .hero-title {
    font-size: clamp(2.6rem, 11vw, 5rem);
    gap: 0.2rem;
  }
  .hero-scroll { display: none; }
  .page-hero { min-height: 52vw; }
  .page-hero-content h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
  .page-hero-content p { font-size: 1rem; }

  /* Statement */
  .hero-statement {
    flex-direction: column;
    gap: 0.3rem;
    padding: 2rem 1.5rem;
    align-items: flex-start;
  }
  .hero-statement span { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  /* Two-col → single col layouts */
  .intro-inner,
  .story-inner,
  .hiw-step-inner,
  .hiw-step-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  /* Reverse steps: image always on top */
  .hiw-step-inner.reverse > .hiw-step-img-wrap { order: -1; }

  .hiw-step-img-wrap img { height: 260px; object-fit: cover; width: 100%; }
  .hiw-step-img-accent { display: none; }
  .step-num-display { font-size: 3.5rem; }

  /* Values / cards grids → single col */
  .values-grid,
  .about-values-grid,
  .inclusions-grid,
  .faq-grid,
  .trips-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  /* Trip cards */
  .trip-card-body { padding: 1.6rem; }
  .trip-card-img img { height: 220px; }

  /* Team grid: 1 col centred */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .team-photo { width: 120px; height: 120px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-block,
  .contact-info-block { padding: 1.8rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group textarea { min-height: 120px; }

  /* Process */
  .process-num { font-size: 3rem; }
  .process-card { padding: 2rem; }

  /* About value icon */
  .about-value-icon { font-size: 2.8rem; }

  /* CTA section */
  .cta-section h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }
  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* HIW CTA */
  .hiw-cta { padding: 3rem 1.5rem; }
  .hiw-cta h2 { font-size: clamp(1.8rem, 6vw, 2.8rem); }

  /* Custom trip CTA */
  .custom-trip-cta { padding: 3rem 1.5rem; }

  /* Inclusions */
  .inc-col { padding: 2rem; }

  /* Block quote */
  .block-inner { padding: 3rem 1.5rem; }
  .block-title { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Section spacing */
  section { padding: 3.5rem 1.2rem; }
  .mission-section,
  .story-section,
  .trips-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .coming-soon-title { order: 1; }
  .coming-soon-btn   { order: 2; margin-top: 1.5rem; margin-bottom: 0.5rem; }
  .coming-soon-text  { order: 3; }

  .about-values-section,
  .team-section,
  .trips-section,
  .inclusions-section,
  .faq-section,
  .contact-section,
  .process-section,
  .values-section,
  .intro-section {
    padding: 3.5rem 1.2rem;
  }
  .hiw-step { padding: 3rem 1.2rem; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-social { justify-content: center; }
  footer { padding: 3.5rem 1.2rem 0; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 1.5rem 1.2rem;
  }
  .footer-bottom-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  /* Divider */
  .divider { width: 60%; }

  /* Legal pages */
  .legal-inner { padding: 2.5rem 1.5rem; }
}

/* ---- Phone ---- */
@media (max-width: 480px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-md: 2rem;
  }

  .header { padding: 0.7rem 1rem; }
  .header-logo img { height: 36px; }
  .header-cta-btn { display: none; }

  .hero-title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .hero-statement span { font-size: clamp(1.4rem, 7vw, 2rem); }

  .page-hero { min-height: 60vw; }
  .page-hero-content { padding: 0 1rem; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  .value-card,
  .process-card,
  .about-value-card,
  .faq-item { padding: 1.5rem; }

  .trip-card-body { padding: 1.3rem; }
  .trip-card-img img { height: 200px; }
  .trip-meta { flex-wrap: wrap; gap: 0.4rem; }

  .contact-form-block,
  .contact-info-block { padding: 1.3rem; }

  .team-photo { width: 100px; height: 100px; }

  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-btns .btn { max-width: 100%; }

  .hiw-step-img-wrap img { height: 220px; }

  .block-title { font-size: clamp(1.2rem, 6vw, 1.8rem); }

  .inc-col { padding: 1.5rem; }
  .inclusions-grid { gap: 1rem; }

  .footer-inner { gap: 1.5rem; }

  .legal-inner { padding: 2rem 1rem; }
  .legal-inner h2 { font-size: 1.1rem; }
}

/* ---- Small phone (SE, Galaxy A series) ---- */
@media (max-width: 375px) {
  .hero-title { font-size: clamp(2rem, 13vw, 2.8rem); }
  .hero-statement span { font-size: clamp(1.2rem, 8vw, 1.8rem); }
  .header-logo img { height: 32px; }
  .section-title { font-size: clamp(1.5rem, 8vw, 2rem); }
  .mobile-nav { padding: 1.2rem 1rem; gap: 1rem; }
  .mobile-nav a { font-size: 0.95rem; }
  .block-title { font-size: clamp(1.1rem, 7vw, 1.6rem); }
  .cta-section h2 { font-size: clamp(1.5rem, 8vw, 2.2rem); }
}
