:root {
  --green-dark: #2f4d16;
  --green: #4a7c23;
  --green-light: #6aa72e;
  --cream: #f7f5ee;
  --paper: #fffdf8;
  --ink: #26301f;
  --muted: #5c6b52;
  --gold: #e0a93c;
  --white: #fff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: var(--green); }
h1, h2, h3 { font-family: 'Lora', serif; line-height: 1.2; }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; }
.skip-link:focus { left: 12px; background: #fff; color: var(--green-dark); padding: 10px 14px; border-radius: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 238, .96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
  backdrop-filter: blur(8px);
}
.nav { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: auto; height: 43px; }
.nav-links { display: flex; align-items: center; gap: 23px; }
.nav-links a { color: var(--ink); font-size: .92rem; font-weight: 600; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: var(--green); }
.menu-button { display: none; border: 0; background: none; color: var(--green-dark); font-size: 1.7rem; cursor: pointer; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--green); color: #fff; }
.button-primary:hover { background: var(--green-dark); }
.button-light { background: #fff; color: var(--green-dark); }
.button-outline { border-color: rgba(255, 255, 255, .75); color: #fff; }
.button-outline:hover { background: #fff; color: var(--green-dark); }

.hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(28, 46, 13, .92), rgba(47, 77, 22, .58)); }
.hero-son {
  background:
    radial-gradient(circle at 78% 24%, rgba(224, 169, 60, .88) 0 4%, transparent 4.5%),
    linear-gradient(155deg, transparent 54%, #284313 54.5% 68%, #3f681d 68.5%),
    linear-gradient(25deg, #7192a2 0 43%, #d9c79c 43.5% 48%, #41661d 48.5%);
}
.hero-issyk { background: url('/images/sunset.png') center 54% / cover no-repeat; }
.hero-inner { padding: 24px 0 88px; max-width: 780px; }
.breadcrumbs { padding-top: 18px; margin-bottom: 54px; color: rgba(255, 255, 255, .8); font-size: .84rem; }
.breadcrumbs a { color: #fff; text-decoration: none; }
.eyebrow { display: inline-block; margin-bottom: 18px; padding: 6px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 700; }
.hero h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(2.35rem, 6vw, 4.4rem); }
.hero-lead { max-width: 670px; margin-bottom: 28px; color: #edf3e5; font-size: clamp(1.02rem, 2vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.quick-facts { position: relative; z-index: 2; margin-top: -34px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: 18px; box-shadow: 0 12px 34px rgba(47,77,22,.14); overflow: hidden; }
.fact { padding: 22px; border-right: 1px solid #e5e8dc; }
.fact:last-child { border-right: 0; }
.fact small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; font-weight: 700; }
.fact strong { display: block; margin-top: 4px; color: var(--green-dark); font-family: 'Lora', serif; font-size: 1.03rem; }

.section { padding: 76px 0; }
.section-white { background: #fff; }
.section-green { background: var(--green-dark); color: #fff; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2 { margin-bottom: 12px; color: var(--green-dark); font-size: clamp(1.8rem, 4vw, 2.7rem); }
.section-green .section-heading h2 { color: #fff; }
.section-heading p, .prose p { color: var(--muted); }
.section-green .section-heading p { color: #dbe6ca; }
.prose { max-width: 760px; }
.prose p + p { margin-top: 16px; }
.two-col { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: start; }
.image-card { overflow: hidden; border-radius: 20px; box-shadow: 0 12px 34px rgba(47,77,22,.14); }
.image-card img { width: 100%; min-height: 410px; object-fit: cover; }
.note-card { padding: 28px; border: 1px solid #dde3d3; border-radius: 18px; background: var(--paper); }
.note-card h3 { margin-bottom: 10px; color: var(--green-dark); }
.note-card p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 27px; border-radius: 18px; background: #fff; box-shadow: 0 5px 20px rgba(47,77,22,.08); }
.card-number { display: grid; width: 38px; height: 38px; margin-bottom: 16px; place-items: center; border-radius: 50%; background: #eef4e3; color: var(--green); font-weight: 800; }
.card h3 { margin-bottom: 8px; color: var(--green-dark); font-size: 1.15rem; }
.card p { color: var(--muted); font-size: .93rem; }

.tour-panel { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 34px; border-radius: 22px; background: #fff; color: var(--ink); }
.tour-panel h2 { margin-bottom: 10px; color: var(--green-dark); }
.tour-panel p { max-width: 700px; color: var(--muted); }
.tour-price { margin-top: 12px; color: var(--green); font-size: 1.1rem; font-weight: 800; }
.tour-price span { color: var(--muted); font-size: .8rem; font-weight: 500; }

.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #dce1d4; padding: 18px 0; }
.faq summary { color: var(--green-dark); font-weight: 700; cursor: pointer; }
.faq details p { padding-top: 10px; color: var(--muted); }

.related { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.related a { display: block; padding: 25px; border: 1px solid #dce1d4; border-radius: 18px; background: #fff; text-decoration: none; }
.related strong { display: block; margin-bottom: 6px; color: var(--green-dark); font-family: 'Lora', serif; font-size: 1.2rem; }
.related span { color: var(--muted); font-size: .9rem; }

.final-cta { padding: 62px 0; background: linear-gradient(135deg, var(--green-dark), #466d22); color: #fff; text-align: center; }
.final-cta h2 { margin-bottom: 10px; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.final-cta p { max-width: 650px; margin: 0 auto 24px; color: #dbe6ca; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

footer { padding: 34px 0; background: #20360f; color: #cbd8bb; font-size: .86rem; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
footer a { margin-left: 16px; color: #fff; text-decoration: none; }
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 820px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 18px 20px; background: var(--cream); box-shadow: 0 10px 22px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid #e5e8dc; }
  .two-col, .tour-panel { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1100px); }
  .hero-inner { padding-bottom: 74px; }
  .breadcrumbs { margin-bottom: 36px; }
  .facts-grid, .related { grid-template-columns: 1fr; }
  .fact { border-right: 0; border-bottom: 1px solid #e5e8dc; }
  .fact:last-child { border-bottom: 0; }
  .section { padding: 58px 0; }
  .footer-row { flex-direction: column; }
  footer a { margin: 0 14px 0 0; }
}

