:root {
  --ink: #1d1d1f;
  --soft-ink: #515154;
  --muted: #86868b;
  --paper: #f5f5f7;
  --panel: #ffffff;
  --line: rgba(0, 0, 0, 0.10);
  --dark: #000000;
  --accent: #0071e3;
  --green: #0071e3;
  --clay: #bf5b32;
  --radius: 8px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(245, 245, 247, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font-size: 13px;
  color: var(--soft-ink);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(0, 0, 0, 0.06);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform .25s var(--ease);
}

.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: 118px clamp(20px, 5vw, 64px) 54px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.18) 58%, rgba(0,0,0,.62)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Hunza%20Valley%20%2C%20Pakistan.jpg?width=1800") center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 700;
}

.hero .eyebrow,
.dark-band .eyebrow,
.contact-hero .eyebrow { color: #2997ff; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  color: var(--soft-ink);
  line-height: 1.62;
}

.hero-copy {
  width: min(620px, 100%);
  color: rgba(255,255,255,.78);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.42;
}

.hero-actions,
.cta-card .button,
.price-card .button { margin-top: 24px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.button:hover { transform: translateY(-1px); }

.button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.button.secondary {
  background: rgba(255,255,255,.12);
  color: inherit;
  border-color: rgba(255,255,255,.28);
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 48px;
  z-index: 2;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: #fff;
  backdrop-filter: blur(18px);
}

.hero-panel span,
.price-card span,
.pickup-card span,
.contact-card-large span,
.contact-tile span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}

.hero-panel strong {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 64px);
}

.section-heading {
  width: min(860px, 100%);
}

.intro {
  background: var(--panel);
}

.feature-grid,
.pickup-grid,
.pricing-grid,
.contact-grid,
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.feature-card,
.pickup-card,
.price-card,
.note-card,
.contact-tile,
.list-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--accent);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
}

.split-copy p { max-width: 560px; }

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.image-stack {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
}

.image-stack img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 18px;
  width: min(260px, calc(100% - 44px));
  background: rgba(247,243,237,.9);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  margin-bottom: 8px;
}

.dark-band {
  background: var(--dark);
  color: #fff;
}

.dark-band h2,
.contact-hero h1,
.contact-hero p { color: #fff; }

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08);
}

.pill-grid.light span {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.cta {
  padding-top: 80px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  background: var(--ink);
  color: #fff;
}

.cta-card p { color: rgba(255,255,255,.68); max-width: 620px; }

.page-hero {
  padding: 132px clamp(20px, 5vw, 64px) 82px;
  background:
    linear-gradient(90deg, rgba(245,245,247,.98), rgba(245,245,247,.78)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Naran%2C%20Kaghan%20Valley%20%2811%29.JPG?width=1600") center/cover;
  position: relative;
  overflow: hidden;
}

.page-hero-copy { width: min(820px, 100%); }

.page-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
  filter: saturate(.9);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(52px, 7vw, 96px);
}

.timeline-section { padding-top: 40px; }

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(18px, 5vw, 72px);
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.day {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
}

.timeline-item ul,
.clean-list,
.terms-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item li,
.clean-list li,
.terms-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--soft-ink);
  line-height: 1.6;
}

.timeline-item li:last-child,
.clean-list li:last-child,
.terms-list li:last-child { border-bottom: 0; }

.pricing-grid { align-items: stretch; }

.price-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card h2 { font-size: 42px; }
.price-card p { flex: 1; }

.price-card.featured {
  background: var(--dark);
  color: #fff;
  transform: translateY(-18px);
}

.price-card.featured p { color: rgba(255,255,255,.68); }

.services-page { padding-top: 30px; }

