/* ==========================================================================
   Kenya Safari Tours — English Harbour Design System
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #e67e22;
  --color-primary-hover: #d35400;
  --color-text-muted: #687279;
  --color-dark: #111518;
  --color-border: #E9EBEC;
  --color-surface: #f5f1e8;
  --color-white: #ffffff;
  --color-body: #2a2b2b;
  --color-footer-bg: #000000;

  --pillar-1: #4c8dae;
  --pillar-2: #93d365;
  --pillar-3: #f0c873;
  --pillar-4: #e67e22;

  --container-max: 1290px;
  --container-narrow: 800px;

  --transition: all 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --transition-image: 0.32s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary-hover);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: 40px; }
h2 { font-size: 35px; }
h3 { font-size: 30px; }
h4 { font-size: 25px; }
h5 { font-size: 20px; }
h6 { font-size: 16px; }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.section--surface {
  background: var(--color-surface);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 0;
  padding: 5px 20px;
  min-height: 60px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  gap: 8px;
}

.btn:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
  transform: translate3d(0, -3px, 0);
}

.btn--hero {
  font-size: 18px;
  padding: 16px 35px;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--small {
  min-height: 48px;
  font-size: 14px;
  padding: 4px 18px;
}

/* --- Meta Labels --- */
.meta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--color-text-muted);
}

/* ======================================================================
   HERO SECTION
   ====================================================================== */
.hero {
  position: relative;
  background: url('../kenya-safari-hero2.webp') center 60%/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 180px 0 160px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--color-white);
}

.hero__title {
  font-size: 60px;
  line-height: 1.1em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 600px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  display: block;
  line-height: 1.2;
}

.hero__stat-label {
  font-size: 13px;
  opacity: 0.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__trust svg {
  flex-shrink: 0;
}

/* ======================================================================
   HERO PILLARS (3 overlapping cards)
   ====================================================================== */
.hero-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--container-max);
  margin: -100px auto 0;
  position: relative;
  z-index: 3;
  padding: 0 24px;
}

.hero-pillar {
  padding: 50px 35px;
  color: var(--color-white);
}

.hero-pillar--1 { background: var(--pillar-1); }
.hero-pillar--2 { background: var(--pillar-2); }
.hero-pillar--3 { background: var(--pillar-3); color: var(--color-dark); }

.hero-pillar__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-pillar--3 .hero-pillar__title {
  color: var(--color-dark);
}

.hero-pillar__text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-pillar--3 .hero-pillar__text {
  color: var(--color-body);
  opacity: 1;
}

@media (max-width: 999px) {
  .hero-pillars {
    margin-top: -70px;
  }

  .hero-pillar {
    padding: 35px 25px;
  }

  .hero-pillar__title {
    font-size: 18px;
  }

  .hero-pillar__text {
    font-size: 14px;
  }
}

@media (max-width: 689px) {
  .hero-pillars {
    grid-template-columns: 1fr;
    margin-top: -50px;
  }

  .hero-pillar {
    padding: 30px 24px;
  }

  .hero-pillar__title {
    font-size: 20px;
  }
}

/* ======================================================================
   AT A GLANCE TABLE
   ====================================================================== */
.glance-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.glance-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.glance-table th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 14px 16px;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
}

.glance-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  vertical-align: middle;
}

.glance-table tr:hover td {
  background: var(--color-surface);
}

.glance-table a {
  font-weight: 600;
}

