:root {
  --ink: #17201d;
  --muted: #66716c;
  --paper: #f6f2e9;
  --white: #fffdf8;
  --pine: #174d3a;
  --pine-dark: #0d3024;
  --saffron: #d88633;
  --line: rgba(23, 32, 29, .14);
  --shadow: 0 20px 60px rgba(20, 39, 31, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 100; background: white; padding: 10px 14px; }
.skip:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(246, 242, 233, .88);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
  width: 42px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%;
  color: white; background: var(--pine); font-family: Georgia, serif; font-size: 20px;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--saffron); }
.menu-btn { display: none; border: 0; background: transparent; font-size: 25px; }

.hero {
  min-height: 680px; display: grid; align-items: end; color: white; position: relative; overflow: hidden;
  background: linear-gradient(90deg, rgba(8, 30, 23, .93) 0%, rgba(8, 30, 23, .63) 50%, rgba(8, 30, 23, .12) 100%),
    url("hero-kashmir.jpg") center 54% / cover;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 160px;
  background: linear-gradient(transparent, rgba(7, 25, 19, .58));
}
.hero-inner { position: relative; z-index: 2; padding-block: 150px 94px; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: 12px; }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--saffron); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.06; letter-spacing: -.025em; }
h1 { max-width: 820px; margin: 18px 0 22px; font-size: clamp(52px, 8vw, 94px); font-weight: 500; }
.hero p { max-width: 690px; font-size: 19px; color: rgba(255,255,255,.86); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 14px;
  background: var(--saffron); color: #1d170e;
}
.button.secondary { color: white; border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08); }

.trust-strip { background: var(--pine-dark); color: rgba(255,255,255,.82); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); padding: 22px 0; }
.trust-grid div { padding: 0 22px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { display: block; color: white; font-family: Georgia, serif; font-size: 21px; }

.section { padding: 96px 0; }
.section.soft { background: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.section-head h2 { margin: 10px 0 0; font-size: clamp(40px, 6vw, 66px); font-weight: 500; max-width: 720px; }
.section-head p { max-width: 440px; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card img { width: 100%; height: 260px; object-fit: cover; }
.card-body { padding: 28px; }
.tag { color: var(--saffron); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.card h3 { margin: 11px 0 12px; font-size: 30px; font-weight: 500; }
.card p { color: var(--muted); }
.text-link { color: var(--pine); font-weight: 850; text-underline-offset: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split img { width: 100%; height: 600px; object-fit: cover; border-radius: 140px 20px 140px 20px; box-shadow: var(--shadow); }
.split h2 { font-size: clamp(42px, 6vw, 68px); font-weight: 500; margin: 12px 0 22px; }
.checklist { padding: 0; list-style: none; }
.checklist li { padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--saffron); font-weight: 900; }

.route-band { color: white; background: var(--pine); }
.route-band .section-head p { color: rgba(255,255,255,.72); }
.route { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; counter-reset: route; }
.route div { position: relative; min-height: 170px; padding: 24px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.05); }
.route div::before { counter-increment: route; content: "0" counter(route); display: block; color: #efaa61; font-weight: 900; margin-bottom: 28px; }
.route strong { display: block; font-family: Georgia, serif; font-size: 22px; }
.route small { color: rgba(255,255,255,.65); }

.resource-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.resource {
  padding: 28px; border-radius: 18px; background: var(--white); border: 1px solid var(--line); text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}
.resource:hover { transform: translateY(-3px); border-color: var(--saffron); }
.resource span { display: block; color: var(--saffron); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.resource strong { display: block; margin: 8px 0; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.resource small { color: var(--muted); }
.guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guide-tile {
  display: flex; flex-direction: column; min-height: 230px; padding: 30px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  text-decoration: none; transition: transform .2s ease, border-color .2s ease;
}
.guide-tile:hover { transform: translateY(-3px); border-color: var(--saffron); }
.guide-tile strong { font-family: Georgia, serif; font-size: 31px; font-weight: 500; line-height: 1.12; }
.guide-tile span { color: var(--muted); margin: 13px 0 24px; }
.guide-tile b { color: var(--pine); margin-top: auto; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 28px 0; }
.fact-grid div { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.fact-grid strong, .fact-grid span { display: block; }
.fact-grid strong { color: var(--saffron); text-transform: uppercase; font-size: 11px; letter-spacing: .11em; }
.fact-grid span { margin-top: 5px; font-family: Georgia, serif; font-size: 23px; }
.article-hero small { display: block; margin-top: 22px; color: rgba(255,255,255,.56); }
.prose ol, .prose ul { padding-left: 24px; }
.prose li { margin: 9px 0; }

.article-hero { padding: 120px 0 72px; background: var(--pine-dark); color: white; }
.breadcrumbs { color: rgba(255,255,255,.58); font-size: 13px; }
.breadcrumbs a { color: inherit; }
.article-hero h1 { max-width: 900px; font-size: clamp(48px, 7vw, 80px); }
.article-hero p { max-width: 760px; color: rgba(255,255,255,.78); font-size: 19px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: 70px; align-items: start; }
.prose { font-size: 17px; }
.prose h2 { margin-top: 58px; font-size: 42px; font-weight: 500; }
.prose h3 { margin-top: 34px; font-size: 28px; font-weight: 500; }
.prose a { color: var(--pine); font-weight: 800; text-underline-offset: 3px; }
.prose img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin: 34px 0; }
.note { margin: 28px 0; padding: 24px; border-left: 4px solid var(--saffron); background: #fff8eb; border-radius: 0 14px 14px 0; }
.sidebar { position: sticky; top: 104px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.sidebar h3 { font-size: 26px; font-weight: 500; margin-top: 0; }
.sidebar a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--pine); font-weight: 750; }
.sidebar a:last-child { border: 0; }

.cta { padding: 64px; border-radius: 34px; color: white; background: linear-gradient(130deg, var(--pine), #1f7153); }
.cta h2 { max-width: 730px; margin: 0; font-size: clamp(40px, 6vw, 64px); font-weight: 500; }
.cta p { max-width: 660px; color: rgba(255,255,255,.76); }
.footer { padding: 64px 0 30px; background: #0b2119; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer h3 { color: white; font-size: 23px; font-weight: 500; }
.footer a { color: rgba(255,255,255,.75); }
.footer-links { display: grid; gap: 9px; }
.copyright { margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

@media (max-width: 900px) {
  .menu-btn { display: block; }
  .nav-links { display: none; position: absolute; top: 76px; inset-inline: 0; padding: 24px; background: var(--paper); flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .grid-3, .split, .article-layout, .guide-grid { grid-template-columns: 1fr; }
  .route { grid-template-columns: repeat(2,1fr); }
  .sidebar { position: static; }
  .split img { height: 440px; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 26px, 1160px); }
  .hero { min-height: 620px; }
  .hero-inner { padding: 110px 0 70px; }
  h1 { font-size: 49px; }
  .section { padding: 68px 0; }
  .section-head { display: block; }
  .grid-3, .resource-grid, .route, .footer-grid, .fact-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid div { border: 0; padding: 12px; }
  .cta { padding: 38px 26px; }
}
