:root {
  --ink: #262823;
  --muted: #74796f;
  --forest: #53634b;
  --forest-dark: #354335;
  --sage: #e7eadf;
  --cream: #f8f6f1;
  --line: #deddd6;
  --white: #fff;
  --gold: #e6a92a;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 65px rgba(41, 46, 38, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf7;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container-xl { max-width: 1240px; padding-left: 26px; padding-right: 26px; }
.section { padding: 100px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .activity-overlay h3, .booking-cta h2, .modal-card h2 {
  font-family: var(--serif);
  font-weight: 400;
}
h2 { font-size: clamp(2rem, 3.1vw, 3.25rem); line-height: 1.17; margin-bottom: 24px; letter-spacing: -.02em; }
.eyebrow {
  color: #7a806f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255, 255, 255, .75); }
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 13px;
  justify-content: center;
  letter-spacing: .09em;
  min-height: 52px;
  padding: 0 26px;
  text-transform: uppercase;
  transition: .3s ease;
}
.button svg { width: 16px; }
.button-primary { background: var(--forest); color: #fff; }
.button-primary:hover { background: var(--forest-dark); transform: translateY(-2px); }
.button-outline { border-color: #788471; background: transparent; color: #4c5847; }
.button-outline:hover { background: var(--forest); color: #fff; }
.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.text-link svg { width: 17px; transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.section-heading { align-items: flex-end; display: flex; justify-content: space-between; margin-bottom: 32px; }
.section-heading h2 { margin-bottom: 0; }
.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; }

.site-header {
  color: #fff;
  min-height: 710px;
  position: relative;
}
.navbar {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 112px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
}
.nav-links { align-items: center; display: flex; gap: 35px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: 12px; position: relative; }
.nav-links a::after {
  background: #fff;
  bottom: -13px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
  width: 100%;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.brand { align-items: center; display: flex; flex-direction: column; justify-self: center; line-height: 1.1; }
.brand svg { fill: none; height: 34px; margin-bottom: 4px; stroke: white; stroke-linecap: round; stroke-width: 1.7; width: 48px; }
.brand strong { font-family: Georgia, serif; font-size: 13px; font-weight: 400; letter-spacing: .05em; }
.brand small { font-size: 7px; font-weight: 600; letter-spacing: .28em; margin-top: 5px; }
.brand-mobile { display: none; }
.button-header { background: rgba(91,107,78,.88); color: #fff; justify-self: end; min-height: 43px; padding: 0 28px; }
.button-header:hover { background: #748265; }
.nav-toggle { display: none; }
.hero { min-height: 710px; overflow: hidden; position: relative; }
.hero-media {
  background-image: linear-gradient(90deg, rgba(11,20,25,.55) 0%, rgba(14,24,27,.15) 55%, rgba(10,14,14,.15)), linear-gradient(0deg, rgba(8,13,12,.38), transparent 50%), url("assets/hero-chalet.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.005);
}
.hero-content { align-items: center; display: flex; justify-content: space-between; min-height: 710px; padding-top: 120px; position: relative; z-index: 1; }
.hero-copy { max-width: 650px; }
.hero-copy h1 { font-size: clamp(3.4rem, 5.4vw, 6.35rem); line-height: 1.02; margin: 0 0 24px; letter-spacing: -.02em; }
.hero-lead { color: rgba(255,255,255,.83); max-width: 610px; font-size: 15px; margin-bottom: 33px; }
.hero-rating { align-self: flex-end; margin-bottom: 65px; text-align: right; }
.hero-rating strong { font-family: var(--serif); font-size: 18px; }
.hero-rating span { color: #ffd24d; font-size: 12px; letter-spacing: .2em; margin-left: 7px; }
.hero-rating small { color: rgba(255,255,255,.72); display: block; font-size: 11px; margin-top: 4px; }
.hero-scroll {
  align-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  bottom: 28px;
  display: flex;
  height: 40px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 40px;
  z-index: 2;
}
.hero-scroll svg { height: 17px; }

.intro { padding-top: 112px; }
.intro-photo { margin-right: 10px; position: relative; }
.intro-photo::before {
  border: 1px solid #d8d6ce;
  border-radius: 16px;
  content: "";
  inset: -13px 12px 13px -13px;
  position: absolute;
  z-index: -1;
}
.intro-photo img { aspect-ratio: 1.36; border-radius: 15px; object-fit: cover; }
.intro-copy { padding-left: 28px; }
.intro-copy > p:not(.eyebrow) { color: var(--muted); max-width: 600px; }
.mini-features { display: flex; gap: 34px; margin: 38px 0 36px; }
.mini-features > div, .activity-list > div { align-items: center; display: flex; gap: 13px; }
.mini-features svg, .activity-list svg {
  background: var(--sage);
  border-radius: 50%;
  color: #65745b;
  flex: 0 0 auto;
  height: 42px;
  padding: 11px;
  width: 42px;
}
.mini-features span, .activity-list span { display: flex; flex-direction: column; }
.mini-features strong, .activity-list strong { font-size: 11px; }
.mini-features small, .activity-list small { color: #888c84; font-size: 9px; margin-top: 2px; }

.gallery-section { padding-top: 30px; }
.gallery-grid { display: grid; gap: 22px; grid-template-columns: 1.1fr 1.15fr 1.15fr 1.1fr; }
.gallery-item { background: #ddd; border: 0; border-radius: 10px; overflow: hidden; padding: 0; position: relative; }
.gallery-item::after {
  align-items: center;
  background: rgba(32,42,32,.42);
  color: white;
  content: "+";
  display: flex;
  font-size: 25px;
  inset: 0;
  justify-content: center;
  opacity: 0;
  position: absolute;
  transition: opacity .25s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { aspect-ratio: 1.44; object-fit: cover; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .crop-bedroom { object-position: 15% center; }
.gallery-item .crop-mountain { object-position: 24% 50%; }

.amenities { padding-top: 44px; }
.amenities h2 { margin-bottom: 35px; }
.feature-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  text-align: center;
  transition: border .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover { border-color: #a9af9d; box-shadow: 0 12px 35px rgba(42,52,40,.08); transform: translateY(-4px); }
.feature-card svg { color: #68785e; height: 35px; margin-bottom: 14px; stroke-width: 1.4; width: 35px; }
.feature-card strong { font-size: 12px; }
.feature-card span { color: #8b8e87; font-size: 10px; }

.rooms { padding-top: 30px; }
.room-card { background: white; border: 1px solid #dddcd7; border-radius: 9px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.room-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.room-image { overflow: hidden; position: relative; }
.room-image img { aspect-ratio: 1.64; object-fit: cover; transition: transform .55s; }
.room-card:hover img { transform: scale(1.045); }
.room-image .room-two { filter: brightness(.83) saturate(.7); object-position: center 61%; transform: scale(1.08); }
.room-image .room-three { filter: sepia(.22) brightness(.83); object-position: right center; transform: scale(1.1); }
.room-image > span { background: #f2eee4; border-radius: 40px; color: #5f684f; font-size: 9px; left: 14px; padding: 5px 10px; position: absolute; top: 14px; }
.room-body { padding: 17px 16px 18px; }
.room-body h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; margin-bottom: 15px; }
.room-meta { align-items: center; color: #8b8d88; display: flex; font-size: 9px; gap: 16px; }
.room-meta > span { align-items: center; display: flex; gap: 5px; }
.room-meta svg { height: 14px; width: 14px; }
.room-meta strong { color: #46503e; font-size: 13px; margin-left: auto; white-space: nowrap; }
.room-meta small { color: #969890; font-size: 8px; font-weight: 400; }

.activities { padding-top: 55px; }
.activity-list { display: grid; gap: 18px; margin: 30px 0 34px; }
.activity-list small { font-size: 11px; }
.activity-photo { border-radius: 10px; overflow: hidden; position: relative; }
.activity-photo img { aspect-ratio: 1.72; object-fit: cover; }
.activity-overlay {
  background: rgba(58,74,55,.91);
  bottom: 0;
  color: white;
  padding: 44px 40px 35px;
  position: absolute;
  right: 0;
  width: 42%;
}
.activity-overlay h3 { font-size: 25px; line-height: 1.25; margin-bottom: 19px; }
.activity-overlay p { color: rgba(255,255,255,.78); font-size: 12px; margin-bottom: 22px; }
.activity-overlay a { align-items: center; display: flex; font-size: 9px; gap: 10px; letter-spacing: .14em; text-transform: uppercase; }
.activity-overlay svg { height: 14px; }

.testimonials { padding-top: 20px; }
.reviews-heading { text-align: center; }
.reviews-heading .eyebrow { margin-bottom: 10px; }
.reviews-heading h2 { font-size: 2rem; margin-bottom: 34px; }
.reviews-shell { align-items: center; display: grid; gap: 20px; grid-template-columns: 42px 1fr 42px; }
.reviews-viewport { overflow: hidden; }
.reviews-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 165px;
  padding: 20px 22px 17px;
}
.quote { color: #718066; font-family: Georgia, serif; font-size: 28px; line-height: 1; }
.review-card p { color: #696d66; font-size: 11px; line-height: 1.55; min-height: 54px; }
.reviewer { align-items: center; display: flex; gap: 9px; }
.avatar {
  align-items: center;
  background: #65765c;
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 8px;
  height: 31px;
  justify-content: center;
  width: 31px;
}
.a2 { background: #69645d; }.a3 { background: #8c6654; }.a4 { background: #576c71; }
.reviewer strong { font-size: 10px; }
.stars { color: var(--gold); font-size: 9px; letter-spacing: .12em; margin-left: auto; }
.review-arrow {
  align-items: center;
  background: white;
  border: 1px solid #d5d5ce;
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.review-arrow:hover { background: var(--forest); color: white; }
.review-arrow svg { height: 17px; }

.booking-cta {
  background-image: linear-gradient(90deg, rgba(42,39,30,.72), rgba(30,43,37,.35)), url("assets/mountains.jpg");
  background-position: center 54%;
  background-size: cover;
  color: white;
  padding: 48px 0;
}
.booking-cta .container-xl { align-items: center; display: flex; justify-content: space-between; }
.cta-copy h2 { font-size: 2.6rem; margin-bottom: 6px; }
.cta-copy p { color: rgba(255,255,255,.73); font-size: 12px; margin-bottom: 18px; }
.cta-copy .button { min-height: 46px; }
.cta-benefits {
  background: rgba(42,56,49,.85);
  border-radius: 9px;
  display: grid;
  font-size: 11px;
  gap: 15px;
  min-width: 335px;
  padding: 25px 28px;
}
.cta-benefits div { align-items: center; display: flex; gap: 12px; }
.cta-benefits svg { border: 1px solid rgba(255,255,255,.4); border-radius: 50%; height: 24px; padding: 5px; width: 24px; }

.footer { background: #f8f7f3; padding: 58px 0 20px; }
.footer-brand { align-items: center; display: flex; gap: 13px; margin-bottom: 18px; }
.footer-trees { color: #52604c; font-size: 35px; }
.footer-brand span:last-child { display: flex; flex-direction: column; }
.footer-brand strong { font-family: Georgia, serif; font-size: 13px; line-height: 1.3; letter-spacing: .07em; }
.footer-brand small { font-size: 7px; letter-spacing: .18em; margin-top: 4px; }
.footer p { color: #83867f; font-size: 10px; max-width: 230px; }
.footer h3 { font-size: 9px; letter-spacing: .18em; margin: 5px 0 17px; text-transform: uppercase; }
.footer .col-lg-2 > a, .footer .col-lg-3 > a { align-items: center; color: #6f736b; display: flex; font-size: 10px; gap: 7px; margin-bottom: 8px; }
.footer a:hover { color: var(--forest); }
.footer a svg { height: 13px; width: 13px; }
.socials { display: flex; gap: 9px; }
.socials a { align-items: center; background: var(--forest); border-radius: 50%; color: white; display: flex; height: 25px; justify-content: center; width: 25px; }
.socials svg { height: 12px; width: 12px; }
.newsletter-form { display: flex; max-width: 310px; }
.newsletter-form input {
  background: white;
  border: 1px solid #dcddd6;
  border-right: 0;
  min-width: 0;
  outline: 0;
  padding: 0 14px;
  width: 100%;
}
.newsletter-form input:focus { border-color: #88957f; }
.newsletter-form button { background: var(--forest); border: 0; color: white; height: 40px; width: 45px; }
.newsletter-form svg { height: 14px; }
.form-message { color: #596a51; font-size: 10px; margin-top: 7px; }
.footer-bottom { border-top: 1px solid #e0e0da; color: #9a9c96; display: flex; font-size: 9px; justify-content: space-between; margin-top: 45px; padding-top: 18px; }
.footer-bottom div { display: flex; gap: 30px; }

.modal { align-items: center; display: none; inset: 0; justify-content: center; padding: 24px; position: fixed; z-index: 50; }
.modal.is-open { display: flex; }
.modal-backdrop { background: rgba(15,21,17,.75); inset: 0; position: absolute; }
.modal-card {
  background: #fbfaf6;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 600px;
  padding: 45px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.modal-card h2 { font-size: 2.55rem; margin-bottom: 10px; }
.modal-card > p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.modal-close {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 36px;
}
.modal-close svg { height: 17px; }
.booking-form { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-top: 27px; }
.booking-form label { color: #555b52; display: flex; flex-direction: column; font-size: 10px; font-weight: 600; gap: 6px; letter-spacing: .05em; text-transform: uppercase; }
.booking-form input, .booking-form select {
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 45px;
  padding: 0 12px;
}
.booking-form .button { grid-column: 1/-1; margin-top: 5px; }
.booking-message { color: #4a6146; font-size: 12px; margin-top: 13px; text-align: center; }
.lightbox { align-items: center; background: rgba(9,13,10,.93); display: none; inset: 0; justify-content: center; padding: 4vw; position: fixed; z-index: 60; }
.lightbox.is-open { display: flex; }
.lightbox img { box-shadow: 0 25px 70px rgba(0,0,0,.45); max-height: 86vh; max-width: 1100px; object-fit: contain; width: auto; }
.lightbox button { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; height: 42px; position: absolute; right: 28px; top: 25px; width: 42px; }

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

@media (max-width: 991.98px) {
  .section { padding: 78px 0; }
  .site-header, .hero, .hero-content { min-height: 670px; }
  .navbar { display: flex; height: 82px; justify-content: space-between; }
  .brand-desktop, .button-header { display: none; }
  .brand-mobile { align-items: flex-start; display: flex; font-family: Georgia, serif; font-size: 12px; gap: 1px; letter-spacing: .06em; }
  .brand-mobile .brand-mark { font-size: 20px; }
  .nav-toggle { background: none; border: 0; display: grid; gap: 6px; padding: 10px 0 10px 10px; z-index: 7; }
  .nav-toggle span { background: white; display: block; height: 1px; transition: .25s; width: 27px; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-links {
    align-items: flex-start;
    background: rgba(27,39,33,.98);
    flex-direction: column;
    gap: 20px;
    inset: 0 0 auto 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    position: fixed;
    transition: max-height .4s, padding .4s;
    width: 100vw;
  }
  .nav-links.open { max-height: 460px; padding-bottom: 32px; padding-top: 88px; }
  .nav-links a { font-size: 14px; }
  .hero-copy { max-width: 610px; }
  .hero-rating { display: none; }
  .intro-copy { padding-left: 0; padding-top: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-features { flex-wrap: wrap; }
  .activity-photo { margin-top: 10px; }
  .activity-overlay { width: 44%; }
  .review-card { flex-basis: calc((100% - 24px) / 2); }
  .booking-cta .container-xl { gap: 34px; }
}

@media (max-width: 767.98px) {
  body { font-size: 14px; }
  .container-xl { padding-left: 20px; padding-right: 20px; }
  .section { padding: 66px 0; }
  .site-header, .hero, .hero-content { min-height: 680px; }
  .hero-media {
    background-image: linear-gradient(0deg, rgba(9,15,13,.7), rgba(12,22,24,.15) 72%), linear-gradient(90deg, rgba(8,16,20,.28), transparent), url("assets/hero-chalet.png");
    background-position: 63% center;
  }
  .hero-content { align-items: flex-end; padding-bottom: 80px; padding-top: 110px; }
  .hero-copy h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-lead { font-size: 13px; }
  .hero-scroll { display: none; }
  .intro { padding-top: 76px; }
  .intro-photo { margin: 0 5px 18px 8px; }
  .mini-features { display: grid; gap: 15px; grid-template-columns: 1fr 1fr; }
  .section-heading { align-items: flex-start; gap: 20px; }
  .gallery-grid { gap: 12px; }
  .gallery-item img { aspect-ratio: 1.15; }
  .feature-grid { --bs-gutter-x: 12px; --bs-gutter-y: 12px; }
  .feature-card { min-height: 145px; padding: 14px; }
  .feature-card strong { line-height: 1.35; }
  .rooms .section-heading .text-link { display: none; }
  .room-meta { flex-wrap: wrap; gap: 7px 13px; }
  .room-meta strong { margin-left: 0; width: 100%; }
  .activity-photo img { aspect-ratio: .96; }
  .activity-overlay { bottom: 0; padding: 26px 24px; width: 76%; }
  .activity-overlay h3 { font-size: 22px; }
  .reviews-shell { gap: 9px; grid-template-columns: 34px 1fr 34px; }
  .review-arrow { height: 32px; width: 32px; }
  .review-card { flex-basis: 100%; }
  .booking-cta { padding: 58px 0; }
  .booking-cta .container-xl { align-items: stretch; flex-direction: column; }
  .cta-benefits { min-width: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-bottom div { gap: 17px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form .button { grid-column: auto; }
  .modal-card { max-height: calc(100vh - 32px); overflow-y: auto; padding: 38px 25px 27px; }
  .modal-card h2 { font-size: 2rem; }
}

@media (max-width: 420px) {
  .hero-copy h1 { font-size: 3rem; }
  .mini-features { grid-template-columns: 1fr; }
  .section-heading .text-link { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { aspect-ratio: 1; }
  .activity-overlay { width: 88%; }
}

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

/* Interior pages */
.subpage { background: #fbfaf7; }
.subpage-header { color: #fff; min-height: 500px; position: relative; }
.subpage-header .navbar { height: 96px; }
.subpage-header .nav-links { gap: 26px; }
.subpage-header .nav-links a { font-size: 11px; }
.subpage-header .button-header.current { background: #fff; color: var(--forest-dark); }
.subhero {
  align-items: center;
  background-image: linear-gradient(90deg, rgba(13,23,23,.68), rgba(14,20,19,.22)), var(--subhero-image);
  background-position: var(--subhero-position);
  background-size: cover;
  display: flex;
  min-height: 500px;
  padding-top: 92px;
}
.subhero-inner { width: 100%; }
.subhero h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6.1rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0 0 20px;
  max-width: 940px;
}
.subhero-inner > p:not(.eyebrow) { color: rgba(255,255,255,.78); font-size: 15px; max-width: 670px; }
.breadcrumbs { align-items: center; color: rgba(255,255,255,.65); display: flex; font-size: 10px; gap: 8px; margin-top: 35px; }
.breadcrumbs a { color: #fff; }
.breadcrumbs svg { height: 12px; width: 12px; }
.detail-intro { padding-bottom: 82px; }
.detail-copy { color: var(--muted); columns: 2; column-gap: 42px; }
.detail-copy p { break-inside: avoid; }
.fact-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  padding: 28px 0;
}
.fact-strip > div { align-items: center; border-right: 1px solid var(--line); display: grid; grid-template-columns: 45px 1fr; padding: 0 28px; }
.fact-strip > div:first-child { padding-left: 0; }
.fact-strip > div:last-child { border-right: 0; }
.fact-strip svg { color: var(--forest); grid-row: 1 / 3; height: 27px; width: 27px; }
.fact-strip strong { font-family: var(--serif); font-size: 19px; font-weight: 400; }
.fact-strip span { color: var(--muted); font-size: 9px; }
.soft-bg { background: #f3f1eb; }
.detail-image { aspect-ratio: 1.48; border-radius: 12px; object-fit: cover; }
.split-feature p:not(.eyebrow), .trip-advice p:not(.eyebrow) { color: var(--muted); }
.check-list { display: grid; gap: 12px; list-style: none; margin: 27px 0 0; padding: 0; }
.check-list li { align-items: center; color: #62675f; display: flex; font-size: 12px; gap: 11px; }
.check-list svg { background: var(--sage); border-radius: 50%; color: var(--forest); height: 23px; padding: 5px; width: 23px; }
.mosaic-gallery { display: grid; gap: 18px; grid-template-columns: 1.7fr 1fr 1fr; }
.mosaic-gallery .gallery-item img { aspect-ratio: 1.25; }
.mosaic-gallery .mosaic-main { grid-row: span 2; }
.mosaic-gallery .mosaic-main img { height: 100%; }
.mosaic-gallery .gallery-item:last-child { grid-column: span 2; }
.mosaic-gallery .gallery-item:last-child img { aspect-ratio: 2.6; }
.narrow { max-width: 880px; }
.accordion { border-top: 1px solid #d5d5ce; }
.accordion-item { border-bottom: 1px solid #d5d5ce; }
.accordion-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: flex;
  font-family: var(--serif);
  font-size: 20px;
  justify-content: space-between;
  padding: 22px 0;
  text-align: left;
  width: 100%;
}
.accordion-item button svg { height: 18px; transition: transform .25s; }
.accordion-item.open button svg { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-content p { color: var(--muted); font-size: 12px; margin: 0; max-width: 700px; padding: 0 0 22px; }
.accordion-item.open .accordion-content { max-height: 140px; }
.center-heading { margin: 0 auto 48px; max-width: 730px; text-align: center; }
.center-heading > p:not(.eyebrow) { color: var(--muted); }
.room-detail-list { display: grid; gap: 42px; }
.room-detail-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; display: grid; grid-template-columns: 1.1fr 1fr; overflow: hidden; }
.room-detail-card.reverse { grid-template-columns: 1fr 1.1fr; }
.room-detail-card.reverse .room-detail-image { order: 2; }
.room-detail-image { min-height: 390px; overflow: hidden; position: relative; }
.room-detail-image img { height: 100%; object-fit: cover; }
.room-detail-image .warm-crop { filter: brightness(.83) saturate(.75); object-position: center 55%; transform: scale(1.07); }
.room-detail-image .sepia-crop { filter: sepia(.2) brightness(.88); object-position: right center; transform: scale(1.1); }
.room-detail-image > span { background: var(--forest); color: white; font-size: 9px; left: 20px; letter-spacing: .07em; padding: 7px 12px; position: absolute; text-transform: uppercase; top: 20px; }
.room-detail-content { align-self: center; padding: 45px; }
.room-detail-content > p:not(.eyebrow) { color: var(--muted); }
.room-detail-content h2 { margin-bottom: 15px; }
.room-specs { display: flex; flex-wrap: wrap; gap: 17px; margin: 25px 0 29px; }
.room-specs span { align-items: center; color: #747970; display: flex; font-size: 10px; gap: 6px; }
.room-specs svg { color: var(--forest); height: 15px; width: 15px; }
.price-row { align-items: center; border-top: 1px solid var(--line); display: flex; justify-content: space-between; padding-top: 25px; }
.price-row > strong { color: var(--forest-dark); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.price-row small { color: var(--muted); font-family: var(--sans); font-size: 9px; }
.price-row .button { min-height: 43px; padding: 0 18px; }
.included-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.included-grid > div { align-items: center; background: #fbfaf7; border: 1px solid #e0ded6; display: flex; flex-direction: column; min-height: 170px; padding: 25px; text-align: center; }
.included-grid svg { color: var(--forest); height: 30px; margin-bottom: 15px; width: 30px; }
.included-grid strong { font-size: 12px; }
.included-grid span { color: var(--muted); font-size: 10px; }
.trip-filters { border: 1px solid var(--line); display: flex; padding: 4px; }
.trip-filters button { background: transparent; border: 0; color: #777c73; font-size: 9px; letter-spacing: .05em; padding: 10px 15px; text-transform: uppercase; }
.trip-filters button.active { background: var(--forest); color: white; }
.trip-grid { display: grid; gap: 25px; grid-template-columns: repeat(3, 1fr); }
.trip-card { background: white; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; transition: opacity .25s, transform .25s; }
.trip-card.hidden { display: none; }
.trip-card > div:last-child { padding: 22px; }
.trip-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 10px; }
.trip-card p:not(.eyebrow) { color: var(--muted); font-size: 11px; min-height: 57px; }
.trip-image { overflow: hidden; position: relative; }
.trip-image img { aspect-ratio: 1.55; object-fit: cover; transition: transform .5s; }
.trip-card:hover .trip-image img { transform: scale(1.05); }
.trip-image > span { background: rgba(48,61,47,.88); bottom: 12px; color: white; font-size: 8px; padding: 6px 9px; position: absolute; right: 12px; }
.trip-meta { border-top: 1px solid var(--line); color: #777c73; display: flex; font-size: 9px; gap: 18px; margin-top: 16px; padding-top: 15px; }
.trip-meta span { align-items: center; display: flex; gap: 5px; }
.trip-meta svg { height: 13px; width: 13px; }
.seasons-section { padding-bottom: 80px; }
.season-tabs { display: flex; justify-content: center; margin-bottom: 36px; }
.season-tabs button { align-items: center; background: transparent; border: 1px solid var(--line); color: #6d7269; display: flex; gap: 9px; min-width: 160px; padding: 13px 22px; }
.season-tabs button + button { border-left: 0; }
.season-tabs button.active { background: var(--forest); border-color: var(--forest); color: white; }
.season-tabs svg { height: 17px; }
.season-panel { display: none; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.season-panel.active { display: grid; }
.season-panel article { background: #fff; border: 1px solid var(--line); min-height: 250px; padding: 30px 25px; }
.season-panel article > svg { color: var(--forest); height: 32px; margin-bottom: 25px; stroke-width: 1.35; width: 32px; }
.season-panel h3 { font-family: var(--serif); font-size: 23px; font-weight: 400; margin-bottom: 11px; }
.season-panel p { color: var(--muted); font-size: 11px; min-height: 73px; }
.season-panel span { color: #829078; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.activity-banner {
  background-image: linear-gradient(90deg, rgba(28,39,32,.82), rgba(30,43,36,.45)), url("assets/hiking.jpg");
  background-position: center 55%;
  background-size: cover;
  color: white;
  padding: 75px 0;
}
.activity-banner .container-xl { align-items: center; display: flex; justify-content: space-between; }
.activity-banner h2 { font-size: 3.1rem; margin-bottom: 7px; }
.activity-banner p:not(.eyebrow) { color: rgba(255,255,255,.74); margin-bottom: 0; }
.button-light { background: white; color: var(--forest-dark); }
.button-light:hover { background: var(--sage); transform: translateY(-2px); }
.story-images { min-height: 560px; position: relative; }
.story-images img:first-child { border-radius: 12px; height: 82%; object-fit: cover; width: 76%; }
.story-images img:last-child { border: 8px solid #fbfaf7; border-radius: 10px; bottom: 0; height: 47%; object-fit: cover; position: absolute; right: 0; width: 52%; }
.story-copy { padding-left: 35px; }
.story-copy > p:not(.eyebrow) { color: var(--muted); }
.story-copy blockquote { border-left: 2px solid var(--forest); color: #4c5549; font-family: var(--serif); font-size: 21px; margin: 30px 0 0; padding-left: 23px; }
.values-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.values-grid article { background: #fbfaf7; border-top: 2px solid var(--forest); min-height: 230px; padding: 28px 25px; }
.values-grid article > span { color: #9da494; font-family: var(--serif); font-size: 17px; }
.values-grid h3 { font-family: var(--serif); font-size: 25px; font-weight: 400; margin: 30px 0 10px; }
.values-grid p { color: var(--muted); font-size: 11px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before { background: var(--line); content: ""; height: 1px; left: 0; position: absolute; right: 0; top: 49px; }
.timeline article { padding-right: 30px; position: relative; }
.timeline article > strong { color: var(--forest); font-family: var(--serif); font-size: 21px; font-weight: 400; }
.timeline article > span { background: #fbfaf7; border: 2px solid var(--forest); border-radius: 50%; display: block; height: 13px; margin: 15px 0 30px; position: relative; width: 13px; z-index: 1; }
.timeline h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; margin-bottom: 8px; }
.timeline p { color: var(--muted); font-size: 10px; }
.contact-lead { color: var(--muted); max-width: 430px; }
.contact-list { display: grid; gap: 21px; margin-top: 35px; }
.contact-list > a, .contact-list > div { align-items: center; display: flex; gap: 16px; }
.contact-list svg { background: var(--sage); border-radius: 50%; color: var(--forest); height: 42px; padding: 12px; width: 42px; }
.contact-list span { display: flex; flex-direction: column; }
.contact-list small { color: #979b93; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.contact-list strong { font-size: 12px; font-weight: 500; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 10px; display: grid; gap: 20px; grid-template-columns: 1fr 1fr; padding: 38px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full, .form-submit.full, .inline-form-message.full { grid-column: 1 / -1; }
.field label { color: #575d54; font-size: 9px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  min-height: 47px;
  outline: 0;
  padding: 10px 13px;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: #839079; box-shadow: 0 0 0 3px rgba(91,108,80,.08); }
.form-submit { align-items: center; display: flex; justify-content: space-between; }
.consent { align-items: center; color: var(--muted); display: flex; font-size: 9px; gap: 8px; }
.inline-form-message { color: #52664b; font-size: 11px; text-align: right; }
.map-section { min-height: 520px; overflow: hidden; position: relative; }
.map-visual { background-color: #e5e3db; background-image: linear-gradient(31deg, transparent 46%, rgba(255,255,255,.75) 47%, rgba(255,255,255,.75) 49%, transparent 50%), linear-gradient(-28deg, transparent 48%, rgba(188,194,179,.8) 49%, rgba(188,194,179,.8) 50%, transparent 51%); background-size: 180px 140px, 230px 170px; inset: 0; position: absolute; }
.map-lines { border: 2px solid rgba(88,107,79,.3); border-radius: 51% 49% 54% 46%; height: 230px; left: 48%; position: absolute; top: 100px; transform: rotate(-18deg); width: 340px; }
.map-label { color: #8b8f87; font-size: 9px; position: absolute; text-transform: uppercase; }
.map-label::before { background: #979c93; border-radius: 50%; content: ""; display: inline-block; height: 5px; margin-right: 6px; width: 5px; }
.map-label.l1 { left: 57%; top: 33%; }.map-label.l2 { left: 72%; top: 54%; }.map-label.l3 { left: 49%; top: 70%; }
.map-pin-main { align-items: center; background: var(--forest); border-radius: 5px; color: white; display: flex; gap: 7px; left: 66%; padding: 8px 12px; position: absolute; top: 37%; }
.map-pin-main svg { height: 15px; width: 15px; }
.map-pin-main strong { font-size: 9px; }
.map-card-wrap { position: relative; }
.map-card { background: #fbfaf7; box-shadow: var(--shadow); left: 26px; padding: 42px; position: absolute; top: 70px; width: 390px; }
.map-card h2 { font-size: 2.6rem; }
.map-card > div { display: grid; gap: 14px; }
.map-card span { align-items: center; display: grid; grid-template-columns: 32px 1fr; }
.map-card span svg { color: var(--forest); grid-row: 1 / 3; height: 19px; width: 19px; }
.map-card strong { font-size: 11px; }
.map-card small { color: var(--muted); font-size: 9px; }
.reservation-section { background: #f3f1eb; }
.reservation-layout { align-items: start; display: grid; gap: 40px; grid-template-columns: 1fr 390px; }
.reservation-form { display: grid; gap: 22px; }
.form-step { background: #fff; border: 1px solid var(--line); padding: 32px; }
.step-head { align-items: flex-start; display: flex; gap: 16px; margin-bottom: 25px; }
.step-head > span { align-items: center; background: var(--forest); border-radius: 50%; color: white; display: flex; flex: 0 0 auto; font-size: 10px; height: 28px; justify-content: center; margin-top: 2px; width: 28px; }
.step-head .eyebrow { margin-bottom: 6px; }
.step-head h2 { font-size: 2rem; margin-bottom: 0; }
.form-grid { display: grid; gap: 17px; grid-template-columns: 1fr 1fr; }
.room-options { display: grid; gap: 10px; }
.room-options label { cursor: pointer; }
.room-options input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.room-choice { align-items: center; border: 1px solid var(--line); display: flex; justify-content: space-between; padding: 15px 17px; transition: .2s; }
.room-options input:checked + .room-choice { background: #f0f3eb; border-color: var(--forest); box-shadow: inset 3px 0 var(--forest); }
.room-choice > span { display: flex; flex-direction: column; }
.room-choice strong { font-size: 12px; }
.room-choice small { color: var(--muted); font-size: 9px; }
.room-choice b { color: var(--forest); font-family: var(--serif); font-size: 19px; font-weight: 400; }
.room-choice b small { font-family: var(--sans); font-size: 8px; }
.extras-grid { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.extras-grid label { cursor: pointer; }
.extras-grid input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.extras-grid label > span { align-items: center; border: 1px solid var(--line); display: grid; grid-template-columns: 35px 1fr; padding: 14px; }
.extras-grid input:checked + span { background: #f0f3eb; border-color: var(--forest); }
.extras-grid svg { color: var(--forest); grid-row: 1 / 3; height: 22px; width: 22px; }
.extras-grid strong { font-size: 11px; }
.extras-grid small { color: var(--muted); font-size: 8px; }
.reservation-submit { width: 100%; }
.reservation-message { text-align: center; }
.reservation-summary { background: #fff; border: 1px solid var(--line); position: sticky; top: 24px; }
.reservation-summary > img { aspect-ratio: 1.8; object-fit: cover; }
.summary-body { padding: 27px; }
.summary-body .eyebrow { margin-bottom: 7px; }
.summary-body h3 { font-family: var(--serif); font-size: 27px; font-weight: 400; margin-bottom: 23px; }
.summary-body dl { display: grid; gap: 12px; margin: 0; }
.summary-body dl > div { display: flex; justify-content: space-between; }
.summary-body dt { color: var(--muted); font-size: 9px; }
.summary-body dd { font-size: 10px; font-weight: 600; margin: 0; text-align: right; }
.summary-price { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; margin: 24px 0; padding: 20px 0; }
.summary-price span { font-size: 11px; }
.summary-price strong { color: var(--forest); font-family: var(--serif); font-size: 26px; font-weight: 400; }
.summary-price small { color: var(--muted); font-size: 8px; margin-top: 8px; width: 100%; }
.summary-benefit { align-items: center; display: flex; gap: 11px; }
.summary-benefit > svg { background: var(--sage); border-radius: 50%; color: var(--forest); height: 34px; padding: 8px; width: 34px; }
.summary-benefit span { display: flex; flex-direction: column; }
.summary-benefit strong { font-size: 10px; }
.summary-benefit small { color: var(--muted); font-size: 8px; }
.sub-cta { background: var(--forest-dark); color: white; padding: 48px 0; }
.sub-cta .container-xl { align-items: center; display: flex; justify-content: space-between; }
.sub-cta .eyebrow { margin-bottom: 7px; }
.sub-cta h2 { font-size: 2.5rem; margin-bottom: 0; }

@media (max-width: 991.98px) {
  .subpage-header, .subhero { min-height: 450px; }
  .subpage-header .navbar { height: 82px; }
  .subhero { padding-top: 80px; }
  .detail-copy { columns: 1; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); row-gap: 25px; }
  .fact-strip > div:nth-child(2) { border-right: 0; }
  .fact-strip > div:nth-child(3) { padding-left: 0; }
  .mosaic-gallery { grid-template-columns: 1.3fr 1fr; }
  .mosaic-gallery .gallery-item:last-child { grid-column: auto; }
  .mosaic-gallery .gallery-item:last-child img { aspect-ratio: 1.25; }
  .room-detail-card, .room-detail-card.reverse { grid-template-columns: 1fr; }
  .room-detail-card.reverse .room-detail-image { order: 0; }
  .room-detail-image { min-height: 340px; }
  .included-grid, .season-panel, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
  .story-copy { padding-left: 0; }
  .timeline { gap: 30px; grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .timeline article { border-left: 1px solid var(--line); padding-left: 20px; }
  .timeline article > span { display: none; }
  .reservation-layout { grid-template-columns: 1fr 320px; }
}

@media (max-width: 767.98px) {
  .subpage-header, .subhero { min-height: 430px; }
  .subhero { background-image: linear-gradient(0deg, rgba(13,23,23,.75), rgba(14,20,19,.12)), var(--subhero-image); align-items: flex-end; padding-bottom: 45px; }
  .subhero h1 { font-size: clamp(2.9rem, 13vw, 4.2rem); }
  .subhero-inner > p:not(.eyebrow) { font-size: 12px; }
  .breadcrumbs { margin-top: 22px; }
  .fact-strip { gap: 0; grid-template-columns: 1fr 1fr; }
  .fact-strip > div { padding: 12px; }
  .fact-strip > div:nth-child(3) { padding-left: 12px; }
  .fact-strip strong { font-size: 16px; }
  .mosaic-gallery { gap: 10px; grid-template-columns: 1fr 1fr; }
  .mosaic-gallery .mosaic-main { grid-column: span 2; grid-row: auto; }
  .mosaic-gallery .mosaic-main img { aspect-ratio: 1.5; }
  .mosaic-gallery .gallery-item:last-child { grid-column: span 2; }
  .mosaic-gallery .gallery-item:last-child img { aspect-ratio: 1.7; }
  .room-detail-content { padding: 28px 23px; }
  .room-detail-image { min-height: 270px; }
  .price-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .included-grid { gap: 12px; grid-template-columns: 1fr 1fr; }
  .included-grid > div { min-height: 150px; padding: 20px 12px; }
  .trips-heading { flex-direction: column; }
  .trip-filters { overflow-x: auto; width: 100%; }
  .trip-filters button { flex: 0 0 auto; padding: 9px 11px; }
  .trip-grid { grid-template-columns: 1fr; }
  .trip-card p:not(.eyebrow) { min-height: 0; }
  .season-tabs button { justify-content: center; min-width: 0; width: 50%; }
  .season-panel, .values-grid { grid-template-columns: 1fr; }
  .season-panel article { min-height: 215px; }
  .season-panel p { min-height: 0; }
  .activity-banner .container-xl, .sub-cta .container-xl { align-items: flex-start; flex-direction: column; gap: 25px; }
  .activity-banner h2 { font-size: 2.5rem; }
  .story-images { min-height: 420px; }
  .timeline { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 25px 20px; }
  .field.full, .form-submit.full, .inline-form-message.full { grid-column: auto; }
  .form-submit { align-items: flex-start; flex-direction: column; gap: 18px; }
  .map-section { min-height: 680px; }
  .map-card { left: 20px; right: 20px; top: 40px; width: auto; }
  .map-pin-main { left: 47%; top: 67%; }
  .map-label.l1 { left: 35%; top: 64%; }.map-label.l2 { left: 67%; top: 80%; }.map-label.l3 { left: 22%; top: 88%; }
  .reservation-layout { grid-template-columns: 1fr; }
  .reservation-summary { grid-row: 1; position: static; }
  .reservation-summary > img { display: none; }
  .form-step { padding: 25px 20px; }
  .form-grid, .extras-grid { grid-template-columns: 1fr; }
  .room-choice { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (max-width: 420px) {
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip > div { border-bottom: 1px solid var(--line); border-right: 0; padding: 14px 0 !important; }
  .fact-strip > div:last-child { border-bottom: 0; }
  .included-grid { grid-template-columns: 1fr; }
  .story-images { min-height: 340px; }
  .map-card { padding: 30px 24px; }
}
