/* ============================================================
   SUMMIT ADVENTURES — Main Stylesheet
   Design: Organic Mountain Luxury · Dark Forest + Gold
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --green-deep:    #1a3a0f;
  --green-main:    #2d5a27;
  --green-mid:     #4a7c3f;
  --green-light:   #a5c89a;
  --gold:          #c4913a;
  --gold-light:    #e8b96a;
  --cream:         #f4f0eb;
  --cream-dark:    #ede8e1;
  --dark:          #1a1a1a;
  --text:          #2d2d2d;
  --text-mid:      #555;
  --text-light:    #888;
  --white:         #ffffff;
  --shadow-sm:     0 2px 12px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,.18);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26,58,15,0.97);
  padding: 14px 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.nav--dark {
  background: var(--green-deep);
  padding: 16px 48px;
  position: sticky;
  box-shadow: var(--shadow-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}

.nav__logo a { color: var(--white); display: flex; align-items: center; gap: 10px; }
.nav__logo strong { color: var(--gold); }
.nav__logo-icon { font-size: 24px; }

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__cta::after { display: none !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,58,15,0.88) 0%,
    rgba(26,58,15,0.60) 50%,
    rgba(196,145,58,0.25) 100%
  );
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 780px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title-line { display: block; }
.hero__title-line--accent { color: var(--gold); font-style: italic; }

.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,.80);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: 48px;
}

.hero__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--green-main);
  padding: 14px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  color: rgba(255,255,255,.7);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,145,58,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn--small { padding: 8px 18px; font-size: 11px; }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 14px; }

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.section-title em { color: var(--green-main); font-style: italic; }

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-eyebrow { justify-content: center; }
.section-header .section-eyebrow::before { display: none; }
.section-header .section-desc { margin: 0 auto; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
  height: 540px;
}

.about__img-main {
  position: absolute;
  left: 0; top: 0;
  width: 75%; height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-main img, .about__img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about__img-side {
  position: absolute;
  right: 0; bottom: 0;
  width: 50%; height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.about__img-badge {
  position: absolute;
  right: 30%; bottom: 50%;
  transform: translate(50%, 50%);
  z-index: 2;
}

.about__badge {
  background: var(--green-main);
  color: var(--white);
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about__badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.about__badge-text {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,.8);
}

.about__text {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about__features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__feature strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 15px;
}

.about__feature p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   TOURS
   ============================================================ */
.tours {
  padding: 120px 0;
  background: var(--white);
}

.tours__filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border: 2px solid var(--cream-dark);
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  background: transparent;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-main);
  border-color: var(--green-main);
  color: var(--white);
}

.tours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* Tour Card */
.tour-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: cardAppear 0.6s ease both;
}

@keyframes cardAppear {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.tour-card.hidden { display: none; }

.tour-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: var(--green-mid);
}

.tour-card:hover .tour-card__image img { transform: scale(1.08); }

.tour-card__difficulty {
  position: absolute;
  top: 16px; left: 16px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tour-card__difficulty--easy    { background: #d1fae5; color: #065f46; }
.tour-card__difficulty--moderate { background: #fef3c7; color: #92400e; }
.tour-card__difficulty--hard    { background: #fee2e2; color: #991b1b; }
.tour-card__difficulty--expert  { background: #ede9fe; color: #5b21b6; }

.tour-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,15,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.tour-card:hover .tour-card__overlay { opacity: 1; }

.tour-card__view-btn {
  padding: 10px 24px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition);
}

.tour-card__view-btn:hover { background: rgba(255,255,255,.2); }

.tour-card__body { padding: 24px; }

.tour-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.tour-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.tour-card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}

.tour-card__price-from { font-size: 11px; color: var(--text-light); display: block; }
.tour-card__price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--green-main);
}
.tour-card__price-per { font-size: 11px; color: var(--text-light); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 8px;
  margin-top: 56px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--green-mid);
  cursor: pointer;
}

.gallery__item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,15,.6);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay { opacity: 1; }

.gallery__item-overlay span {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--green-deep);
}

.testimonials .section-eyebrow { justify-content: center; }
.testimonials .section-eyebrow::before { display: none; }

.testimonials .section-title {
  color: var(--white);
  text-align: center;
}

.testimonials .section-title em { color: var(--gold); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.testimonial {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), background var(--transition);
}

.testimonial:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial__location {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 100px 0;
  background: var(--cream);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.newsletter__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.newsletter__title em { color: var(--green-main); font-style: italic; }

.newsletter__desc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter__privacy {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--green-deep);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-title em { color: var(--gold); }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail > span { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.contact__detail strong {
  display: block;
  color: var(--white);
  margin-bottom: 2px;
}

.contact__detail p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.contact__form-wrap {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(45,90,39,.12);
}

.form-input::placeholder { color: #bbb; }

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

.form-select { appearance: none; cursor: pointer; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-mid);
}

.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }

/* Dark form inputs (contact section) */
.contact .form-input {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
}

.contact .form-input::placeholder { color: rgba(255,255,255,.35); }

.contact .form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,145,58,.2);
}

.contact .form-group label { color: rgba(255,255,255,.7); }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.alert--success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d1f08;
  padding: 80px 0 40px;
  color: rgba(255,255,255,.6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__logo strong { color: var(--gold); }

.footer__brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color var(--transition), background var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(196,145,58,.15);
}

.footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col li { margin-bottom: 10px; }

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.footer--simple {
  padding: 24px 0;
  text-align: center;
}

.footer--simple a { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero--sm { height: 320px; }

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,15,.85), rgba(26,58,15,.65));
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: var(--white);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section { padding: 80px 0; background: var(--cream); }

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.booking-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 32px;
}

.booking-form__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

/* Sidebar */
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; }

.booking-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}

.booking-summary h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 16px;
}

.booking-summary__tour {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-style: italic;
}

.booking-summary__breakdown { border-top: 1px solid var(--cream-dark); padding-top: 16px; }

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text-mid);
}

.booking-summary__row--total {
  border-top: 2px solid var(--cream-dark);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
}

.booking-summary__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.booking-trust {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-trust__item {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Booking Success */
.booking-success {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  box-shadow: var(--shadow-md);
}

.booking-success__icon { font-size: 64px; margin-bottom: 24px; }

.booking-success h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--green-main);
  margin-bottom: 16px;
}

.booking-success__ref {
  display: inline-block;
  background: var(--green-main);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 20px 0;
}

.booking-success__summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.booking-success__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14px;
  color: var(--text-mid);
}

.booking-success__row--total {
  border-bottom: none;
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  padding-top: 16px;
}

.booking-success__note {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-top: 16px;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.nav__mobile { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__images { height: 400px; }
  .contact__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:first-child { grid-column: 1/3; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { order: -1; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__content { padding: 0 24px; }
  .hero__stats { gap: 24px; }
  .hero__actions { flex-direction: column; }
  .tours__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery__item:first-child { grid-column: 1/3; grid-row: auto; height: 240px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px; }
  .nav { padding: 14px 20px; }
}

/* Mobile nav open state */
.nav.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--green-deep);
  padding: 80px 32px 40px;
  gap: 24px;
  box-shadow: -8px 0 40px rgba(0,0,0,.3);
  z-index: 999;
}

.nav.nav--open .nav__cta {
  display: block;
  text-align: center;
  margin-top: 16px;
}
