@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-serif-normal-400-subset.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-normal-400-subset.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-normal-600-subset.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f3eadc;
  --paper-soft: #f8f2e8;
  --paper-strong: #eee1cf;
  --ink: #332720;
  --muted: #69584b;
  --muted-dark: #b7aa99;
  --line: #d8cdbc;
  --line-dark: rgba(255, 255, 255, 0.22);
  --cedar: #0c3b32;
  --cedar-deep: #0d3029;
  --cedar-soft: #104b3f;
  --saffron: #d98a48;
  --copper: #8c4a2c;
  --white: #fffdf8;
  --shadow: 0 20px 50px rgba(44, 30, 20, 0.16);
  --shadow-dark: 0 24px 60px rgba(0, 31, 25, 0.24);
  --content: min(1200px, calc(100vw - 80px));
  --serif: "Instrument Serif", "Bodoni 72", Didot, Georgia, serif;
  --brand-serif: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.82), rgba(255, 253, 248, 0.16) 46%, rgba(255, 253, 248, 0.72)),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 0;
  z-index: 60;
  transform: translateY(calc(-100% - 12px));
  background: var(--white);
  color: var(--cedar);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only,
.home-page .hero figcaption,
.home-page .house-collage figcaption,
.home-page .host-section__portrait figcaption,
.home-page .destination-mosaic span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 20px max(38px, calc((100vw - 1200px) / 2));
  color: var(--white);
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(2, 45, 37, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 31, 25, 0.2);
  backdrop-filter: blur(14px) saturate(1.12);
}

.site-header--solid,
.guide-page .site-header {
  background: rgba(251, 247, 239, 0.95);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(1.12);
}

.brand,
.footer-brand {
  display: inline-grid;
  grid-template-columns: 38px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 9px;
  min-height: 46px;
  font-family: var(--brand-serif);
  line-height: 1;
}

.brand__mark {
  grid-row: 1 / 3;
  width: 38px;
  height: 42px;
  object-fit: contain;
  filter: none;
}

