/* NK Travel — home v5 */
/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative; height: 100vh;
  min-height: 680px; max-height: 960px; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  animation: herozoom 14s ease-out forwards;
}
@keyframes herozoom {
  from { transform: scale(1.07); } to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.32) 45%, rgba(0,0,0,0.62) 100%);
}
.hero-content {
  position: absolute; bottom: 80px; left: 0; right: 0; padding: 0 60px;
  color: white; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero-text { max-width: 620px; }
.hero-title {
  font-family: var(--serif); font-size: clamp(46px, 5.5vw, 80px);
  font-weight: 400; line-height: 1.1; margin-bottom: 20px;
  opacity: 0; animation: fadeup 0.7s ease 0.2s forwards;
}
.hero-title em { font-style: italic; color: #a8d5b5; }
.hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.8);
  line-height: 1.65; max-width: 460px; margin-bottom: 32px;
  opacity: 0; animation: fadeup 0.7s ease 0.4s forwards;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeup 0.7s ease 0.6s forwards;
}
.btn-primary {
  background: var(--amber); color: white; font-size: 14px; font-weight: 600;
  padding: 14px 30px; border-radius: 10px; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,124,42,0.4); }
.btn-outline-white {
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.38); color: white;
  font-size: 14px; font-weight: 500; padding: 14px 30px; border-radius: 10px; transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.22); }
.hero-stats {
  display: flex; flex-shrink: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; overflow: hidden;
  opacity: 0; animation: fadeup 0.7s ease 1s forwards;
}
.hero-stat { padding: 22px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,0.13); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--serif); font-size: 30px; font-weight: 600;
  color: white; line-height: 1; margin-bottom: 4px;
}
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.6); white-space: nowrap; }
@keyframes fadeup {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── DESTINATIONS STRIP ───────────────────────── */
.destinations {
  background: var(--cream); padding: 14px 60px;
  display: flex; align-items: center; border-bottom: 1px solid var(--cream-mid);
  overflow-x: auto; gap: 0;
}
.dest-label {
  font-size: 11px; font-weight: 600; color: var(--stone); letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  padding-right: 20px; border-right: 1px solid #ddd; margin-right: 20px; flex-shrink: 0;
}
.dest-tags { display: flex; gap: 8px; flex-wrap: nowrap; }
.dest-tag {
  font-size: 13px; font-weight: 500; color: var(--green); background: white;
  border: 1.5px solid rgba(45,74,62,0.2); border-radius: 100px;
  padding: 6px 16px; white-space: nowrap; cursor: pointer; transition: all 0.2s;
}
.dest-tag:hover, .dest-tag.active { background: var(--green); color: white; border-color: var(--green); }

/* ─── SECTION SHARED ───────────────────────────── */
.section { padding: 96px 60px; }
.section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--green); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
.link-all {
  font-size: 13.5px; font-weight: 500; color: var(--green);
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1.5px solid rgba(45,74,62,0.25); padding-bottom: 2px;
  transition: all 0.2s; white-space: nowrap; margin-bottom: 4px;
}
.link-all:hover { border-color: var(--green); gap: 10px; }

