:root {
  --forest-950: #08281e;
  --forest-900: #10382a;
  --forest-800: #174b37;
  --stone-50: #f7f4ed;
  --stone-100: #eee9df;
  --stone-300: #cfc6b7;
  --ink: #162019;
  --muted: #646a64;
  --copper: #be7040;
  --white: #fff;
  --display: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --container: min(1320px, calc(100vw - 72px));
  --shadow: 0 24px 80px rgba(13, 37, 28, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--stone-50);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-950);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  padding: 0 3.6vw;
  color: var(--forest-950);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  height: 74px;
  color: var(--white);
  background: rgba(8, 40, 30, .96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  white-space: nowrap;
}
.brand__mark {
  width: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 27px;
}
.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--forest-800);
  color: var(--white);
  background: var(--forest-800);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--forest-900);
  border-color: var(--forest-900);
}
.button--small {
  min-height: 46px;
  padding: 0 20px;
}
.button--ghost {
  border-color: rgba(255, 255, 255, .74);
  background: transparent;
}
.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}
.button--dark { background: var(--forest-950); }
.button--copper {
  border-color: var(--copper);
  background: var(--copper);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 83svh;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--forest-950);
}
.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}
.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-in 1.6s cubic-bezier(.2,.7,.2,1) both;
}
.hero__shade {
  top: 0;
  background:
    linear-gradient(180deg, transparent 0 68%, rgba(5, 35, 26, .13) 100%),
    linear-gradient(90deg, rgba(4, 34, 25, .9) 0%, rgba(4, 34, 25, .72) 31%, rgba(4, 34, 25, .12) 50%, transparent 62%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent 64px, #000 170px, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0, transparent 64px, #000 170px, #000 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 84px auto 0;
  animation: content-in 1s .2s ease both;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 5.8vw, 86px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.03em;
}
.hero__content > p {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.hero__proof {
  display: flex;
  gap: 0;
  margin-top: 38px;
  font-size: 14px;
}
.hero__proof span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-left: 1px solid rgba(255, 255, 255, .35);
}
.hero__proof span:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero__proof strong {
  margin-right: -3px;
  color: #e5a172;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}
.hero__proof svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__line {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: -2px;
  left: 0;
  width: 72%;
  height: 132px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  -webkit-mask-image: linear-gradient(to right, #000 0 78%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0 78%, transparent 100%);
}
.hero__line path {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: line-draw 2.3s .8s ease forwards;
}
.section {
  width: var(--container);
  margin: 0 auto;
  padding: 112px 0;
}
.section-index {
  margin: 0 0 20px;
  color: var(--copper);
  font-size: 13px;
  letter-spacing: .16em;
}
h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 4.5vw, 70px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.025em;
}
.lead {
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.5;
}
.intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 7vw;
  padding-top: 76px;
}
.intro__copy > p:last-child {
  max-width: 560px;
  color: var(--muted);
}
.intro__gallery {
  position: relative;
  min-height: 600px;
}
.photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.photo:hover img { transform: scale(1.035); }
.photo--main {
  inset: 0 17% 14% 0;
}
.photo--accent {
  right: 0;
  bottom: 0;
  width: 39%;
  height: 43%;
  border: 6px solid var(--stone-50);
}

.stay {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 7vw;
  align-items: start;
  padding-top: 90px;
  padding-bottom: 120px;
}
.section-mountain {
  width: 168px;
  height: auto;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stay__copy {
  position: sticky;
  top: 120px;
  padding-top: 30px;
}
.stay__copy p { color: var(--muted); }
.stay__copy h2::after {
  display: block;
  width: 122px;
  height: 9px;
  margin: 24px 0 22px;
  content: "◇";
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 0;
  text-align: center;
}
.stay__collage {
  position: relative;
  min-height: 790px;
}
.stay__collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.stay__room {
  top: 0;
  right: 0;
  width: 78%;
  height: 60%;
}
.stay__view {
  bottom: 0;
  left: 0;
  width: 64%;
  height: 47%;
}
.stay__detail {
  right: 3%;
  bottom: 5%;
  width: 35%;
  height: 34%;
  border: 6px solid var(--stone-50);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--white);
  background: var(--forest-900);
  padding: 44px max(3.6vw, calc((100vw - 1320px) / 2));
}
.amenity {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid rgba(190, 112, 64, .6);
  text-align: center;
  font-family: var(--display);
  font-size: 18px;
}
.amenity:first-of-type { border-left: 0; }
.amenity svg {
  width: 38px;
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-heading > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
}
.section-heading h2::after {
  display: block;
  width: 92px;
  height: 8px;
  margin: 24px auto 0;
  content: "◇";
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 0;
}
.rooms__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.room img {
  height: 350px;
  object-fit: cover;
  filter: saturate(.88);
  transition: transform .55s ease, filter .55s ease;
}
.room:hover img {
  transform: translateY(-8px);
  filter: saturate(1);
}
.room div { padding: 22px 6px; }
.room p {
  margin: 0 0 8px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.room h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
}
.room span { color: var(--muted); font-size: 14px; }
.rooms__cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.rooms {
  position: relative;
  overflow: hidden;
  padding-bottom: 190px;
}
.rooms__mountains {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 155px;
  fill: none;
  stroke: rgba(169, 137, 104, .22);
  stroke-width: 1.2;
  pointer-events: none;
}
.rooms__mountains path {
  vector-effect: non-scaling-stroke;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  border-top: 1px solid var(--stone-300);
}
.reviews__summary h2 { max-width: 560px; }
.reviews__summary > p {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 42px;
  font-family: var(--display);
  font-size: 24px;
}
.reviews__summary > p::after {
  display: block;
  width: 128px;
  height: 1px;
  margin-left: 18px;
  content: "";
  background: var(--copper);
}
.reviews__summary strong {
  color: var(--copper);
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
}
.reviews__summary span { color: var(--muted); font-size: 16px; }
.reviews__quotes {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
blockquote {
  position: relative;
  margin: 0;
  padding: 30px 0 30px 70px;
  border-bottom: 1px solid var(--stone-300);
}
blockquote::before {
  position: absolute;
  top: 30px;
  left: 0;
  content: "“";
  color: var(--copper);
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
}
blockquote p {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 25px;
  font-style: italic;
  line-height: 1.35;
}
blockquote cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.location {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 660px;
  background: #dde1d3;
}
.location__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(4vw, calc((100vw - 1320px) / 2));
  padding-right: 6vw;
}
.location__details .section-mountain {
  width: 168px;
  margin-bottom: 18px;
}
.location__details ul {
  margin: 40px 0;
  padding: 0;
  list-style: none;
}
.location__details li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(22, 32, 25, .2);
}
.location__details li span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 32px;
}
.location__details li p { margin: 0; }
.text-link {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.location__map {
  position: relative;
  overflow: hidden;
  background: #e2e7d8;
}
.map__wash {
  position: absolute;
  border-radius: 45% 55% 52% 48% / 54% 42% 58% 46%;
  background: rgba(190, 204, 178, .48);
  filter: blur(1px);
}
.wash--one {
  top: -16%;
  left: -13%;
  width: 60%;
  height: 82%;
  transform: rotate(-8deg);
}
.wash--two {
  right: -18%;
  bottom: -22%;
  width: 72%;
  height: 78%;
  background: rgba(198, 211, 187, .52);
  transform: rotate(12deg);
}
.wash--three {
  top: 18%;
  left: 36%;
  width: 36%;
  height: 55%;
  background: rgba(232, 235, 221, .75);
  transform: rotate(20deg);
}
.map__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map__contour {
  fill: none;
  stroke: rgba(72, 111, 77, .2);
  stroke-width: 1.1;
}
.map__road,
.map__river {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.map__road {
  stroke: rgba(255,255,255,.92);
  stroke-width: 9;
}
.map__road--minor { stroke-width: 5; }
.map__river {
  stroke: #a5ced2;
  stroke-width: 5;
}
.map__pin {
  position: absolute;
  top: 48%;
  left: 58%;
  display: flex;
  align-items: center;
  gap: 14px;
}
.map__pin span {
  position: relative;
  width: 36px;
  height: 36px;
  border: 11px solid var(--forest-900);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 8px 22px rgba(16,56,42,.25);
}
.map__pin p {
  margin: 0;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.1;
}
.map__tree {
  position: absolute;
  width: 27px;
  height: auto;
  fill: rgba(55, 93, 61, .48);
}
.tree--1 { top: 20%; left: 20%; }
.tree--2 { top: 70%; left: 28%; }
.tree--3 { top: 22%; right: 13%; }
.tree--4 { right: 28%; bottom: 10%; }

.final-cta {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}
.final-cta::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 92px;
  content: "";
  background: var(--forest-950);
  clip-path: polygon(0 72%, 7% 38%, 12% 61%, 18% 25%, 25% 70%, 34% 31%, 43% 68%, 51% 20%, 58% 63%, 67% 35%, 74% 68%, 83% 24%, 91% 60%, 100% 29%, 100% 100%, 0 100%);
}
.final-cta > img,
.final-cta__shade {
  position: absolute;
  inset: 0;
  height: 100%;
}
.final-cta > img { object-fit: cover; }
.final-cta__shade { background: rgba(4, 34, 25, .57); }
.final-cta__content { position: relative; }
.final-cta h2 { font-size: clamp(60px, 7vw, 104px); }
.final-cta p { margin: 20px 0 32px; font-size: 20px; }
.final-cta .button {
  min-height: 68px;
  padding: 0 42px;
  font-size: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr 1fr;
  gap: 80px;
  padding: 76px max(3.6vw, calc((100vw - 1320px) / 2)) 30px;
  color: var(--white);
  background: var(--forest-950);
}
.footer__brand .brand__mark { width: 100px; color: var(--copper); }
.footer__brand p {
  margin: 15px 0;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.05;
}
.footer__brand span,
.footer__info span { color: rgba(255,255,255,.65); }
.footer__stars {
  margin: -3px 0 14px;
  color: var(--copper);
  font-size: 13px;
  letter-spacing: .28em;
}
.footer__nav,
.footer__info { display: flex; flex-direction: column; }
.footer__nav p,
.footer__info p {
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.footer__nav a,
.footer__info span { margin: 4px 0; font-size: 14px; }
.footer__nav a:hover { color: #e5a172; }
.footer__source {
  grid-column: 1 / -1;
  margin: 50px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.5);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes content-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes line-draw { to { stroke-dashoffset: 0; } }
@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto 1fr; gap: 20px; }
  .header-cta { justify-self: end; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    border: 0;
    color: inherit;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 4vw 24px;
    background: var(--forest-950);
    color: var(--white);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .intro { gap: 5vw; }
  .rooms__rail { grid-template-columns: repeat(2, 1fr); gap: 35px; }
  .room img { height: 420px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 36px); }
  .site-header { height: 72px; padding: 0 18px; }
  .brand { font-size: 15px; }
  .brand__mark { width: 42px; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { justify-self: end; }
  .hero { min-height: 760px; height: 100svh; }
  .hero__media img { object-position: 63% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(4,34,25,.88) 0%, rgba(4,34,25,.48) 100%); }
  .hero__content { margin-top: 50px; }
  .hero h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero__content > p { margin-top: 25px; font-size: 17px; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: 340px; }
  .hero__proof {
    flex-wrap: wrap;
    gap: 12px 0;
    margin-top: 30px;
  }
  .hero__proof span {
    width: 50%;
    padding: 0 13px;
    font-size: 12px;
  }
  .hero__proof svg { width: 21px; height: 21px; }
  .hero__proof span:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero__scroll { display: none; }
  .section { padding: 90px 0; }
  h2 { font-size: clamp(42px, 13vw, 58px); }
  .intro,
  .stay,
  .reviews,
  .location { grid-template-columns: 1fr; }
  .intro { gap: 55px; }
  .intro__gallery { min-height: 470px; }
  .stay__copy { position: static; padding-top: 0; }
  .stay__collage { min-height: 610px; }
  .stay__room { width: 92%; height: 53%; }
  .stay__view { width: 76%; height: 43%; }
  .stay__detail { width: 40%; height: 30%; }
  .amenities {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 18px;
  }
  .amenity { border: 0; border-bottom: 1px solid rgba(190,112,64,.35); }
  .amenity:last-child { grid-column: 1 / -1; }
  .rooms__rail { display: flex; overflow-x: auto; gap: 18px; scroll-snap-type: x mandatory; padding-bottom: 20px; }
  .room { min-width: 82vw; scroll-snap-align: start; }
  .room img { height: 380px; }
  .reviews { gap: 40px; }
  .reviews > * { min-width: 0; }
  .reviews__summary strong { font-size: 62px; }
  .reviews__summary > p { flex-wrap: wrap; }
  .reviews__summary > p::after {
    flex-basis: 100%;
    margin: 12px 0 0;
  }
  blockquote { padding-left: 52px; }
  .location__details { padding: 80px 18px; }
  .location__map { min-height: 480px; }
  .final-cta { min-height: 520px; }
  .final-cta p { font-size: 17px; padding: 0 25px; }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 70px 24px 28px;
  }
  .footer__source { margin-top: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