.muted-card { background: #eee7dd; }

.notes-grid {
  padding-top: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy { padding-top: 50px; }

.policy-table {
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.policy-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.policy-table div:last-child { border-bottom: 0; }

.policy-table span { color: var(--accent); font-weight: 700; }

.contact-hero {
  min-height: 78svh;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 64px) 64px;
  background:
    linear-gradient(90deg, rgba(23,21,18,.88), rgba(23,21,18,.36)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Hunza%20Valley%20%2819984330269%29.jpg?width=1600") center/cover;
}

.contact-card-large {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.contact-card-large a {
  display: block;
  color: #fff;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 14px;
}

.contact-card-large p { color: rgba(255,255,255,.68); }

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-tile strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.toolbar-section {
  padding-top: 42px;
}

.filter-control {
  display: inline-grid;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-control span,
.booking-form label span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}

select,
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  outline: none;
}

select:focus,
input:focus {
  border-color: rgba(79,127,95,.65);
  box-shadow: 0 0 0 4px rgba(79,127,95,.12);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  overflow: hidden;
}

.tour-card-image {
  width: calc(100% + 48px);
  height: 190px;
  margin: -24px -24px 4px;
  object-fit: cover;
  background: #e8e8ed;
}

.tour-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.tour-card h3,
.city-card h3,
.place-row h3 {
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 0;
}

.tour-card p {
  margin-bottom: 0;
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--soft-ink);
  background: var(--paper);
}

details {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.details-grid {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.details-grid h4 {
  margin: 0 0 8px;
}

.details-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--soft-ink);
  line-height: 1.55;
}

.details-grid li + li {
  margin-top: 8px;
}

.tour-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 42px;
}

.tour-facts {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  padding: 24px;
  overflow: hidden;
}

.facts-image {
  width: calc(100% + 48px);
  height: 220px;
  margin: -24px -24px 6px;
  object-fit: cover;
  background: #222;
}

.tour-facts div {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.tour-facts span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}

.tour-facts strong {
  display: block;
  line-height: 1.35;
}

.tour-detail-main {
  display: grid;
  gap: 18px;
}

.detail-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.detail-block h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.detail-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.number-list {
  margin: 0;
  padding-left: 22px;
  color: var(--soft-ink);
  line-height: 1.65;
}

.number-list li + li {
  margin-top: 14px;
}

.mini-pills.large span {
  font-size: 14px;
  padding: 9px 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.info-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
}

.info-grid strong {
  line-height: 1.4;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.city-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  overflow: hidden;
}

.city-image {
  width: calc(100% + 56px);
  height: 170px;
  margin: -28px -28px 22px;
  object-fit: cover;
  background: #e8e8ed;
}

.city-card > span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  margin-bottom: 18px;
}

.places-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 42px;
}

.place-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.place-thumb {
  width: 112px;
  height: 88px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #e8e8ed;
}

.place-row p {
  margin-bottom: 0;
  font-size: 14px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: start;
  padding-top: 42px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label:first-child {
  grid-column: 1 / -1;
}

.summary-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
  padding: 24px;
}

.summary-panel pre {
  white-space: pre-wrap;
  margin: 0 0 20px;
  font-family: inherit;
  color: rgba(255,255,255,.86);
  line-height: 1.55;
}

.summary-panel p {
  color: rgba(255,255,255,.64);
}

.terms { padding-top: 40px; }

.terms-list { max-width: 940px; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    padding: 12px;
    background: rgba(247,243,237,.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }

  .menu-open .site-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hero { min-height: 840px; }
  .hero-panel { position: relative; right: auto; bottom: auto; margin-top: 34px; }

  .feature-grid,
  .pickup-grid,
  .pricing-grid,
  .notes-grid,
  .contact-grid,
  .tour-grid,
  .city-grid,
  .places-index,
  .booking-layout,
  .tour-detail-layout,
  .detail-pair,
  .split,
  .contact-hero,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .price-card.featured { transform: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 10px; }
  .summary-panel { position: static; }
  .tour-facts { position: static; }
}

@media (max-width: 560px) {
  .site-header { height: 64px; }
  .site-nav { top: 64px; }
  .hero { padding-top: 112px; min-height: 780px; }
  .hero-actions .button { width: 100%; }
  .image-stack,
  .image-stack img { min-height: 360px; }
  .policy-table div { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .tour-actions { align-items: flex-start; flex-direction: column; }
  .place-row { grid-template-columns: 1fr; }
  .place-thumb { width: 100%; height: 180px; }
  .site-footer { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