/* ─── TOUR CARDS ───────────────────────────────── */
.tours-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.tours-grid .card-featured { grid-column: span 2; }
.tour-card {
  border-radius: var(--radius); overflow: hidden; background: white;
  box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column; cursor: pointer;
}
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.card-featured .card-img-wrap img { height: 320px; }
.tour-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 100px; background: var(--amber); color: white;
}
.card-season {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 100px;
  background: rgba(0,0,0,0.42); backdrop-filter: blur(6px); color: rgba(255,255,255,0.92);
}
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-region {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-mid); margin-bottom: 6px;
}
.card-name {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); margin-bottom: 8px; line-height: 1.25;
}
.card-featured .card-name { font-size: 26px; }
.card-desc { font-size: 13px; color: var(--stone); line-height: 1.6; margin-bottom: 4px; flex: 1; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; margin-top: 14px; border-top: 1px solid var(--cream-mid);
}
.card-price { display: flex; flex-direction: column; }
.price-from { font-size: 10px; color: var(--stone); margin-bottom: 1px; }
.price-num { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.price-unit { font-size: 12px; color: var(--stone); font-weight: 400; }
.card-meta { display: flex; align-items: center; gap: 12px; }
.card-days { font-size: 12px; color: var(--stone); display: flex; align-items: center; gap: 5px; }
.btn-card {
  background: var(--green); color: white; font-size: 12px; font-weight: 600;
  padding: 9px 18px; border-radius: 8px; transition: all 0.2s;
}
.btn-card:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ─── TRUST STRIP ──────────────────────────────── */
.trust-strip {
  background: var(--green); padding: 64px 60px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0;
}
.trust-item {
  text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.1);
  color: white; display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.trust-num { font-family: var(--serif); font-size: 46px; font-weight: 400; line-height: 1; color: white; }
.trust-label { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ─── WHY US ───────────────────────────────────── */
.why-section { background: var(--cream); padding: 96px 60px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-card {
  background: white; border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px; background: rgba(45,74,62,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--green);
}
.why-title { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 10px; color: var(--ink); }
.why-text { font-size: 13.5px; color: var(--stone); line-height: 1.7; }

/* ─── FOUNDERS ─────────────────────────────────── */
.founders {
  background: var(--green); padding: 100px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.founders::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}
.founders::after {
  content: ''; position: absolute; bottom: -80px; left: 200px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.03); pointer-events: none;
}

.founders-photos {
  position: relative; height: 440px;
}
.founder-photo-main {
  position: absolute; left: 0; top: 0;
  width: 260px; height: 340px;
  border-radius: 140px 140px 100px 100px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  z-index: 2;
}
.founder-photo-main img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.founder-photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 32px; font-weight: 600;
  color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.08);
}
.founder-photo-second {
  position: absolute; right: 20px; bottom: 0;
  width: 220px; height: 290px;
  border-radius: 110px 110px 80px 80px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: rotate(2.5deg);
  z-index: 1;
}
.founder-photo-second img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.founder-badge {
  position: absolute; left: 190px; top: 220px; z-index: 3;
  background: var(--amber); color: white;
  border-radius: 100px; padding: 10px 18px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(224,124,42,0.5);
  white-space: nowrap;
}

.founders-text { position: relative; z-index: 1; }
.founders-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 16px; display: block;
}
.founders-title {
  font-family: var(--serif); font-size: clamp(30px, 3vw, 44px);
  font-weight: 400; color: white; line-height: 1.2; margin-bottom: 24px;
}
.founders-title em { font-style: italic; color: #a8d5b5; }
.founders-body {
  font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.8;
  margin-bottom: 36px; max-width: 440px;
}
.founders-people { display: flex; gap: 32px; }
.founder-person {}
.founder-name { font-size: 14px; font-weight: 600; color: white; margin-bottom: 3px; }
.founder-role { font-size: 12px; color: rgba(255,255,255,0.45); }
.founder-divider {
  width: 1px; background: rgba(255,255,255,0.12); flex-shrink: 0; margin: 2px 0;
}

/* ─── GUARANTEES ───────────────────────────────── */
.guarantees { padding: 96px 60px; }
.guarantees-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--cream-mid); border-radius: var(--radius); overflow: hidden;
}
.guarantee-item {
  background: white; padding: 36px 32px; display: flex; flex-direction: column; gap: 14px;
}
.guarantee-icon {
  width: 44px; height: 44px; background: rgba(45,74,62,0.07); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; color: var(--green);
}
.guarantee-title { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); }
.guarantee-text { font-size: 13px; color: var(--stone); line-height: 1.65; }