.brand span,
.footer-brand span {
  align-self: end;
  color: currentColor;
  font-size: 1.38rem;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small,
.footer-brand small {
  align-self: start;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header.is-scrolled .brand small,
.site-header--solid .brand small,
.guide-page .brand small {
  color: var(--muted);
}

.footer-brand small {
  color: rgba(255, 253, 248, 0.74);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav .nav-cta {
  min-height: 34px;
}

.site-nav a:not(.nav-cta) {
  color: color-mix(in srgb, currentColor 88%, transparent);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a[aria-current="page"] {
  color: var(--saffron);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease);
}

.nav-cta {
  min-height: 34px;
  padding: 0 12px;
  background: var(--cedar);
  color: var(--white);
}

.site-header.is-scrolled .nav-cta {
  background: var(--white);
  color: var(--cedar);
}

.nav-cta:hover,
.button--primary:hover {
  background: var(--cedar-soft);
  color: var(--white);
}

.site-header.is-scrolled .nav-cta:hover {
  background: var(--saffron);
  color: var(--cedar-deep);
}

.nav-cta:active,
.button:active {
  transform: translateY(1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  padding: 0;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.header-sentinel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 620px;
  min-height: 590px;
  max-height: 72dvh;
  padding: 96px max(80px, calc((100vw - 1200px) / 2)) 48px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 16, 17, 0.403) 0%, rgba(7, 16, 17, 0.273) 34%, rgba(7, 16, 17, 0.065) 68%, rgba(7, 16, 17, 0.208) 100%),
    linear-gradient(0deg, rgba(5, 22, 20, 0.364) 0%, rgba(5, 22, 20, 0.052) 45%, rgba(5, 22, 20, 0.156) 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
  overflow: hidden;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    image-set(
      url("assets/images/uplift/hero-reference-clean-640-mobile.avif") type("image/avif"),
      url("assets/images/uplift/hero-reference-clean-640.webp") type("image/webp"),
      url("assets/images/uplift/hero-reference-clean-640.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

.hero__media picture,
.hero__image,
.hero__media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.hero__media picture {
  display: block;
}

@media (min-width: 821px) {
  .hero__media::before {
    background-image: image-set(
      url("assets/images/uplift/hero-reference-clean-960.webp") type("image/webp"),
      url("assets/images/uplift/hero-reference-clean-960.jpg") type("image/jpeg")
    );
  }
}

@media (min-width: 1400px) {
  .hero__media::before {
    background-image: image-set(
      url("assets/images/uplift/hero-reference-clean-1600.webp") type("image/webp"),
      url("assets/images/uplift/hero-reference-clean-1600.jpg") type("image/jpeg")
    );
  }
}

.hero__copy {
  width: min(560px, 100%);
  margin-top: 56px;
}

.hero__mark {
  display: none;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 7.15rem;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__subtitle {
  max-width: 27rem;
  margin-bottom: 24px;
  color: var(--saffron);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero__subtitle span {
  display: block;
}

.hero__text {
  max-width: 23.5rem;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.38);
  color: rgba(255, 253, 248, 0.92);
  font-size: 1.04rem;
  line-height: 1.54;
}

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

.button {
  padding: 0 20px;
}

.button--primary {
  background: var(--cedar);
  color: var(--white);
}

.button--secondary {
  background: rgba(6, 18, 17, 0.22);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.72);
}

.button--secondary:hover {
  background: var(--white);
  color: var(--cedar);
  border-color: var(--white);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  min-height: 82px;
  padding: 0 max(40px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(250, 246, 238, 0.92)),
    var(--paper-soft);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.proof-item,
.proof-rating {
  min-height: 42px;
}

.proof-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.proof-item + .proof-item {
  padding-left: 34px;
}

.proof-item p {
  margin: 0;
  line-height: 1.12;
}

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
}

.proof-item span:not(.proof-icon) {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.proof-icon {
  position: relative;
  width: 30px;
  height: 30px;
  color: #7d5b4b;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.proof-icon::before,
.proof-icon::after {
  content: "";
  position: absolute;
  inset: 5px;
  display: none;
}

.proof-icon--petal {
  background-image: url("assets/images/uplift/reference-proof-private.png");
}

.proof-icon--flower {
  background-image: url("assets/images/uplift/reference-proof-rooted.png");
}

.proof-icon--shield {
  background-image: url("assets/images/uplift/reference-proof-shield.png");
}

.proof-rating {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 15px;
  align-items: center;
  padding-left: 34px;
}

.proof-rating strong {
  grid-row: 1 / 3;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1;
}

.rating-stars {
  color: var(--saffron);
  font-size: 0.94rem;
  letter-spacing: 1px;
  line-height: 1;
}

.proof-rating small {
  color: var(--copper);
  font-size: 0.58rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.house-story,
.host-section,
.guide-preview {
  width: 100%;
  scroll-margin-top: 82px;
}

.house-story {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  padding: 58px max(40px, calc((100vw - 1200px) / 2)) 64px;
  background:
    linear-gradient(90deg, rgba(252, 248, 239, 0.94), rgba(244, 237, 226, 0.72) 52%, rgba(252, 248, 240, 0.9)),
    var(--paper-soft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.house-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.7), rgba(255, 253, 248, 0.24) 58%, rgba(255, 253, 248, 0.72)),
    image-set(
      url("assets/images/uplift/kashmiri-embroidery-paper-soft-1600.webp") type("image/webp"),
      url("assets/images/uplift/kashmiri-embroidery-paper-soft-1600.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}

.house-story > * {
  position: relative;
  z-index: 1;
}

.plain-label {
  display: block;
  margin-bottom: 18px;
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-copy {
  padding-top: 36px;
}

.section-copy h2,
.host-section h2,
.guide-panel h2,
.route-board h2,
.destination-section h2,
.rates-section h2,
.food-section h2,
.checklist-section h2 {
  margin-bottom: 22px;
  color: rgba(51, 39, 32, 0.9);
  font-family: var(--serif);
  font-size: 3.18rem;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.host-section .person-name {
  margin: 0 0 18px;
  color: rgba(51, 39, 32, 0.9);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.manager-card .person-name {
  margin-bottom: 8px;
}

.guide-preview h2 {
  margin-bottom: 22px;
  color: rgba(255, 253, 248, 0.94);
  font-family: var(--serif);
  font-size: 3.18rem;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy p,
.guide-preview__copy p,
.guide-panel__intro p,
.route-board__intro p,
.rates-section > div > p,
.food-section div > p,
.checklist-section div > p {
  max-width: 34rem;
  margin-bottom: 28px;
  color: var(--muted);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin-block: -8px;
  padding-block: 8px;
  color: var(--cedar);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.text-link::after {
  content: "→";
  width: auto;
  height: auto;
  margin-left: 2px;
  border: 0;
  font-size: 0.82em;
  line-height: 1;
  transform: none;
  transition: transform 160ms var(--ease);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.text-link--light {
  color: rgba(255, 253, 248, 0.94);
}

.house-collage,
.house-gallery {
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: var(--paper-strong);
}

.house-collage picture,
.house-gallery picture,
.destination-mosaic picture {
  display: block;
}

.house-collage img,
.house-gallery img {
  width: 100%;
  border-radius: 0;
  height: auto;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.house-collage img {
  aspect-ratio: 560 / 379;
}

.house-collage:hover img {
  transform: scale(1.035);
}

.house-gallery {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 0 0 16px;
  background: transparent;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(140, 74, 44, 0.42) transparent;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.house-gallery:focus-visible {
  outline-offset: 8px;
}

.house-gallery__item {
  position: relative;
  flex: 0 0 clamp(360px, 48vw, 560px);
  margin: 0;
  overflow: visible;
  background: transparent;
  scroll-snap-align: start;
}

.house-gallery__item--wide {
  grid-row: auto;
}

.house-gallery__item picture {
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.house-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-position: center;
}

.house-gallery__item--living img {
  object-position: 47% 50%;
}

.house-gallery__item--bedroom-main img {
  object-position: 50% 54%;
}

.house-gallery__item--bedroom-second img {
  object-position: 52% 50%;
}

.house-gallery__item--stair {
  flex-basis: clamp(360px, 48vw, 560px);
}

.house-gallery__item--stair img {
  object-fit: contain;
  object-position: 50% 42%;
}

.house-gallery__item--exterior img {
  object-position: 48% 52%;
}

.house-gallery__item:hover img {
  transform: scale(1.035);
}

.house-gallery__item figcaption {
  position: static;
  margin: 0;
  padding: 14px 0 0;
  background: transparent;
  color: var(--ink);
}

.house-gallery__item figcaption strong,
.house-gallery__item figcaption span {
  display: block;
}

.house-gallery__item figcaption strong {
  margin-bottom: 4px;
  color: rgba(51, 39, 32, 0.92);
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.08;
}

.house-gallery__item figcaption span {
  max-width: 32rem;
  color: rgba(105, 88, 75, 0.92);
  font-size: 0.82rem;
  line-height: 1.42;
}

.host-section {
  position: relative;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) 250px;
  gap: 56px;
  align-items: center;
  padding: 60px max(40px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.96), rgba(247, 241, 231, 0.9)),
    var(--paper);
  overflow: hidden;
}

.host-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("assets/images/uplift/papier-pattern-soft-720.webp") type("image/webp"),
    url("assets/images/uplift/papier-pattern-soft-720.jpg") type("image/jpeg")
  );
  background-size: 560px auto;
  background-position: left center;
  opacity: 0.08;
  pointer-events: none;
}

.host-section > * {
  position: relative;
}

.host-section__portrait {
  margin: 0;
  width: min(100%, 260px);
}

.host-section__portrait img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.host-section__letter {
  max-width: 650px;
  padding: 12px 0 10px;
}

.host-section__letter .plain-label {
  margin-bottom: 16px;
}

.host-section__letter p {
  max-width: 46rem;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.signature {
  margin-top: 22px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.manager-card {
  position: relative;
  display: grid;
  align-self: start;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.manager-card::before {
  content: none;
}

.manager-card__portrait {
  margin: 0 0 4px;
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.manager-card__portrait picture {
  display: block;
}

.manager-card__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 44%;
}

.manager-card h3 {
  margin: 0 0 2px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.34rem;
  font-weight: 400;
  line-height: 1.1;
}

.manager-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.42;
}

.guide-preview {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  padding: 52px max(40px, calc((100vw - 1200px) / 2));
  background: #0d3029;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.guide-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    image-set(
      url("assets/images/uplift/kashmiri-woodwork-green-1600.webp") type("image/webp"),
      url("assets/images/uplift/kashmiri-woodwork-green-1600.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  opacity: 0.48;
  filter: saturate(0.9) contrast(1.12);
  pointer-events: none;
}

.guide-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 45%, rgba(24, 84, 70, 0.2), transparent 43%),
    linear-gradient(90deg, rgba(13, 48, 41, 0.66) 0%, rgba(13, 48, 41, 0.48) 36%, rgba(13, 48, 41, 0.7) 100%),
    linear-gradient(180deg, rgba(6, 33, 28, 0.08), rgba(4, 25, 21, 0.22));
  pointer-events: none;
}

.guide-preview > * {
  position: relative;
  z-index: 1;
}

.guide-preview .plain-label {
  color: #d8914e;
}

.guide-preview h2 {
  color: rgba(255, 253, 248, 0.9);
}

.guide-preview__copy p {
  color: rgba(255, 253, 248, 0.8);
}

.guide-preview__copy p span {
  display: block;
}

.destination-mosaic {
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.destination-mosaic img {
  width: 100%;
  aspect-ratio: 560 / 226;
  height: auto;
  object-fit: cover;
  transition: transform 560ms var(--ease), filter 560ms var(--ease);
}

.destination-mosaic:hover img {
  filter: saturate(1.06);
  transform: scale(1.04);
}

.booking-band {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 176px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249, 244, 235, 0.98) 0%, rgba(246, 240, 230, 0.96) 50%, rgba(250, 246, 237, 0.98) 100%),
    #f1eadf;
  border-bottom: 1px solid rgba(216, 205, 188, 0.72);
}

.booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: image-set(
    url("assets/images/uplift/kashmiri-embroidery-paper-1600.webp") type("image/webp"),
    url("assets/images/uplift/kashmiri-embroidery-paper-1600.jpg") type("image/jpeg")
  ) center / cover no-repeat;
  opacity: 0.38;
  filter: saturate(0.82) contrast(0.94) brightness(1.04);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24) 36%, rgba(0, 0, 0, 0.22) 62%, rgba(0, 0, 0, 0.68));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.booking-band__copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.booking-band .plain-label {
  margin-bottom: 6px;
  color: #d48949;
  font-size: 0.68rem;
}

.booking-band h2 {
  margin: 0 0 4px;
  color: rgba(47, 40, 35, 0.86);
  font-family: var(--serif);
  font-size: 1.84rem;
  font-weight: 400;
  line-height: 1.04;
}

.booking-band p {
  margin: 0 0 14px;
  color: rgba(78, 67, 59, 0.82);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
}

.booking-band .button {
  min-height: 34px;
  padding-inline: 18px;
  font-size: 0.59rem;
  font-weight: 500;
}

.booking-band__art {
  position: absolute;
  right: max(6px, calc((100vw - 1200px) / 2));
  bottom: 0;
  width: min(31vw, 286px);
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, max-content) minmax(0, 720px);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  justify-content: space-between;
  padding: 34px max(32px, calc((100vw - 1200px) / 2));
  background: #0d3029;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.88rem;
  overflow: hidden;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: image-set(
    url("assets/images/uplift/kashmiri-woodwork-green-1600.webp") type("image/webp"),
    url("assets/images/uplift/kashmiri-woodwork-green-1600.jpg") type("image/jpeg")
  ) center / cover no-repeat;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.1);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 38%, rgba(24, 82, 68, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(13, 48, 41, 0.68), rgba(13, 48, 41, 0.58) 46%, rgba(13, 48, 41, 0.76));
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 400;
}

.footer-brand {
  grid-template-columns: 34px auto;
  column-gap: 9px;
  color: var(--white);
  justify-self: start;
}

.footer-brand .brand__mark {
  width: 34px;
  height: 38px;
}

.footer-brand span {
  font-size: 1.22rem;
}

.footer-weather {
  display: grid;
  gap: 10px;
  width: 100%;
  justify-self: end;
}

.footer-weather__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 253, 248, 0.92);
}

.footer-weather__head span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-weather__head small {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.68rem;
}

.footer-weather__list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(255, 253, 248, 0.16);
  border: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-weather__item {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 74px;
  padding: 9px 8px;
  background: rgba(5, 37, 31, 0.52);
}

.footer-weather__item time {
  color: rgba(255, 253, 248, 0.64);
  font-size: 0.67rem;
  line-height: 1;
}

.footer-weather__temp {
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
}

.footer-weather__temp span {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.7rem;
  font-weight: 500;
}

.footer-weather__condition {
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.63rem;
  line-height: 1.15;
}

.footer-weather__item--loading {
  grid-column: 1 / -1;
  min-height: 58px;
  align-content: center;
  color: rgba(255, 253, 248, 0.66);
  font-size: 0.75rem;
}

.guide-page {
  background: var(--paper-soft);
}

.guest-guide {
  padding-top: 78px;
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 56px;
  width: var(--content);
  min-height: 620px;
  margin: 0 auto;
  padding: 76px 0 58px;
  align-items: center;
}

.guide-hero h1 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 4.45rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.guide-hero__copy > p {
  max-width: 29rem;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.12rem;
}

.guide-hero__media {
  margin: 0;
}

.guide-hero__media img {
  width: 100%;
  height: min(54dvh, 500px);
  min-height: 360px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.guide-page .button--secondary {
  color: var(--cedar);
  border-color: var(--cedar);
  background: transparent;
}

.guide-page .button--secondary:hover {
  background: var(--cedar);
  color: var(--white);
}

.guide-index {
  position: sticky;
  top: 90px;
  z-index: 20;
  width: var(--content);
  margin: -26px auto 54px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(14px);
}

.guide-index a {
  flex: 0 0 auto;
  padding: 9px 15px;
  color: var(--muted);
  font-weight: 800;
}

.guide-index a:hover {
  background: rgba(7, 59, 49, 0.09);
  color: var(--cedar);
}

.guide-panel,
.route-board,
.destination-section,
.rates-section,
.food-section,
.checklist-section {
  width: var(--content);
  margin: 0 auto;
  padding: 90px 0;
}

.guide-panel__intro,
.route-board__intro,
.destination-section .guide-panel__intro {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.day-shapes article,
.route-grid article,
.rates-grid article,
.destination-grid article {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(44, 30, 20, 0.06);
}

.day-shapes article,
.route-grid article,
.rates-grid article {
  padding: 24px;
}

.day-shapes strong,
.route-grid strong,
.rates-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.18;
}

.day-shapes strong {
  margin-bottom: 16px;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.day-shapes p,
.route-grid p,
.rates-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.38;
}

.route-grid {
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.route-grid article {
  scroll-snap-align: start;
}

.route-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 800;
}

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

.destination-grid article {
  overflow: hidden;
}

.destination-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination-grid div {
  padding: 22px;
}

.destination-grid h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.destination-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.rates-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: start;
}

.rates-grid {
  grid-template-columns: 1fr;
}

.food-section {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.food-section figure {
  margin: 0;
}

.food-section img {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.food-section ul,
.checklist-section ol {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.food-section li,
.checklist-section li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 56px;
  align-items: start;
}

.checklist-section ol {
  counter-reset: checks;
  margin-top: 0;
}

.checklist-section li {
  counter-increment: checks;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.checklist-section li::before {
  content: counter(checks);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--cedar);
  color: var(--white);
  font-weight: 800;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --content: min(100% - 48px, 980px);
  }

  .brand {
    grid-template-columns: 31px auto;
    column-gap: 8px;
    min-width: 146px;
  }

  .brand__mark {
    width: 31px;
    height: 34px;
  }

  .brand span {
    font-size: 1.06rem;
    line-height: 0.95;
    display: block;
    transform: scaleX(1.28);
    transform-origin: left center;
  }

  .brand small {
    font-size: 0.47rem;
    line-height: 1;
  }

  .site-nav {
    justify-content: space-between;
    gap: 0;
    min-width: 574px;
    font-size: 0.64rem;
    font-weight: 400;
  }

  .site-nav a {
    min-height: 34px;
  }

  .site-nav a:not(.nav-cta) {
    font-weight: 400;
  }

  .nav-cta {
    min-height: 30px;
    padding-inline: 13px;
    font-size: 0.55rem;
    font-weight: 600;
  }

  .hero h1 {
    display: block;
    margin-bottom: 24px;
    color: rgba(255, 253, 248, 0.96);
    font-size: 4.82rem;
    line-height: 0.82;
    transform: scaleX(1.19);
    transform-origin: left top;
  }

  .hero__subtitle {
    max-width: 20rem;
    display: block;
    margin-bottom: 13px;
    color: #dc914f;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.3;
    transform: scaleX(1.14);
    transform-origin: left top;
  }

  .hero__text {
    max-width: 16.4rem;
    margin-bottom: 22px;
    padding-top: 18px;
    color: rgba(255, 253, 248, 0.86);
    font-size: 0.82rem;
    line-height: 1.43;
    font-weight: 400;
  }

  .hero__actions {
    gap: 8px;
  }

  .hero .button {
    min-height: 31px;
    padding-inline: 20px;
    font-size: 0.55rem;
    font-weight: 600;
  }

  .hero {
    height: min(620px, 58.7vw);
    min-height: 507px;
    padding-inline: 80px 40px;
  }

  .hero__copy {
    margin-top: 62px;
  }

  .proof-strip {
    grid-template-columns: 170px 194px 198px 142px;
    justify-content: center;
    height: 82px;
    min-height: 82px;
    padding: 0;
  }

  .proof-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    padding-right: 26px;
  }

  .proof-item + .proof-item {
    padding-left: 26px;
  }

  .proof-item strong {
    font-size: 0.66rem;
    font-weight: 400;
  }

  .proof-item span:not(.proof-icon) {
    font-size: 0.66rem;
  }

  .proof-icon {
    width: 27px;
    height: 27px;
  }

  .proof-rating {
    padding-left: 25px;
  }

  .proof-rating strong {
    font-size: 1.38rem;
  }

  .rating-stars {
    font-size: 0.72rem;
  }

  .proof-rating small {
    font-size: 0.48rem;
  }

  .guide-hero,
  .rates-section,
  .food-section,
  .checklist-section {
    grid-template-columns: 1fr;
  }

  .house-story {
    grid-template-columns: 170px 560px;
    gap: 14px;
    height: 441px;
    padding: 28px 40px 34px 80px;
  }

  .host-section {
    grid-template-columns: 230px 330px;
    gap: 40px;
    align-items: start;
    height: 360px;
    min-height: 360px;
    padding: 28px 40px 28px 80px;
    background: url("assets/images/uplift/reference-host-paper-bg.jpg") center / 100% 100% no-repeat;
  }

  .host-section::before {
    opacity: 0.035;
  }

  .guide-preview {
    grid-template-columns: 160px 560px;
    gap: 27px;
    height: 268px;
    min-height: 268px;
    padding: 29px 40px 13px 77px;
  }

  .guide-preview__copy {
    width: 178px;
  }

  .section-copy {
    max-width: none;
    padding-top: 0;
  }

  #gallery .section-copy {
    padding-top: 27px;
  }

  .plain-label {
    margin-bottom: 14px;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  #gallery .plain-label {
    margin-bottom: 10px;
  }

  .section-copy h2 {
    font-size: 2.4rem;
    line-height: 1.03;
    margin-bottom: 16px;
  }

  .section-copy p,
  .guide-preview__copy p {
    font-size: 0.82rem;
    line-height: 1.38;
    margin-bottom: 22px;
  }

  .guide-preview__copy p {
    max-width: 178px;
    font-size: 0.64rem;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .text-link {
    font-size: 0.72rem;
  }

  .host-section h2 {
    font-size: 1.98rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .guide-preview h2 {
    font-size: 2.48rem;
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .house-collage,
  .house-gallery,
  .destination-mosaic {
    width: 100%;
  }

  .house-gallery {
    gap: 14px;
  }

  .house-gallery__item {
    flex-basis: min(68vw, 520px);
  }

  .house-gallery__item--stair {
    flex-basis: min(68vw, 520px);
  }

  .host-section__portrait {
    width: 230px;
  }

  .host-section__portrait img {
    aspect-ratio: 4 / 5;
  }

  .host-section__letter {
    max-width: 330px;
    padding: 14px 0 0;
  }

  .host-section__letter .plain-label {
    margin-bottom: 10px;
  }

  .host-section__letter p {
    font-size: 0.78rem;
    line-height: 1.34;
    margin-bottom: 8px;
  }

  .signature {
    margin-top: 10px;
    font-size: 1.28rem;
  }

  .manager-card {
    position: absolute;
    top: 28px;
    right: 40px;
    width: 150px;
    align-self: start;
    min-height: 0;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .manager-card::before {
    content: none;
  }

  .manager-card__portrait {
    display: block;
    margin-bottom: 4px;
  }

  .manager-card p {
    display: none;
  }

  .manager-card h3 {
    font-size: 1rem;
  }

  .guide-preview__copy p {
    margin-bottom: 18px;
  }

  .guide-preview .text-link {
    gap: 8px;
    white-space: nowrap;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .booking-band {
    height: 168px;
    min-height: 168px;
  }

  .booking-band h2 {
    font-size: 1.84rem;
  }

  .booking-band p {
    font-size: 0.69rem;
  }

  .booking-band__art {
    right: 6px;
    top: auto;
    bottom: 0;
    width: 272px;
  }

  .site-footer {
    grid-template-columns: minmax(190px, max-content) minmax(0, 1fr);
    gap: 28px;
    padding: 28px 38px;
    font-size: 0.78rem;
  }

  .footer-brand span {
    font-size: 1.1rem;
  }

  .footer-brand small {
    font-size: 0.55rem;
  }

  .footer-weather__item {
    min-height: 66px;
    padding: 8px 6px;
  }

  .footer-weather__condition {
    display: none;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 20px;
  }

  .brand,
  .footer-brand {
    grid-template-columns: 34px auto;
    column-gap: 8px;
  }

  .brand {
    grid-template-rows: auto;
    min-width: 0;
  }

  .brand .brand__mark {
    grid-row: 1;
    width: 34px;
    height: 38px;
  }

  .brand span {
    align-self: center;
    font-size: 1.08rem;
    line-height: 1;
    transform: none;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 66px 12px auto;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    min-width: 0;
    width: auto;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(2, 45, 37, 0.96);
    box-shadow: var(--shadow-dark);
    color: var(--white);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms var(--ease), transform 160ms var(--ease);
  }

  .guide-page .site-nav,
  .site-header--solid .site-nav {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    height: auto;
    min-height: 0;
    gap: 16px;
    padding: 18px 24px;
  }

  .proof-item,
  .proof-rating {
    min-height: 0;
    padding: 0;
    border-right: 0;
  }

  .proof-item + .proof-item {
    padding-left: 0;
  }

  .proof-rating {
    justify-content: start;
  }

  .hero {
    height: auto;
    min-height: 640px;
    max-height: none;
    padding: 98px 24px 46px;
    align-items: end;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 16, 17, 0.74), rgba(7, 16, 17, 0.24)),
      linear-gradient(0deg, rgba(5, 22, 20, 0.72) 0%, rgba(5, 22, 20, 0.12) 62%, rgba(5, 22, 20, 0.42) 100%);
  }

  .hero__copy {
    margin-top: 0;
  }

  .hero h1 {
    max-width: 8ch;
    margin-bottom: 22px;
    font-size: 4.35rem;
    transform: none;
  }

  .hero__subtitle {
    font-size: 1rem;
    transform: none;
  }

  .hero__text {
    max-width: 21rem;
    margin-bottom: 22px;
    padding-top: 18px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 280px;
  }

  .button {
    width: 100%;
  }

  .house-story,
  .host-section,
  .guide-preview {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .house-story,
  .host-section,
  .guide-preview {
    padding: 58px 24px;
  }

  .host-section {
    gap: 26px;
    padding-top: 54px;
    padding-bottom: 52px;
    background:
      linear-gradient(90deg, rgba(248, 243, 234, 0.94), rgba(244, 237, 226, 0.8) 56%, rgba(250, 246, 238, 0.94)),
      var(--paper);
    isolation: isolate;
  }

  .host-section::before {
    z-index: 0;
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.42), rgba(255, 253, 248, 0.16) 54%, rgba(255, 253, 248, 0.46)),
      image-set(
        url("assets/images/uplift/kashmiri-embroidery-paper-soft-1600.webp") type("image/webp"),
        url("assets/images/uplift/kashmiri-embroidery-paper-soft-1600.jpg") type("image/jpeg")
      ) center top / 760px auto repeat-y;
    opacity: 0.28;
  }

  .house-gallery {
    width: 100%;
    gap: 12px;
    margin-right: 0;
    padding-right: 0;
  }

  .house-gallery__item {
    flex-basis: 100%;
  }

  .house-gallery__item--stair {
    flex-basis: 100%;
  }

  .house-gallery__item figcaption {
    padding-top: 10px;
  }

  .house-gallery__item figcaption strong {
    font-size: 1.18rem;
  }

  .house-gallery__item figcaption span {
    font-size: 0.78rem;
    line-height: 1.36;
  }

  .section-copy h2,
  .host-section h2,
  .guide-preview h2,
  .guide-panel h2,
  .route-board h2,
  .destination-section h2,
  .rates-section h2,
  .food-section h2,
  .checklist-section h2 {
    font-size: 2.68rem;
  }

  .host-section__portrait {
    width: min(88vw, 352px);
    max-width: none;
    justify-self: start;
  }

  .host-section__portrait img {
    aspect-ratio: 4 / 5;
    object-position: center;
  }

  .host-section__letter {
    max-width: none;
    padding: 0;
  }

  .host-section__letter .plain-label {
    margin-bottom: 10px;
  }

  .host-section h2 {
    margin-bottom: 16px;
    font-size: clamp(2.52rem, 11vw, 3rem);
    line-height: 1;
  }

  .host-section__letter p {
    max-width: 31rem;
    margin-bottom: 10px;
    color: rgba(91, 76, 64, 0.94);
    font-size: 0.96rem;
    line-height: 1.46;
  }

  .signature {
    margin-top: 14px;
    font-size: 1.42rem;
  }

  .manager-card {
    position: relative;
    top: auto;
    right: auto;
    width: min(76vw, 300px);
    min-height: 0;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .manager-card::before {
    content: none;
  }

  .manager-card__portrait {
    margin-bottom: 4px;
    width: 100%;
  }

  .manager-card .plain-label {
    margin-bottom: 10px;
  }

  .manager-card h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.05;
  }

  .manager-card p {
    display: block;
    font-size: 0.86rem;
    line-height: 1.36;
  }

  .guide-preview {
    align-items: start;
  }

  .booking-band {
    min-height: 326px;
    padding: 28px 20px 178px;
    scroll-margin-top: 82px;
  }

  .booking-band h2 {
    font-size: 1.72rem;
  }

  .booking-band__art {
    top: auto;
    right: 50%;
    bottom: 8px;
    width: min(72vw, 286px);
    transform: translateX(50%);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    padding: 32px 20px;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-weather {
    justify-self: stretch;
  }

  .footer-weather__head {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .footer-weather__item {
    min-height: 58px;
    padding: 8px 3px;
  }

  .footer-weather__item time {
    font-size: 0.6rem;
  }

  .footer-weather__temp {
    justify-content: center;
    gap: 2px;
    font-size: 0.78rem;
  }

  .footer-weather__temp span {
    font-size: 0.62rem;
  }

  .guide-hero {
    min-height: auto;
    padding: 54px 0 46px;
    gap: 32px;
  }

  .guide-hero h1 {
    font-size: 3.25rem;
  }

  .guide-hero__media img {
    min-height: 260px;
    height: 42dvh;
  }

  .guide-index {
    top: 76px;
    margin: 0 auto 34px;
  }

  .guide-panel,
  .route-board,
  .destination-section,
  .rates-section,
  .food-section,
  .checklist-section {
    padding: 68px 0;
  }

  .day-shapes,
  .rates-grid {
    grid-template-columns: 1fr;
  }

  .route-grid {
    grid-template-columns: repeat(6, 82%);
  }

  .checklist-section li {
    grid-template-columns: 40px 1fr;
  }
}

@media (max-width: 420px) {
  :root {
    --content: min(100% - 34px, 390px);
  }

  .hero {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 3.72rem;
  }

  .hero__actions {
    max-width: none;
  }

  .house-story,
  .host-section,
  .guide-preview {
    padding-left: 17px;
    padding-right: 17px;
  }

  .host-section {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .host-section__portrait {
    width: min(88vw, 338px);
  }

  .manager-card {
    width: min(78vw, 284px);
  }

  .house-gallery {
    width: 100%;
    gap: 10px;
    margin-right: 0;
    padding-right: 0;
  }

  .house-gallery__item {
    flex-basis: 100%;
  }

  .house-gallery__item--stair {
    flex-basis: 100%;
  }

  .booking-band {
    min-height: 326px;
    padding-top: 28px;
    padding-bottom: 176px;
  }

  .booking-band h2 {
    max-width: 16rem;
    margin-inline: auto;
    font-size: 1.52rem;
    line-height: 1.04;
  }

  .booking-band p {
    font-size: 0.74rem;
  }

  .booking-band__art {
    bottom: 8px;
    width: min(76vw, 250px);
  }

  .site-footer {
    padding: 30px 16px;
  }

  .footer-weather__item {
    padding-inline: 2px;
  }

  .footer-weather__temp {
    font-size: 0.72rem;
  }
}

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

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

/* Kashmir Guide page */
.kashmir-guide {
  position: relative;
  padding-top: 78px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.68), rgba(255, 253, 248, 0.08) 45%, rgba(255, 253, 248, 0.58)),
    var(--paper-soft);
}

.kg-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  width: var(--content);
  min-height: calc(100dvh - 78px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) 0 clamp(64px, 8vw, 110px);
  align-items: center;
}

.kg-hero::before {
  content: "";
  position: absolute;
  inset: 42px auto 42px -8vw;
  width: min(360px, 36vw);
  background: url("assets/images/uplift/reference-brand-leaf.png") center / contain no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.kg-hero__content {
  position: relative;
  z-index: 1;
}

.kg-hero h1 {
  max-width: 8ch;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4.35rem, 11vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.kg-hero p {
  max-width: 34rem;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.48;
}

.kg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kg-hero__media {
  position: relative;
  min-height: min(66dvh, 680px);
}

.kg-hero__image {
  margin: 0;
}

.kg-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.kg-hero__image--main {
  width: min(560px, 100%);
  height: min(66dvh, 680px);
  min-height: 500px;
  margin-left: auto;
}

.kg-hero__image--main img {
  object-position: 50% 56%;
}

.kg-hero__image--accent {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: min(205px, 36%);
  height: 260px;
  border: 10px solid var(--paper-soft);
  background: var(--paper-soft);
}

.kg-hero__image--accent img {
  object-position: 52% 64%;
  box-shadow: 0 18px 44px rgba(44, 30, 20, 0.18);
}

.kg-index {
  position: sticky;
  top: 90px;
  z-index: 20;
  display: flex;
  gap: 8px;
  width: var(--content);
  margin: -28px auto 28px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 42px rgba(44, 30, 20, 0.08);
  backdrop-filter: blur(14px) saturate(1.12);
}

.kg-index a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 10px 15px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
}

.kg-index a:hover,
.kg-index a:focus-visible {
  color: var(--cedar);
  background: rgba(12, 59, 50, 0.08);
}

.kg-section {
  width: var(--content);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 124px) 0;
  scroll-margin-top: 170px;
}

.kg-section__intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.kg-section__intro--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kg-section h2 {
  margin: 10px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  scroll-margin-top: 170px;
}

.kg-section__intro p,
.kg-food-copy p {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.kg-card-grid {
  display: grid;
  gap: 16px;
}

.kg-card-grid--things {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.kg-card,
.kg-itinerary article,
.kg-trip-card,
.kg-dish-grid article,
.kg-restaurant-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(44, 30, 20, 0.06);
}

.kg-card {
  grid-column: span 2;
  min-height: 245px;
  padding: 28px;
}

.kg-card--photo,
.kg-card--seasonal {
  grid-column: span 3;
  display: grid;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.kg-card--seasonal {
  grid-column: span 2;
}

.kg-card img,
.kg-trip-card img {
  width: 100%;
  object-fit: cover;
}

.kg-card img {
  aspect-ratio: 4 / 3;
}

.kg-card--seasonal img {
  aspect-ratio: 16 / 10;
}

.kg-card--photo div,
.kg-card--seasonal div {
  padding: 24px 26px 28px;
}

.kg-card--seasonal span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.kg-card h3,
.kg-itinerary h3,
.kg-trip-card h3,
.kg-dish-grid h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.05;
}

.kg-card p,
.kg-card small,
.kg-itinerary p,
.kg-trip-card p,
.kg-trip-card small {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.47;
}

.kg-card small {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.kg-section--itinerary {
  width: 100%;
  padding-right: max(40px, calc((100vw - 1200px) / 2));
  padding-left: max(40px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(rgba(12, 59, 50, 0.89), rgba(12, 59, 50, 0.93)),
    url("assets/images/uplift/kashmiri-woodwork-green-1600.jpg") center / cover;
  color: var(--white);
}

.kg-section--itinerary .plain-label,
.kg-section--itinerary h2 {
  color: var(--white);
}

.kg-itinerary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.kg-itinerary article {
  min-height: 300px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.96);
}

.kg-itinerary span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--copper);
  font-weight: 600;
}

.kg-itinerary h3 {
  color: var(--ink);
  font-size: 2.04rem;
}

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

.kg-trip-card {
  display: grid;
  overflow: hidden;
}

.kg-trip-card img {
  aspect-ratio: 4 / 5;
}

.kg-trip-card div {
  display: grid;
  gap: 13px;
  padding: 25px;
}

.kg-trip-card small {
  display: block;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.kg-section--food {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: center;
}

.kg-food-image {
  margin: 0;
}

.kg-food-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.kg-dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.kg-dish-grid article {
  min-height: 148px;
  padding: 20px;
}

.kg-dish-grid h3 {
  margin-bottom: 8px;
  color: var(--cedar);
  font-size: 1.32rem;
}

.kg-dish-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.kg-section--restaurants {
  position: relative;
  width: 100%;
  padding-right: max(40px, calc((100vw - 1200px) / 2));
  padding-left: max(40px, calc((100vw - 1200px) / 2));
  background:
    linear-gradient(90deg, rgba(248, 242, 232, 0.96), rgba(255, 253, 248, 0.84)),
    var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.kg-section--restaurants::before {
  content: "";
  position: absolute;
  inset: 70px 0 auto auto;
  width: min(420px, 40vw);
  height: min(520px, 62vw);
  background: url("assets/images/uplift/papier-pattern-soft-720.jpg") center / cover;
  opacity: 0.12;
  pointer-events: none;
}

.kg-section--restaurants .kg-section__intro,
.kg-restaurant-groups {
  position: relative;
  z-index: 1;
}

.kg-restaurant-groups {
  display: grid;
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
}

.kg-restaurant-group {
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.kg-restaurant-group h3 {
  position: sticky;
  top: 160px;
  margin: 0;
  color: var(--cedar);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

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

.kg-restaurant-card {
  display: grid;
  gap: 15px;
  min-height: 330px;
  padding: 22px;
}

.kg-card-kicker {
  align-self: start;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kg-restaurant-card h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.04;
}

.kg-restaurant-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.kg-restaurant-card dl div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
}

.kg-restaurant-card dt {
  color: var(--cedar);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.28;
  text-transform: uppercase;
}

.kg-restaurant-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.kg-restaurant-card p {
  align-self: end;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .kg-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kg-hero__media {
    min-height: 0;
  }

  .kg-hero__image--main {
    width: 100%;
    height: 56dvh;
    min-height: 420px;
  }

  .kg-hero__image--accent {
    left: auto;
    right: 18px;
    bottom: -18px;
  }

  .kg-card-grid--things,
  .kg-itinerary,
  .kg-trip-grid,
  .kg-dish-grid,
  .kg-restaurant-grid,
  .kg-section--food {
    grid-template-columns: 1fr 1fr;
  }

  .kg-card,
  .kg-card--photo,
  .kg-card--seasonal {
    grid-column: span 1;
  }

  .kg-section--food {
    align-items: start;
  }

  .kg-restaurant-group {
    grid-template-columns: 1fr;
  }

  .kg-restaurant-group h3 {
    position: static;
  }
}

@media (max-width: 680px) {
  .kashmir-guide {
    padding-top: 70px;
  }

  .kg-hero {
    padding-top: 50px;
    padding-bottom: 64px;
    gap: 34px;
  }

  .kg-hero h1 {
    max-width: 7ch;
    font-size: clamp(4.5rem, 22vw, 6.4rem);
  }

  .kg-hero p {
    font-size: 1.06rem;
  }

  .kg-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .kg-hero__actions .button {
    justify-content: center;
    width: 100%;
  }

  .kg-hero__image--main {
    height: 58dvh;
    min-height: 390px;
  }

  .kg-hero__image--accent {
    display: none;
  }

  .kg-index {
    top: 72px;
    margin: -20px auto 10px;
  }

  .kg-section {
    padding: 70px 0;
  }

  .kg-section--itinerary {
    padding-right: 17px;
    padding-left: 17px;
  }

  .kg-section h2 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .kg-card-grid--things,
  .kg-itinerary,
  .kg-trip-grid,
  .kg-dish-grid,
  .kg-restaurant-grid,
  .kg-section--food {
    grid-template-columns: 1fr;
  }

  .kg-card,
  .kg-itinerary article,
  .kg-dish-grid article,
  .kg-restaurant-card {
    min-height: auto;
  }

  .kg-itinerary span {
    margin-bottom: 30px;
  }

  .kg-trip-card img,
  .kg-food-image img {
    aspect-ratio: 4 / 3;
  }

  .kg-section--restaurants {
    padding-right: 17px;
    padding-left: 17px;
  }

  .kg-restaurant-groups {
    gap: 34px;
  }

  .kg-restaurant-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
