/* ==========================================================================
   Visit Ladakh — Premium Travel Site
   Design language inspired by Black Tomato: restrained palette, generous
   whitespace, large serif editorial headlines, thin uppercase nav type.
   ========================================================================== */

:root {
  --night:      #14171f;   /* near-black, deep dusk sky over the Himalaya */
  --night-soft: #1e2330;
  --ivory:      #faf7f1;   /* warm off-white, like sun-bleached prayer flags */
  --ivory-dim:  #f2ede3;
  --stone:      #6b6459;   /* muted taupe for secondary text */
  --stone-light:#9a9284;
  --rust:       #b5602f;   /* terracotta / apricot — Ladakhi apricot & clay */
  --rust-dark:  #8f4a22;
  --gold:       #b9985a;   /* muted gold — monastery gilding */
  --line:       rgba(20, 23, 31, 0.1);
  --line-light: rgba(250, 247, 241, 0.18);

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--night);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rust);
}

.lede {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--stone);
  max-width: 46em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--night);
  background: transparent;
  color: var(--night);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--night); color: var(--ivory); }

.btn-solid {
  background: var(--night);
  color: var(--ivory);
  border-color: var(--night);
}
.btn-solid:hover { background: var(--rust); border-color: var(--rust); }

.btn-light {
  border-color: var(--line-light);
  color: var(--ivory);
}
.btn-light:hover { background: var(--ivory); color: var(--night); border-color: var(--ivory); }

.btn-arrow::after { content: "\2192"; transition: transform 0.3s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
/* Transparent over the hero; solidifies once the page scrolls past it. */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.site-header.is-scrolled {
  position: fixed;
  background: var(--ivory);
  color: var(--night);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20,23,31,0.06);
}

.nav-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
}

.logo {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.25;
  display: block;
}
.logo span { color: var(--rust); }
.logo-img { height: 52px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.nav-icon {
  display: inline-flex;
  color: inherit;
  opacity: 0.9;
}
.nav-icon svg { width: 16px; height: 16px; }
.main-nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  color: inherit;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--rust); }
.main-nav a.active::after { background: var(--rust); }

.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 1.4rem; }
.nav-phone { font-size: 0.78rem; letter-spacing: 0.04em; color: inherit; white-space: nowrap; }

.nav-actions .btn-solid {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--ivory);
}
.nav-actions .btn-solid:hover { background: var(--rust-dark); border-color: var(--rust-dark); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { width: 22px; height: 1.5px; background: currentColor; transition: background 0.2s ease; }

/* Off-canvas drawer: reached via the hamburger, holds the full site map */
.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--ivory);
  color: var(--night);
  z-index: 200;
  padding: 7rem 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  box-shadow: -30px 0 60px rgba(0,0,0,0.18);
  transition: right 0.45s cubic-bezier(.2,.8,.2,1);
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-family: var(--serif);
  font-size: 1.5rem;
}
.nav-drawer a.active { color: var(--rust); }
.nav-drawer-close {
  position: absolute;
  top: 2rem; right: 2.2rem;
  background: none; border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--night);
}
.nav-drawer-meta { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.85rem; }
.nav-drawer-meta a { font-family: var(--sans); font-size: 0.85rem; display: block; margin-bottom: 0.5rem; color: var(--stone); }
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(20,23,31,0.4);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,31,0.34) 0%, rgba(20,23,31,0.18) 32%, rgba(20,23,31,0.5) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; align-items: center; }
.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  max-width: 18em;
  color: var(--ivory);
}
.hero p.lede {
  color: rgba(250,247,241,0.88);
  margin: 1.5rem auto 0;
  max-width: 34em;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-cta { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute; z-index: 2;
  left: 50%; bottom: 2.6rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.8;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 34px;
  background: var(--ivory);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(1); opacity: .4; } 50% { transform: scaleY(0.5); opacity: 1; } }

/* Smaller inner-page hero */
.page-hero { min-height: 58vh; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 1rem; }

/* ---------- Sections ---------- */
section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-dark { background: var(--night); color: var(--ivory); }
.section-dark .stone-text { color: rgba(250,247,241,0.68); }
.section-alt { background: var(--ivory-dim); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); max-width: 14em; }

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.two-col.reverse { grid-template-columns: 1.15fr 0.85fr; }
.two-col.reverse .two-col-media { order: 2; }

.two-col-media { position: relative; }
.two-col-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.media-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--rust);
  z-index: -1;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.section-dark .stat-row { border-top-color: var(--line-light); }
.stat-num { font-family: var(--serif); font-size: 2.6rem; color: var(--rust); }
.stat-label { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-top: 0.4rem; }
.section-dark .stat-label { color: rgba(250,247,241,0.6); }