.glance-table--blue th { background: #4c8dae; }
.glance-table--green th { background: #93d365; color: var(--color-dark); }
.glance-table--orange th { background: #e67e22; }
.glance-table--gold th { background: #f0c873; color: var(--color-dark); }

.glance-intro {
  max-width: var(--container-narrow);
  margin: 0 auto 32px;
  text-align: center;
}

.glance-intro p {
  color: var(--color-text-muted);
  font-size: 15px;
}

/* ======================================================================
   DESTINATIONS SECTION (image header + content)
   ====================================================================== */
.destinations-section {
  background: var(--color-surface);
}

.destinations-section__hero {
  width: 100%;
  height: 45vw;
  max-height: 550px;
  background: url('../kenya-safari-hero.webp') center 75%/cover no-repeat;
  display: flex;
  align-items: flex-start;
  padding-top: 20px;
  text-align: center;
}

.destinations-section__hero h2 {
  color: var(--color-dark);
  margin-bottom: 8px;
}

.destinations-section__hero p {
  color: var(--color-body);
  font-size: 16px;
}

.destinations-section__body {
  position: relative;
  margin-top: -120px;
  padding-top: 0;
  padding-bottom: 60px;
}

@media (max-width: 999px) {
  .destinations-section__body {
    margin-top: -60px;
  }
}

@media (max-width: 689px) {
  .destinations-section__hero {
    height: auto;
    min-height: 180px;
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .destinations-section__hero h2 {
    font-size: 24px;
  }

  .destinations-section__hero p {
    color: var(--color-white);
    font-size: 14px;
  }

  .destinations-section__body {
    margin-top: 0;
    padding-bottom: 40px;
  }
}

/* ======================================================================
   DESTINATIONS GRID
   ====================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.destination-card {
  background: var(--color-white);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.04);
}

.destination-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.destination-card__tagline {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.destination-card ul {
  list-style: none;
}

.destination-card li {
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 3px 0;
  line-height: 1.5;
}

.destination-card li strong {
  color: var(--color-dark);
}

@media (max-width: 999px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 689px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   DECISION GUIDE
   ====================================================================== */
.decision-guide {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.decision-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.decision-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.decision-step__content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.decision-step__content ul {
  list-style: none;
}

.decision-step__content li {
  font-size: 15px;
  color: var(--color-text-muted);
  padding: 4px 0;
  line-height: 1.6;
}

.decision-step__content li strong {
  color: var(--color-dark);
}

@media (max-width: 689px) {
  .decision-step {
    gap: 16px;
  }

  .decision-step__number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ======================================================================
   SECTION IMAGE BANNER (inline image within a section)
   ====================================================================== */
.section-image-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 35vw;
  max-height: 400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 48px;
}

@media (max-width: 689px) {
  .section-image-banner {
    height: 50vw;
    margin-top: 32px;
  }
}

/* ======================================================================
   PARK FEES SECTION (content left + image right)
   ====================================================================== */
.park-fees-section {
  position: relative;
  background: url('../nairobi-national-park.webp') right center/cover no-repeat;
  background-color: var(--color-white);
  display: flex;
  align-items: stretch;
}

.park-fees-section__content {
  width: 55%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.55) 100%);
  padding: 60px 48px;
}

.park-fees-section__image-text {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
}

.park-fees-section__image-text h3 {
  font-size: 42px;
  line-height: 1.15;
  color: var(--color-white);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.park-fees-section__image-text p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

@media (max-width: 999px) {
  .park-fees-section__content {
    width: 60%;
    padding: 40px 32px;
  }

  .park-fees-section__image-text {
    width: 40%;
    padding: 40px 24px;
  }

  .park-fees-section__image-text h3 {
    font-size: 30px;
  }
}

@media (max-width: 689px) {
  .park-fees-section {
    flex-direction: column;
    background-position: center top;
    background-size: 100% 240px;
    background-repeat: no-repeat;
    padding-top: 240px;
  }

  .park-fees-section__image-text {
    order: 1;
    width: 100%;
    min-height: auto;
    padding: 28px 24px 16px;
    background: var(--color-white);
  }

  .park-fees-section__image-text h3 {
    font-size: 26px;
    color: #e67e22;
    text-shadow: none;
  }

  .park-fees-section__image-text p {
    color: var(--color-text-muted);
    font-size: 15px;
    text-shadow: none;
    font-weight: 400;
  }

  .park-fees-section__content {
    order: 2;
    width: 100%;
    padding: 8px 24px 32px;
    background: var(--color-white);
  }
}

/* ======================================================================
   MIGRATION SECTION (image background + content right)
   ====================================================================== */
.migration-section {
  position: relative;
  background: url('../migration.webp') left center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}

.migration-section__title-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.migration-section__title-side h2 {
  font-size: 50px;
  line-height: 1.15;
  color: var(--color-white);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.migration-section__title-side p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f0c873;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.migration-section__content {
  width: 50%;
  background: rgba(0, 0, 0, 0.85);
  padding: 60px 48px;
  color: var(--color-white);
}

.migration-section__content h2 {
  color: #f0c873;
}

.migration-section__content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.migration-section__content .glance-table-wrap {
  overflow-x: auto;
}

.migration-section__content .glance-table td {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.migration-section__content .glance-table tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 999px) {
  .migration-section__title-side {
    width: 40%;
    padding: 40px 24px;
  }

  .migration-section__title-side h2 {
    font-size: 36px;
  }

  .migration-section__content {
    width: 60%;
    padding: 40px 32px;
  }
}

@media (max-width: 689px) {
  .migration-section {
    flex-direction: column;
    min-height: auto;
  }

  .migration-section__title-side {
    width: 100%;
    min-height: 250px;
    padding: 40px 24px;
  }

  .migration-section__title-side h2 {
    font-size: 32px;
  }

  .migration-section__content {
    width: 100%;
    padding: 32px 24px;
  }
}

/* ======================================================================
   REVIEW CARDS
   ====================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-white);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  box-shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.04);
}

.review-card__stars {
  color: var(--color-primary);
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body);
  font-style: italic;
  margin-bottom: 12px;
}

.review-card__meta {
  font-size: 13px;
  color: var(--color-text-muted);
}

@media (max-width: 689px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* ======================================================================
   CATEGORY CARDS (2x2 grid replacing comparison table)
   ====================================================================== */
.category-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.category-card {
  padding: 50px 35px;
  color: var(--color-white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  filter: brightness(1.06);
}

.category-card--1 { background: #4c8dae; }
.category-card--2 { background: #93d365; color: var(--color-dark); }
.category-card--3 { background: #f0c873; color: var(--color-dark); }
.category-card--4 { background: #e67e22; }

.category-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: inherit;
}

.category-card__facts {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  opacity: 0.95;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.category-card__best-for {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
}

.category-card__description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 24px;
  flex-grow: 1;
}

.category-card--2 .category-card__description,
.category-card--3 .category-card__description {
  color: var(--color-body);
  opacity: 1;
}

.category-card--2 .category-card__facts,
.category-card--3 .category-card__facts {
  opacity: 0.7;
}

/* CTA buttons */
.category-card__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 24px;
  border: 2px solid;
  background: transparent;
  text-decoration: none;
  transition: var(--transition);
  align-self: flex-start;
}

.category-card__cta--light {
  border-color: var(--color-white);
  color: var(--color-white);
}

.category-card__cta--light:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.category-card__cta--dark {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.category-card__cta--dark:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

@media (max-width: 999px) {
  .category-card {
    padding: 35px 25px;
  }

  .category-card__title {
    font-size: 18px;
  }

  .category-card__description {
    font-size: 14px;
  }
}

@media (max-width: 689px) {
  .category-cards {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 30px 24px;
  }

  .category-card__title {
    font-size: 20px;
  }
}

/* ======================================================================
   CATEGORY SECTIONS
   ====================================================================== */
.category {
  padding: 80px 0 40px;
}

.category:nth-child(even) {
  background: var(--color-surface);
}

.category--1 {
  background: var(--color-surface);
}

.category__header {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto 48px;
}

.category__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.category--1 .category__badge { background: var(--pillar-1); }
.category--2 .category__badge { background: var(--pillar-2); }
.category--3 .category__badge { background: var(--pillar-3); }
.category--4 .category__badge { background: var(--pillar-4); }

.category__title {
  font-size: 45px;
  margin-bottom: 16px;
}

.category--1 .category__title { color: #4c8dae; }
.category--2 .category__title { color: #93d365; }
.category--3 .category__title { color: #f0c873; }
.category--4 .category__title { color: #e67e22; }

.category__description {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto 24px;
}

.category__who {
  font-size: 15px;
  color: var(--color-body);
  margin-bottom: 16px;
}

.category__who strong {
  color: var(--color-dark);
}

/* Pros/Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: left;
}

.pros-cons__col h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.pros-cons__col ul {
  list-style: none;
}

.pros-cons__col li {
  font-size: 14px;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--color-text-muted);
}

.pros-cons__col--pro li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--pillar-3);
  font-weight: 700;
}

.pros-cons__col--con li::before {
  content: '-';
  position: absolute;
  left: 2px;
  color: var(--color-primary);
  font-weight: 700;
}

/* Park Fee Callout */
.park-fee-callout {
  background: #fef3ec;
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  margin: 0 auto 40px;
  max-width: 700px;
  font-size: 15px;
}

.park-fee-callout strong {
  color: var(--color-dark);
}

/* ======================================================================
   TOUR CARDS
   ====================================================================== */
.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tour-card {
  background: var(--color-white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0px 12px 18px -6px rgba(34, 56, 101, 0.04);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.tour-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card__highlights {
  flex-grow: 1;
}


.tour-card__body {
  padding: 24px;
}

.tour-card__pick {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  margin-bottom: 12px;
  color: var(--color-white);
  background: var(--color-primary);
}

.category--1 .tour-card__pick { background: #4c8dae; }
.category--2 .tour-card__pick { background: #93d365; color: var(--color-dark); }
.category--3 .tour-card__pick { background: #f0c873; color: var(--color-dark); }
.category--4 .tour-card__pick { background: #e67e22; }

.tour-card__title {
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
}

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

.tour-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-card__rating {
  color: var(--color-primary);
  font-weight: 600;
}

.tour-card__price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.tour-card__price-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.tour-card__highlights {
  margin-bottom: 20px;
}

.tour-card__highlights li {
  font-size: 14px;
  padding: 3px 0 3px 20px;
  position: relative;
  color: var(--color-text-muted);
}

.tour-card__highlights li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--pillar-3);
  font-weight: 700;
}

.tour-card__widget {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

/* ======================================================================
   FAQ ACCORDION
   ====================================================================== */
.faq {
  padding: 80px 0;
  background: var(--color-white);
}

.faq__title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 40px;
}

.faq__list {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq__item.active .faq__question::after {
  content: '\2212';
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq__item.active .faq__answer {
  max-height: 600px;
}

/* ======================================================================
   PRACTICAL INFO
   ====================================================================== */
.practical {
  padding: 80px 0;
  background: var(--color-surface);
}

.practical__title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 40px;
}

.practical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.practical__card {
  background: var(--color-white);
  padding: 32px 24px;
  border-top: 4px solid var(--color-primary);
}

.practical__card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.practical__card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ======================================================================
   FOOTER
   ====================================================================== */
.footer {
  background: var(--color-footer-bg);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.footer__nav a {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--color-primary);
}

.footer__copy {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ======================================================================
   STICKY MOBILE CTA
   ====================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-cta .btn {
  width: 100%;
}

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

/* Tablet: 690–999px */
@media (max-width: 999px) {
  .hero {
    padding: 140px 0 100px;
  }

  .hero__title {
    font-size: 45px;
  }

  .category__title,
  .faq__title,
  .practical__title {
    font-size: 35px;
  }

  .tour-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pros-cons {
    gap: 16px;
  }
}

/* Mobile: <= 689px */
@media (max-width: 689px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: 500px;
    background-position: left 60%;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__stats {
    gap: 20px;
  }

  .hero__stat-value {
    font-size: 26px;
  }

  h2 { font-size: 28px; }
  h3 { font-size: 24px; }

  .category {
    padding: 50px 0 30px;
  }

  .category__title,
  .faq__title,
  .practical__title {
    font-size: 30px;
  }

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

  .pros-cons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-cards {
    grid-template-columns: 1fr;
  }

  .tour-card__title {
    font-size: 20px;
  }

  .tour-card__price {
    font-size: 24px;
  }

  .sticky-cta {
    display: block;
  }

  .footer {
    padding: 50px 0 100px;
  }

  .footer__nav {
    gap: 12px 20px;
  }

  .section {
    padding: 50px 0;
  }
}

/* Small mobile: <= 479px */
@media (max-width: 479px) {
  .hero__title {
    font-size: 30px;
  }

  .hero__stat-value {
    font-size: 22px;
  }

  .hero__stats {
    gap: 16px;
  }

  .btn--hero {
    font-size: 16px;
    padding: 14px 28px;
  }

  .tour-card__body {
    padding: 18px;
  }
}

/* ======================================================================
   404 PAGE
   ====================================================================== */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

.page-404__code {
  font-family: 'Montserrat', sans-serif;
  font-size: 120px;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404__title {
  font-size: 35px;
  margin-bottom: 16px;
}

.page-404__text {
  font-size: 17px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.page-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 24px;
}

.page-404__links a {
  font-size: 14px;
  font-weight: 500;
}

/* ======================================================================
   FOCUS / A11Y
   ====================================================================== */
:focus-visible {
  outline: 2px solid var(--color-primary-hover);
  outline-offset: 3px;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* ==========================================================================
   Site Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: 120px;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.site-header__logo:hover {
  color: var(--color-primary);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus {
  color: var(--color-primary);
}

.site-header__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 12px 24px;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.site-header__cta:hover,
.site-header__cta:focus {
  background: var(--color-primary-hover);
  color: var(--color-white);
}

.site-header__burger {
  display: none;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-dark);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.site-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(18, 21, 25, 0.98);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--color-white);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.mobile-menu__nav {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.mobile-menu__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__link {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu__link:hover,
.mobile-menu__link:focus {
  color: var(--color-primary);
}

.mobile-menu__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 14px 28px;
  border-radius: 0;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu__cta:hover,
.mobile-menu__cta:focus {
  background: var(--color-primary-hover);
  color: var(--color-white);
}

body.menu-open {
  overflow: hidden;
}

/* Scroll offset so sticky header does not cover anchor targets */
section[id] {
  scroll-margin-top: 120px;
}

/* Tablet */
@media (max-width: 999px) {
  .site-header {
    height: 70px;
  }
  .site-nav,
  .site-header__cta {
    display: none;
  }
  .site-header__burger {
    display: flex;
  }
  section[id] {
    scroll-margin-top: 70px;
  }
}

/* Mobile */
@media (max-width: 689px) {
  .site-header {
    height: 70px;
  }
  .site-nav,
  .site-header__cta {
    display: none;
  }
  .site-header__burger {
    display: flex;
  }
  section[id] {
    scroll-margin-top: 70px;
  }
}