/* ─── HOW TO BOOK ──────────────────────────────── */
.how-to-book { background: var(--cream); padding: 96px 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step-card { background: white; border-radius: var(--radius); padding: 40px 36px; box-shadow: var(--shadow); }
.step-num {
  font-family: var(--serif); font-size: 52px; font-weight: 400;
  color: var(--amber); line-height: 1; margin-bottom: 20px;
}
.step-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.step-text { font-size: 13.5px; color: var(--stone); line-height: 1.7; }

/* ─── TESTIMONIALS ─────────────────────────────── */
.testimonials { padding: 96px 60px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card {
  background: white; border: 1.5px solid var(--cream-mid); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.review-card:hover { box-shadow: var(--shadow); border-color: rgba(45,74,62,0.15); }
.review-stars { display: flex; gap: 3px; color: var(--amber); font-size: 14px; }
.review-tour {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--green-mid); background: rgba(45,74,62,0.07);
  display: inline-block; padding: 4px 10px; border-radius: 100px;
}
.review-text {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  color: var(--ink-soft); line-height: 1.65; flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--cream-mid); }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.review-from { font-size: 11.5px; color: var(--stone); }

/* ─── BLOG ─────────────────────────────────────── */
.blog-section { background: var(--cream); padding: 96px 60px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s; cursor: pointer;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img-wrap { overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-body { padding: 22px 22px 26px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; display: block; }
.blog-title { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: 12px; }
.blog-date { font-size: 12px; color: var(--stone); }

/* ─── FAQ ──────────────────────────────────────── */
.faq-section { padding: 96px 60px; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; margin-top: 48px; }
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar-text { font-size: 14px; color: var(--stone); line-height: 1.75; margin-top: 16px; margin-bottom: 28px; }
.btn-faq-all {
  display: inline-block; background: var(--green); color: white;
  font-size: 13.5px; font-weight: 600; padding: 13px 26px; border-radius: 10px; transition: all 0.2s;
}
.btn-faq-all:hover { background: var(--green-dark); transform: translateY(-1px); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--cream-mid); cursor: pointer; }
.faq-item:first-child { border-top: 1px solid var(--cream-mid); }
.faq-question {
  width: 100%; background: transparent; border: 0; font-family: var(--sans);
  display: flex; align-items: center; justify-content: space-between; padding: 22px 0;
  gap: 20px; text-align: left; cursor: pointer;
}
.faq-q-cat { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; }
.faq-q-text { display: block; font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--stone); transition: all 0.25s;
}
.faq-item.open .faq-toggle { background: var(--green); border-color: var(--green); color: white; transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--stone); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s;
}
.faq-answer[hidden] { display: block; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 22px; }

/* ─── CTA BLOCK ────────────────────────────────── */
.cta-block {
  margin: 0 60px 96px; background: var(--green); border-radius: 20px; padding: 72px 80px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; background: rgba(255,255,255,0.04); border-radius: 50%;
}
.cta-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; display: block; }
.cta-title { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 400; color: white; line-height: 1.2; margin-bottom: 14px; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; max-width: 460px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }
.btn-cta-primary {
  background: var(--amber); color: white; font-size: 14px; font-weight: 600;
  padding: 16px 36px; border-radius: 10px; text-align: center; white-space: nowrap;
  border: none; cursor: pointer; transition: all 0.2s;
}
.btn-cta-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,124,42,0.45); }
.btn-cta-ghost { color: rgba(255,255,255,0.65); font-size: 13px; font-weight: 500; text-align: center; transition: color 0.2s; background: none; border: none; cursor: pointer; }
.btn-cta-ghost:hover { color: white; }