/* ---------- Cards / grids ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
}
.card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.card:hover img { transform: scale(1.08); }
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,23,31,0) 40%, rgba(20,23,31,0.88) 100%);
}
.card-body { position: relative; z-index: 2; padding: 1.6rem; }
.card-eyebrow { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; margin-bottom: 0.4rem; }
.card-body h3 { font-size: 1.35rem; color: var(--ivory); }
.card-body p { font-size: 0.88rem; color: rgba(250,247,241,0.78); margin: 0.5rem 0 0; line-height: 1.6; }
.card-link {
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

/* Simple content cards (no image) */
.plain-card {
  padding: 2.4rem;
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.plain-card:hover { border-color: var(--rust); transform: translateY(-4px); }
.plain-card .num { font-family: var(--serif); font-size: 0.9rem; color: var(--rust); margin-bottom: 1.2rem; display: block; }
.plain-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.plain-card p { font-size: 0.92rem; line-height: 1.7; color: var(--stone); margin: 0; }

/* ---------- Quote / pull-quote ---------- */
.pull-quote {
  max-width: 44em;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.5;
  font-weight: 500;
}
.pull-quote cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 1.6rem;
}

/* ---------- Full-bleed banner ---------- */
.banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  background-size: cover;
  background-position: center;
}
.banner::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(20,23,31,0.55);
}
.banner-inner { position: relative; z-index: 2; }
.banner h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 16em; color: var(--ivory); }

/* ---------- Centered statement (the "feeling" section) ---------- */
.statement {
  text-align: center;
  max-width: 46em;
  margin: 0 auto;
}
.statement p.lede { margin: 0 auto; font-size: 1.05rem; }
.statement .btn { margin-top: 2.2rem; }

/* ---------- Rust CTA banner ---------- */
.cta-band {
  background: var(--rust);
  color: var(--ivory);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.cta-band h2 { color: var(--ivory); font-size: clamp(1.9rem, 3.6vw, 2.8rem); text-transform: uppercase; }
.cta-band .btn { margin-top: 1.8rem; }
.cta-band .btn-solid { background: var(--night); border-color: var(--night); }
.cta-band .btn-solid:hover { background: var(--ivory); color: var(--night); border-color: var(--ivory); }

/* ---------- Icon feature row ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.feature-row .feature svg { width: 34px; height: 34px; stroke: var(--rust); margin: 0 auto 1.2rem; display: block; }
.feature-row .feature h4 { font-family: var(--sans); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }

/* ---------- Tables (general info) ---------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table td { padding: 1rem 0.5rem; font-size: 0.92rem; }
.info-table td:first-child { color: var(--stone); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.72rem; width: 40%; }

/* ---------- Accordion (regions / monasteries) ---------- */
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trig {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  background: none; border: none;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--night);
}
.accordion-trig .plus { font-family: var(--sans); font-size: 1.3rem; color: var(--rust); transition: transform 0.3s ease; }
.accordion-item.open .accordion-trig .plus { transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.accordion-panel-inner { padding-bottom: 2rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 2.5rem; }
.accordion-panel-inner img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.accordion-panel-inner p { color: var(--stone); line-height: 1.8; font-size: 0.95rem; }
.tag-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1rem; }
.tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 0.7rem; border: 1px solid var(--line); color: var(--stone); }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-field { grid-column: span 2; display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.half { grid-column: span 1; }
.form-field label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }
.form-field input, .form-field select, .form-field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 0.75rem 0.2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--night);
}
.section-dark .form-field input, .section-dark .form-field select, .section-dark .form-field textarea {
  border-bottom-color: var(--line-light);
  color: var(--ivory);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--rust);
}
.form-field textarea { resize: vertical; min-height: 100px; }

/* ---------- Footer ---------- */
.newsletter-bar { background: var(--night-soft); border-bottom: 1px solid var(--line-light); }
.newsletter-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.8rem 0;
  flex-wrap: wrap;
}
.newsletter-bar h4 { color: var(--ivory); font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input {
  border: none;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: var(--ivory);
  padding: 0.6rem 0.2rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  min-width: 220px;
}
.newsletter-form input::placeholder { color: rgba(250,247,241,0.5); }
.newsletter-form input:focus { outline: none; border-bottom-color: var(--rust); }

.site-footer { background: var(--night); color: rgba(250,247,241,0.72); padding-top: 5.5rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .logo { color: var(--ivory); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1.2rem; max-width: 26em; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.3rem;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.88rem; transition: color 0.25s ease; }
.footer-col a:hover { color: var(--rust); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-social { display: flex; gap: 1.2rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.breadcrumb a { opacity: 0.75; }
.breadcrumb a:hover { opacity: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .two-col-media { order: 0; }
  .accordion-panel-inner { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-phone { display: none; }
  .nav-row { grid-template-columns: auto 1fr auto; }
  .nav-actions .btn-solid { display: none; }
}

@media (max-width: 780px) {
  .card-grid, .card-grid.cols-4, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.6rem; padding-bottom: 3rem; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.half { grid-column: span 1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
  .newsletter-bar .container { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
