/* ==============================================
   KULEN TOUR — Intrepid-inspired Redesign
   Bold · Editorial · Adventure · Clean
   ============================================== */

/* ── Design Tokens ────────────────────────────── */
:root {
  --green:        #2D5016;
  --green-dark:   #1e3a0f;
  --green-light:  #3d6b1f;
  --amber:        #E8820C;
  --amber-dark:   #c96e0a;
  --earth:        #C8A96E;
  --black:        #111111;
  --gray-90:      #1c1c1c;
  --gray-70:      #4a4a4a;
  --gray-50:      #767676;
  --gray-20:      #CCCCCC;
  --gray-10:      #f0eeea;
  --white:        #FFFFFF;
  --off-white:    #F5F3EF;
  --border:       #E0DDD7;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.14);
  --radius:       4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --transition:   0.22s ease;
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; }
svg { flex-shrink: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Announcement Bar ─────────────────────────── */
.announcement-bar {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.announcement-bar a {
  color: var(--earth);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Navigation ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 2px solid var(--black);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  padding: 8px 14px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.nav-links a:hover { background: var(--gray-10); }

.nav-cta {
  background: var(--amber) !important;
  color: white !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  margin-left: 12px;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--amber-dark) !important;
  color: white !important;
}

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

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn-sm { font-size: 0.78rem; padding: 10px 18px; }

.btn-primary {
  background: var(--amber);
  color: white;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: white;
}

.btn-black {
  background: var(--black);
  color: white;
  border-color: var(--black);
}
.btn-black:hover {
  background: var(--gray-90);
  border-color: var(--gray-90);
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-outline-white:hover {
  background: white;
  color: var(--black);
}

.btn-outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-black:hover {
  background: var(--black);
  color: white;
}

.btn-amber-large {
  background: var(--amber);
  color: white;
  border-color: var(--amber);
  padding: 18px 40px;
  font-size: 0.95rem;
  border-radius: var(--radius);
}
.btn-amber-large:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: white;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555400038-63f5ba517a47?w=1600&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 20, 5, 0.88) 0%,
    rgba(15, 30, 8, 0.55) 45%,
    rgba(10, 20, 5, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 80px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 900;
  color: white;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}

/* ── Trust Bar ────────────────────────────────── */
.trust-bar {
  background: var(--black);
  color: white;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
}

.trust-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trust-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Section Shared ───────────────────────────── */
section { padding: 96px 0; }

.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow::before { margin: 0 auto 0 auto; }

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--black);
  max-width: 640px;
}

.section-header.centered h2 { max-width: 100%; }

.section-header p {
  font-size: 1rem;
  color: var(--gray-70);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 16px;
}

.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── Tours Section ────────────────────────────── */
.tours-section { background: var(--white); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  border: 2px solid var(--black);
}

.tour-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--black);
  transition: background var(--transition);
}

.tour-card:last-child { border-right: none; }
.tour-card:hover { background: var(--off-white); }

.tour-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}

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

.tour-card:hover .tour-card-image img { transform: scale(1.04); }

.tour-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--amber);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.tour-badge--popular { background: var(--green); }
.tour-badge--family  { background: var(--black); }

.tour-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gray-50);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tour-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.15;
}

.tour-card-body p {
  font-size: 0.875rem;
  color: var(--gray-70);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.tour-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.tour-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--gray-50);
  display: block;
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* ── Why Kulen ────────────────────────────────── */
.why-section { background: var(--off-white); padding: 0; }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.why-image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

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

.why-image-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: white;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.why-content {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}

.why-content > p {
  font-size: 0.95rem;
  color: var(--gray-70);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
}

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.why-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.why-bullet-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: var(--radius);
  color: white;
  margin-top: 2px;
}

.why-bullet-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.why-bullet-text span {
  font-size: 0.82rem;
  color: var(--gray-50);
  line-height: 1.5;
}

/* ── Testimonials ─────────────────────────────── */
.testimonials-section {
  background: var(--white);
  padding: 96px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  border: 2px solid var(--black);
}

.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-right: 2px solid var(--black);
  transition: background var(--transition);
  position: relative;
}

.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--off-white); }

.testimonial-card::before {
  content: '\201C';
  font-family: 'Montserrat', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 0.8;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.93rem;
  line-height: 1.78;
  color: var(--gray-70);
  margin-bottom: 24px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-from {
  font-size: 0.76rem;
  color: var(--gray-50);
  margin-top: 2px;
}

/* ── Gallery ──────────────────────────────────── */
.gallery-section { background: var(--black); padding: 96px 0; }

.gallery-section .section-header { padding: 0 32px; }
.gallery-section .section-eyebrow { color: var(--earth); }
.gallery-section .section-header h2 { color: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(15%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 5, 0);
  transition: background var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(10, 20, 5, 0.45);
}

.gallery-overlay span {
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay span { opacity: 1; }

/* ── Booking Banner ───────────────────────────── */
.booking-banner {
  background: var(--amber);
  padding: 100px 32px;
  text-align: center;
}

.booking-banner-content { max-width: 640px; margin: 0 auto; }

.booking-banner .section-eyebrow { color: rgba(255,255,255,0.7); }
.booking-banner .section-eyebrow::before { background: rgba(255,255,255,0.5); margin: 0 auto 10px; }

.booking-banner h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.booking-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,0.55); }

.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: white;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: white; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.contact-icon {
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.25);
}

.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ── Scroll Animations ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    border: 2px solid var(--black);
  }
  .tour-card:nth-child(2) { border-right: none; }
  .tour-card:last-child { grid-column: span 2; border-right: none; border-top: 2px solid var(--black); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:nth-child(2) { border-right: none; }
  .testimonial-card:last-child { grid-column: span 2; border-right: none; border-top: 2px solid var(--black); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-content { padding: 60px 48px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 2px solid var(--black);
    box-shadow: var(--shadow-md);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 0.9rem; }
  .nav-cta { text-align: center; margin-left: 0 !important; }

  .hero-content { padding: 0 20px 60px; }

  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 22px 24px; }
  .trust-item:last-child { border-bottom: none; }

  .tours-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .tour-card { border-right: none !important; border-bottom: 2px solid var(--black); }
  .tour-card:last-child { grid-column: auto; border-bottom: none; }

  .why-inner { grid-template-columns: 1fr; }
  .why-image { min-height: 320px; }
  .why-content { padding: 48px 24px; }
  .why-content > p { max-width: 100%; }

  .testimonials-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .testimonial-card { border-right: none !important; border-bottom: 2px solid var(--black); }
  .testimonial-card:last-child { grid-column: auto; border-bottom: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); padding: 0 20px; }
  .gallery-item--tall { grid-row: span 1; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-scroll { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; padding: 0 20px; }
  .gallery-item { height: 220px; }
  .nav-inner { padding: 0 20px; }
}