/* ─── PARTNER ──────────────────────────────────── */
.partner-strip {
  background: var(--cream); padding: 56px 60px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  border-top: 1px solid var(--cream-mid); border-bottom: 1px solid var(--cream-mid);
}
.partner-sub { font-size: 14px; color: var(--stone); line-height: 1.65; margin-top: 8px; max-width: 500px; }
.partner-btns { display: flex; gap: 14px; flex-shrink: 0; }
.btn-green {
  background: var(--green); color: white; font-size: 13.5px; font-weight: 600;
  padding: 14px 28px; border-radius: 10px; white-space: nowrap; transition: all 0.2s;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-green {
  background: white; color: var(--green); border: 1.5px solid rgba(45,74,62,0.28);
  font-size: 13.5px; font-weight: 600; padding: 14px 28px; border-radius: 10px;
  white-space: nowrap; transition: all 0.2s;
}
.btn-outline-green:hover { border-color: var(--green); background: rgba(45,74,62,0.04); }

/* ─── FOOTER ───────────────────────────────────── */
.home-static-footer {
  background: var(--ink); color: white; padding: 72px 60px 0;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand { font-family: var(--serif); font-size: 22px; color: white; margin-bottom: 14px; }
.footer-brand span { color: #6ecf8e; }
.footer-about { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; margin-bottom: 24px; max-width: 260px; }
.footer-contacts a { display: block; font-size: 13px; color: rgba(255,255,255,0.48); margin-bottom: 6px; transition: color 0.2s; }
.footer-contacts a:hover { color: #6ecf8e; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; display: block; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin: 48px -60px 0; padding: 20px 60px; display: flex; justify-content: space-between; align-items: center; grid-column: 1 / -1; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); }
.footer-langs { display: flex; gap: 16px; }
.footer-langs a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-langs a:hover, .footer-langs a.active { color: #6ecf8e; }

/* ─── STICKY CTA ───────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--amber); color: white; font-size: 14px; font-weight: 600;
  padding: 14px 36px; border-radius: 100px;
  box-shadow: 0 8px 32px rgba(224,124,42,0.45); white-space: nowrap;
  z-index: 150; border: none; cursor: pointer;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.sticky-cta.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.sticky-cta:hover { background: var(--amber-dark); }

/* ─── MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(20, 30, 25, 0.62);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--cream); border-radius: 20px;
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  transform: scale(0.95) translateY(12px);
  transition: transform 0.3s cubic-bezier(.34,1.2,.64,1);
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-header {
  background: var(--green); border-radius: 20px 20px 0 0;
  padding: 32px 36px 28px; position: relative;
}
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.22); color: white; }
.modal-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 10px;
}
.modal-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400; color: white; line-height: 1.2;
}
.modal-title em { font-style: italic; color: #a8d5b5; }

.modal-body { padding: 32px 36px 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 12px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.form-input, .form-select, .form-textarea {
  background: white; border: 1.5px solid var(--cream-mid);
  border-radius: 10px; padding: 12px 14px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(45,74,62,0.09);
}
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238c8880' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

.form-submit {
  width: 100%; background: var(--amber); color: white;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 16px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.2s; margin-top: 8px;
}
.form-submit:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,124,42,0.4); }
.form-note { font-size: 12px; color: var(--stone); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ─── HAMBURGER & MOBILE MENU ──────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
  color: white; /* default: on hero */
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px; transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Auto-compact nav (JS ResizeObserver triggers this) ── */
.nav-compact { padding: 0 20px; }
.nav-compact .nav-links,
.nav-compact .nav-right { display: none; }
.nav-compact .nav-hamburger { display: flex; }
.nav-compact.scrolled .nav-hamburger { color: var(--ink); }

.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 190;
  padding: 32px 28px 40px; overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  border-top: 1px solid var(--cream-mid);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-link {
  display: block; font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--cream-mid);
  transition: color 0.2s;
}
.mobile-menu-link:hover { color: var(--green); }
.mobile-menu-bottom {
  margin-top: auto; padding-top: 32px; display: flex; flex-direction: column; gap: 12px;
}
.mobile-lang-row { display: flex; gap: 8px; padding-top: 8px; }
.mobile-lang-btn {
  font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 8px; cursor: pointer;
  border: 1.5px solid var(--cream-mid); background: white; color: var(--stone); transition: all 0.2s;
}
.mobile-lang-btn.active { background: var(--green); color: white; border-color: var(--green); }

/* ─── RESPONSIVE ───────────────────────────────── */

/* ── 1024px tablet ── */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .section { padding: 72px 40px; }
  .why-section, .how-to-book, .blog-section { padding: 72px 40px; }
  .guarantees, .faq-section, .testimonials { padding: 72px 40px; }
  .destinations { padding: 14px 40px; }
  .trust-strip { padding: 48px 40px; }
  .cta-block { margin: 0 40px 72px; padding: 56px 56px; }
  .partner-strip { padding: 48px 40px; }
  .home-static-footer { padding: 56px 40px 0; gap: 40px; }
  .footer-bottom { margin: 40px -40px 0; padding: 20px 40px; }
  .founders { padding: 80px 40px; gap: 48px; }

  .tours-grid { grid-template-columns: 1fr 1fr; }
  .tours-grid .card-featured { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .guarantees-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { gap: 16px; }
  .faq-layout { gap: 48px; }

  .founders-photos { height: 420px; }
}

/* ── 768px mobile ── */
@media (max-width: 768px) {
  /* nav — padding handled by .nav-compact via ResizeObserver JS */

  /* hero */
  .hero-content { flex-direction: column; padding: 0 20px; bottom: 40px; gap: 20px; align-items: flex-start; }
  .hero-stats { width: 100%; border-radius: 12px; }
  .hero-stat { flex: 1; padding: 14px 10px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 10px; }

  /* shared */
  .section { padding: 56px 20px; }
  .why-section, .how-to-book, .blog-section { padding: 56px 20px; }
  .guarantees, .faq-section, .testimonials { padding: 56px 20px; }
  .destinations { padding: 12px 20px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 32px; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }

  /* trust strip */
  .trust-strip { padding: 40px 20px; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 32px 0; }
  .trust-item { border-right: none; padding: 0 16px; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .trust-num { font-size: 36px; }

  /* tours */
  .tours-grid { grid-template-columns: 1fr; }
  .tours-grid .card-featured { grid-column: span 1; }
  .card-featured .card-img-wrap img { height: 240px; }
  .card-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .card-meta { width: 100%; justify-content: space-between; }
  .btn-card { padding: 10px 20px; font-size: 13px; }

  /* why */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 24px; }

  /* founders */
  .founders { grid-template-columns: 1fr; padding: 56px 20px; gap: 40px; }
  .founders-photos { height: 320px; }
  .founder-photo-main { width: 180px; height: 240px; }
  .founder-photo-second { width: 155px; height: 205px; right: 10px; }
  .founder-badge { left: 145px; top: 165px; font-size: 11px; padding: 8px 12px; }
  .founders-body { font-size: 14px; }
  .founders-people { flex-direction: column; gap: 16px; }
  .founder-divider { display: none; }

  /* guarantees */
  .guarantees-grid { grid-template-columns: 1fr; }
  .guarantee-item { padding: 24px 22px; }

  /* steps */
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { padding: 28px 24px; }
  .step-num { font-size: 40px; margin-bottom: 12px; }

  /* reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* faq */
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; }

  /* cta */
  .cta-block { margin: 0 20px 56px; padding: 36px 28px; grid-template-columns: 1fr; gap: 28px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }

  /* partner */
  .partner-strip { padding: 36px 20px; grid-template-columns: 1fr; gap: 22px; }
  .partner-btns { flex-wrap: wrap; }

  /* footer */
  .home-static-footer { padding: 48px 20px 0; grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { margin: 32px -20px 0; padding: 20px 20px; flex-direction: column; gap: 10px; text-align: center; }
}

/* ── 480px small mobile ── */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline-white { width: 100%; justify-content: center; text-align: center; }

  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-num { font-size: 30px; }

  .founders-title { font-size: 26px; }
  .founders-photos { height: 290px; }
  .founder-photo-main { width: 158px; height: 210px; }
  .founder-photo-second { width: 135px; height: 180px; right: 0; }
  .founder-badge { left: 120px; top: 145px; font-size: 10px; padding: 6px 10px; }

  .modal-header { padding: 24px 20px 20px; border-radius: 16px 16px 0 0; }
  .modal-body { padding: 24px 20px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .modal { border-radius: 16px; }

  .home-static-footer { grid-template-columns: 1fr; gap: 28px; }

  .cta-block { padding: 32px 20px; }
  .cta-actions { flex-direction: column; }
  .btn-cta-primary { width: 100%; }
}

/* ─── SCROLL ANIMATIONS ────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.form-consent { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; font-size: 12px; line-height: 1.5; color: var(--stone); }
.form-consent input { width: 16px; height: 16px; margin-top: 2px; flex: 0 0 auto; }
.form-consent a { color: var(--green); text-decoration: underline; }
