:root {
  --ink: #173545;
  --muted: #61747d;
  --line: #d7e0e2;
  --wash: #f2f6f6;
  --paper: #ffffff;
  --sky: #e2f0f3;
  --pine: #526d59;
  --sand: #f3f0e9;
  --accent: #b95738;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
a {
  color: inherit;
}
.skip-link {
  background: var(--ink);
  color: #fff;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 30;
}
.skip-link:focus {
  top: 1rem;
}
.site-shell {
  overflow: hidden;
}

.site-header {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: auto;
  max-width: 1440px;
  padding: 15px 5vw;
  position: relative;
  z-index: 10;
}
.brand {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-mark {
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  font-family: var(--serif);
  font-size: 0.95rem;
  height: 34px;
  letter-spacing: 0;
  place-items: center;
  width: 34px;
}
.site-nav {
  display: flex;
  gap: 25px;
}
.site-nav a {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:hover {
  color: var(--accent);
}
.menu-button {
  display: none;
}

.hero {
  background: var(--wash);
  display: grid;
  gap: clamp(34px, 6vw, 95px);
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 0.8fr);
  margin: auto;
  max-width: 1440px;
  padding: 66px 9vw 62px;
}
.hero-copy {
  align-self: center;
  max-width: 585px;
}
.eyebrow {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.hero h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.hero h1 {
  font-size: clamp(3rem, 4.4vw, 4.8rem);
  line-height: 1;
  margin: 0;
}
.hero-intro {
  color: #53656d;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 19px 0 24px;
  max-width: 480px;
}
.hero-image {
  align-self: stretch;
  margin: 0;
  min-height: 365px;
  position: relative;
}
.hero-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.hero-image figcaption {
  background: rgba(255, 255, 255, 0.93);
  bottom: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}
.hero-coordinate {
  display: none;
}
.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}
.button {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 700;
  gap: 18px;
  letter-spacing: 0.045em;
  padding: 12px 15px;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover {
  background: var(--accent);
}
.text-link {
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}
.text-link:hover {
  color: var(--accent);
}

.guide-search {
  margin-top: 23px;
  max-width: 540px;
  position: relative;
}
.guide-search > label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.search-control {
  align-items: center;
  background: var(--paper);
  border: 1px solid #aebdc1;
  display: flex;
  min-height: 48px;
  padding: 0 12px;
}
.search-control > span {
  color: var(--pine);
  font-size: 1.45rem;
  line-height: 1;
  margin-right: 9px;
  transform: rotate(-20deg);
}
.search-control input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font: 500 0.88rem var(--sans);
  min-width: 0;
  outline: 0;
  padding: 10px 0;
  width: 100%;
}
.search-control input::placeholder {
  color: #7d8b90;
}
.search-control:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23, 53, 69, 0.1);
}
.search-clear {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font: 600 0.62rem var(--mono);
  letter-spacing: 0.04em;
  padding: 7px;
  text-transform: uppercase;
}
.search-help {
  color: var(--muted);
  font-size: 0.68rem;
  margin: 7px 0 0;
}
kbd {
  background: #dce6e7;
  border: 1px solid #bfccce;
  font: 0.58rem var(--mono);
  padding: 1px 3px;
}
.search-results {
  background: var(--paper);
  border: 1px solid #aebdc1;
  box-shadow: 0 10px 24px rgba(23, 53, 69, 0.13);
  left: 0;
  margin-top: 3px;
  max-width: 540px;
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 15;
}
.search-results[hidden] {
  display: none;
}
.search-result {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2px 12px;
  grid-template-columns: 72px 1fr 14px;
  padding: 12px 14px;
  text-decoration: none;
}
.search-result:last-child {
  border-bottom: 0;
}
.search-result:hover {
  background: var(--wash);
}
.search-result > span {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.6rem;
  grid-row: 1 / span 2;
  letter-spacing: 0.04em;
  padding-top: 2px;
  text-transform: uppercase;
}
.search-result strong {
  font-family: var(--sans);
  font-size: 0.78rem;
}
.search-result small {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.35;
}
.search-result b {
  font-weight: 400;
  grid-column: 3;
  grid-row: 1 / span 2;
  padding-top: 8px;
}
.search-empty {
  color: var(--muted);
  font-size: 0.76rem;
  margin: 0;
  padding: 16px;
}

.quick-links {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  max-width: 1440px;
}
.quick-links a {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 78px;
  text-decoration: none;
  text-transform: uppercase;
}
.quick-links a:last-child {
  border-right: 0;
}
.quick-links a:hover {
  background: var(--wash);
}
.quick-links a > :last-child {
  color: var(--accent);
  margin-left: auto;
}
.quick-icon {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.section,
.house-section,
.explore-section,
.closing {
  margin: auto;
  max-width: 1440px;
  padding: 86px 9vw;
}
.section-heading {
  max-width: 540px;
}
.section h2,
.house-section h2,
.explore-section h2,
.closing h2 {
  font-size: clamp(2.5rem, 3.5vw, 3.8rem);
  line-height: 1;
  margin: 0;
}
.section-heading > p:last-child {
  color: #53656d;
  font-size: 0.93rem;
  margin: 17px 0 0;
}

.arrival,
.sleep,
.faq-section {
  background: var(--paper);
}
.route-card {
  background: var(--sky);
  border-left: 4px solid var(--pine);
  margin: 48px 0 30px;
  padding: 26px 32px;
}
.route-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-line {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: space-between;
  margin: 6px 12% 4px;
  position: relative;
}
.route-line:before {
  background: #83a3a8;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
}
.route-line span,
.route-line i,
.route-line b {
  background: var(--sky);
  border: 1px solid #74969c;
  border-radius: 50%;
  height: 9px;
  position: relative;
  width: 9px;
}
.route-line b {
  background: var(--accent);
  border: 2px solid var(--sky);
  height: 14px;
  width: 14px;
}
.route-stops {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
}
.route-stops span,
.route-stops small {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.route-stops strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.15;
}
.route-card > p {
  font-size: 0.82rem;
  margin: 19px 0 0;
  max-width: 590px;
}
.airport-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.airport-card {
  border: 1px solid var(--line);
  padding: 18px;
}
.airport-card.featured {
  border-top: 3px solid var(--accent);
}
.airport-code {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  margin: 0;
}
.airport-card h3 {
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0;
  margin: 16px 0 4px;
}
.airport-card p:not(.airport-code) {
  color: var(--muted);
  font-size: 0.75rem;
  margin: 0 0 14px;
}
.airport-card a {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}
.transport-layout {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.65fr 1.35fr;
  margin-top: 68px;
  padding-top: 33px;
}
.transport-layout h3 {
  font-family: var(--sans);
  font-size: 1.25rem;
  letter-spacing: 0;
  margin: 0;
}
.transport-list > a,
.transport-list > div,
.ticket-list a {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: 12px;
  grid-template-columns: 35px 1fr 1.2fr 15px;
  padding: 15px 0;
  text-decoration: none;
}
.transport-list > a:hover strong,
.ticket-list a:hover strong {
  color: var(--accent);
}
.transport-list span,
.ticket-list span {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.65rem;
  padding-top: 2px;
}
.transport-list strong,
.ticket-list strong {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0;
}
.transport-list em,
.ticket-list em {
  color: var(--muted);
  font-size: 0.75rem;
  font-style: normal;
}
.transport-list b,
.ticket-list b {
  font-weight: 400;
}

.groceries-section {
  background: var(--wash);
}
.grocery-columns {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}
.grocery-group {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 18px;
}
.grocery-group h3 {
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  margin: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.grocery-group a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 3px;
  grid-template-columns: 1fr 14px;
  padding: 12px 0;
  text-decoration: none;
}
.grocery-group a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.grocery-group a:hover strong {
  color: var(--accent);
}
.grocery-group strong {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0;
}
.grocery-group span {
  color: var(--muted);
  font-size: 0.67rem;
  grid-column: 1;
}
.grocery-group b {
  font-weight: 400;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.packing {
  background: var(--sand);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.8fr 1.2fr;
  position: relative;
}
.packing-art {
  display: none;
}
.packing-list {
  border-top: 1px solid #c8c6be;
  columns: 2;
  list-style: none;
  margin: 0;
  padding: 0;
}
.packing-list li {
  border-bottom: 1px solid #d5d3cc;
  break-inside: avoid;
  font-size: 0.86rem;
  padding: 12px 0;
}
.packing-list span {
  color: var(--pine);
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.62rem;
  margin-right: 12px;
}

.house-stock-section {
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.8fr 1.2fr;
}
.house-stock-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.house-stock-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 220px;
  padding: 21px;
}
.house-stock-grid article:first-child {
  border-left: 1px solid var(--line);
}
.stock-label {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}
.house-stock-grid h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  margin: 24px 0 12px;
}
.house-stock-grid ul {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.8;
  list-style: none;
  margin: 0;
  padding: 0;
}
.house-stock-grid li::before {
  color: var(--pine);
  content: "•";
  margin-right: 8px;
}

.tickets-section {
  background: var(--sky);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.85fr 1.15fr;
}
.tickets-section .eyebrow {
  color: #477482;
}
.ticket-list {
  border-top: 1px solid #aabfc3;
}
.ticket-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  grid-column: 2;
  letter-spacing: 0.03em;
  margin: -5px 0 0;
  text-transform: uppercase;
}

.rental-section {
  background: var(--paper);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.85fr 1.15fr;
}
.rental-list {
  border-top: 1px solid var(--line);
}
.rental-list a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px 12px;
  grid-template-columns: 1fr 15px;
  padding: 16px 0;
  text-decoration: none;
}
.rental-list a:hover strong {
  color: var(--accent);
}
.rental-list strong {
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0;
}
.rental-list span {
  color: var(--muted);
  font-size: 0.72rem;
  grid-column: 1;
}
.rental-list b {
  font-weight: 400;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.house-section {
  background: var(--wash);
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.85fr 1.15fr;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.house-image {
  min-height: 470px;
}
.house-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.house-copy {
  align-self: center;
  padding: 64px 9vw 64px 0;
}
.house-copy > p:not(.eyebrow) {
  color: #53656d;
  font-size: 0.93rem;
  margin: 18px 0 28px;
}
.house-facts {
  border-top: 1px solid #bdc9ca;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
  padding-top: 14px;
}
.house-facts strong {
  display: block;
  font-family: var(--sans);
  font-size: 1.3rem;
  letter-spacing: 0;
}
.house-facts span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.house-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}
.house-amenities span {
  background: var(--paper);
  border: 1px solid #bdc9ca;
  font-family: var(--mono);
  font-size: 0.6rem;
  padding: 7px 9px;
  text-transform: uppercase;
}

.wide-heading {
  max-width: none;
}
.sleep-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 38px;
}
.sleep-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 165px;
  padding: 18px;
}
.sleep-grid article:first-child {
  border-left: 1px solid var(--line);
}
.sleep-grid span {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.sleep-grid h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  margin: 25px 0 8px;
}
.sleep-grid p,
.sleep-note {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0;
}
.sleep-note {
  margin-top: 16px;
  max-width: 600px;
}

.explore-section {
  background: var(--paper);
  color: var(--ink);
}
.explore-top {
  align-items: end;
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
.explore-top > p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  max-width: 340px;
}
.activity-seasons {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}
.activity-season {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 235px;
  padding: 22px;
}
.activity-season:first-child {
  border-left: 1px solid var(--line);
}
.activity-season h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  margin: 0 0 18px;
}
.activity-season ul {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.9;
  list-style: none;
  margin: 0;
  padding: 0;
}
.activity-season li::before {
  color: var(--pine);
  content: "•";
  margin-right: 8px;
}
.activity-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}
.activity-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 170px;
  padding: 19px;
}
.activity-grid article:nth-child(1),
.activity-grid article:nth-child(4) {
  border-left: 1px solid var(--line);
}
.activity-grid article:not(.activity-large) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.activity-grid article > span {
  color: var(--pine);
  font-family: var(--mono);
  font-size: 0.61rem;
}
.activity-grid h3 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  margin: 7px 0;
}
.activity-grid p {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 0;
  max-width: 220px;
}
.activity-grid .activity-large {
  grid-row: span 2;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.activity-large img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.activity-large:after {
  background: linear-gradient(transparent 30%, rgba(23, 53, 69, 0.83));
  content: "";
  inset: 0;
  position: absolute;
}
.activity-large div {
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px;
  position: absolute;
  z-index: 1;
}
.activity-large span {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}
.activity-large h3 {
  color: #fff;
  font-family: var(--sans);
}
.activity-large p {
  color: #e2eeee;
}

.ski-info-section {
  background: var(--sky);
}
.ski-reference-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}
.ski-reference-grid article {
  background: var(--paper);
  border: 1px solid #b9ced1;
  display: flex;
  flex-direction: column;
  min-height: 185px;
  padding: 18px;
}
.ski-reference-grid strong {
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0;
  line-height: 1.45;
}
.ski-reference-grid strong a {
  text-decoration: none;
}
.ski-reference-grid p:not(.stock-label) {
  color: var(--muted);
  font-size: 0.72rem;
  margin: 11px 0;
}
.ski-reference-grid > article > a {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  margin-top: auto;
  text-transform: uppercase;
}
.return-route {
  border-top: 1px solid #9ebabc;
  display: grid;
  gap: 6vw;
  grid-template-columns: 0.75fr 1.25fr;
  margin-top: 55px;
  padding-top: 28px;
}
.return-route h3 {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  margin: 8px 0;
}
.return-route p:not(.stock-label) {
  color: var(--muted);
  font-size: 0.76rem;
  margin: 0;
}
.route-diagram {
  margin: 0;
}
.route-diagram svg {
  display: block;
  height: auto;
  width: 100%;
}
.route-diagram text {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}
.route-mountain {
  fill: #d5e4e5;
  stroke: #91b2b6;
  stroke-width: 2;
}
.route-start {
  fill: var(--ink);
}
.route-road {
  fill: none;
  stroke: var(--pine);
  stroke-linecap: round;
  stroke-width: 8;
}
.route-wd {
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-width: 8;
}
.route-home {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 4;
}
.route-diagram figcaption {
  color: var(--muted);
  font-size: 0.68rem;
  margin-top: 8px;
}

.food-section {
  background: var(--sand);
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.65fr 1.35fr;
}
.food-heading .eyebrow {
  color: var(--accent);
}
.food-columns {
  display: grid;
  gap: 5vw;
  grid-template-columns: 1.2fr 0.8fr;
}
.place-column h3 {
  border-bottom: 1px solid #bbb9b0;
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  margin: 0;
  padding-bottom: 9px;
  text-transform: uppercase;
}
.place-column > a {
  border-bottom: 1px solid #d1cec5;
  display: grid;
  gap: 3px;
  grid-template-columns: 1fr 15px;
  padding: 12px 0;
  text-decoration: none;
}
.place-column > a:hover strong {
  color: var(--accent);
}
.place-column strong {
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: 0;
}
.place-column span {
  color: var(--muted);
  font-size: 0.68rem;
  grid-column: 1;
}
.place-column b {
  font-weight: 400;
  grid-column: 2;
  grid-row: 1 / span 2;
}
.drinks {
  margin-top: 45px;
}
.reservation-note {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
  margin: 16px 0;
}

.faq-section {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.8fr 1.2fr;
}
.faq-section .eyebrow {
  color: #477482;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.87rem;
  font-weight: 700;
  list-style: none;
  padding-right: 25px;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--pine);
  font-size: 1rem;
  font-weight: 400;
  position: absolute;
  right: 0;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 10px 25px 1px 0;
}

.closing {
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: auto;
  padding-bottom: 55px;
  padding-top: 55px;
}
.closing .eyebrow {
  color: #bdd6d9;
}
.closing h2 {
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
  max-width: 670px;
}
.closing .button {
  background: #fff;
  color: var(--ink);
  margin-top: 23px;
}
.closing .button:hover {
  background: var(--sky);
}
.closing-graphic {
  display: none;
}
.site-footer {
  background: #102a36;
  color: #b8c7ca;
  display: flex;
  font-family: var(--mono);
  font-size: 0.6rem;
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding: 21px 5vw;
  text-transform: uppercase;
}
.site-footer a {
  text-decoration: none;
}

/* Present the guide in the order guests make decisions: plan, settle in, then explore. */
main {
  display: flex;
  flex-direction: column;
}
.hero {
  order: 1;
}
.quick-links {
  order: 2;
}
.arrival {
  order: 3;
}
.tickets-section {
  order: 4;
}
.rental-section {
  order: 5;
}
.house-section {
  order: 6;
}
.sleep {
  order: 7;
}
.house-stock-section {
  order: 8;
}
.packing {
  order: 9;
}
.groceries-section {
  order: 10;
}
.road-conditions-section {
  order: 11;
}
.explore-section {
  order: 12;
}
.ski-info-section {
  order: 13;
}
.food-section {
  order: 14;
}
.faq-section {
  order: 15;
}
.closing {
  order: 16;
}

@media (max-width: 900px) {
  .hero,
  .packing,
  .house-stock-section,
  .rental-section,
  .tickets-section,
  .ski-info-section,
  .food-section,
  .faq-section {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 7vw;
  }
  .hero-image {
    min-height: 360px;
  }
  .transport-layout {
    gap: 46px;
    grid-template-columns: 1fr;
  }
  .grocery-columns {
    grid-template-columns: 1fr;
  }
  .ticket-note {
    grid-column: auto;
  }
  .house-section {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .house-image {
    min-height: 390px;
  }
  .house-copy {
    padding: 65px 7vw;
  }
  .sleep-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ski-reference-grid {
    grid-template-columns: 1fr;
  }
  .return-route {
    grid-template-columns: 1fr;
  }
  .food-columns {
    gap: 5vw;
  }
  .closing {
    display: block;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 13px 6vw;
  }
  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 15px rgba(23, 53, 69, 0.08);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 8px 6vw;
    position: absolute;
    right: 0;
    top: 61px;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 0;
  }
  .menu-button {
    background: transparent;
    border: 1px solid #9fadb0;
    color: var(--ink);
    display: block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    padding: 7px 9px;
    text-transform: uppercase;
  }
  .hero {
    gap: 35px;
    padding: 43px 6vw 46px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-image {
    min-height: 250px;
  }
  .guide-search {
    max-width: none;
  }
  .search-help {
    line-height: 1.5;
  }
  .search-result {
    grid-template-columns: 58px 1fr 10px;
    padding: 11px;
  }
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-links a {
    border-bottom: 1px solid var(--line);
    justify-content: flex-start;
    min-height: 65px;
    padding: 0 6vw;
  }
  .quick-links a:nth-child(2) {
    border-right: 0;
  }
  .section,
  .house-section,
  .explore-section,
  .closing {
    padding: 66px 6vw;
  }
  .section h2,
  .house-section h2,
  .explore-section h2,
  .closing h2 {
    font-size: 2.65rem;
  }
  .route-card {
    margin-top: 35px;
    padding: 20px;
  }
  .route-line {
    margin-left: 6%;
    margin-right: 6%;
  }
  .airport-grid {
    grid-template-columns: 1fr;
  }
  .transport-list > a,
  .transport-list > div,
  .ticket-list a {
    gap: 8px;
    grid-template-columns: 29px 1fr 12px;
  }
  .transport-list em,
  .ticket-list em {
    grid-column: 2 / span 2;
  }
  .transport-list b,
  .ticket-list b {
    grid-column: 3;
    grid-row: 1;
  }
  .packing-list {
    columns: 1;
  }
  .house-stock-grid {
    grid-template-columns: 1fr;
  }
  .house-stock-grid article + article {
    border-left: 1px solid var(--line);
  }
  .ticket-note {
    font-size: 0.57rem;
    margin-top: -18px;
  }
  .house-section {
    padding: 0;
  }
  .house-copy {
    padding: 56px 6vw;
  }
  .house-facts {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .sleep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sleep-grid article:nth-child(4) {
    border-left: 1px solid var(--line);
  }
  .explore-top {
    display: block;
  }
  .explore-top > p {
    margin-top: 15px;
  }
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .activity-seasons {
    grid-template-columns: 1fr;
  }
  .activity-season + .activity-season {
    border-left: 1px solid var(--line);
  }
  .activity-grid .activity-large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 280px;
  }
  .activity-grid article:nth-child(4) {
    border-left: 0;
  }
  .activity-grid article:nth-child(2),
  .activity-grid article:nth-child(4),
  .activity-grid article:nth-child(6) {
    border-left: 1px solid var(--line);
  }
  .food-columns {
    grid-template-columns: 1fr;
  }
  .drinks {
    margin-top: 14px;
  }
  .faq-section {
    gap: 40px;
  }
  .faq-list summary {
    font-size: 0.82rem;
  }
  .site-footer {
    gap: 16px;
    padding: 20px 6vw;
  }
}

/* Minimal reference-page treatment. */
body {
  color: #243b46;
}
.site-header,
.hero,
.packing,
.tickets-section,
.rental-section,
.house-section,
.groceries-section,
.explore-section,
.ski-info-section,
.food-section,
.faq-section,
.closing {
  background: var(--paper);
}
.site-header {
  padding-bottom: 13px;
  padding-top: 13px;
}
.site-nav a,
.brand {
  color: #243b46;
}
.hero {
  display: block;
  min-height: 0;
  padding-bottom: 34px;
  padding-top: 42px;
}
.hero-copy {
  max-width: 690px;
}
.hero h1,
.section h2,
.house-section h2,
.explore-section h2,
.closing h2 {
  font-family: var(--sans);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.hero-intro {
  font-size: 0.9rem;
  margin-bottom: 18px;
  max-width: 580px;
}
.hero-image,
.house-image,
.closing-graphic {
  display: none;
}
.quick-links {
  border-top: 1px solid var(--line);
}
.quick-links a {
  font-size: 0.64rem;
  min-height: 59px;
}
.quick-icon {
  font-size: 1rem;
}
.section,
.house-section,
.explore-section,
.closing {
  max-width: 1120px;
  padding-bottom: 54px;
  padding-top: 54px;
}
.section-heading > p:last-child {
  font-size: 0.84rem;
}
.route-card,
.grocery-group,
.ski-reference-grid article {
  background: transparent;
  box-shadow: none;
}
.route-card {
  border-left: 0;
  border-top: 1px solid var(--line);
  margin-top: 29px;
  padding: 19px 0;
}
.airport-card,
.grocery-group,
.ski-reference-grid article,
.house-amenities span {
  border-color: var(--line);
}
.packing,
.tickets-section,
.rental-section,
.house-stock-section,
.food-section,
.faq-section {
  display: block;
}
.packing-list,
.ticket-list,
.rental-list,
.house-stock-grid,
.grocery-columns,
.food-columns,
.faq-list {
  margin-top: 30px;
}
.house-section {
  padding-left: 9vw;
  padding-right: 9vw;
}
.house-copy {
  padding: 0;
}
.house-facts {
  max-width: 520px;
}
.house-stock-grid {
  max-width: 680px;
}
.activity-seasons {
  max-width: 680px;
}
.activity-season {
  min-height: 0;
}
.explore-top {
  align-items: start;
  display: block;
}
.explore-top > p {
  font-size: 0.84rem;
  margin-top: 14px;
}
.ski-reference-grid {
  max-width: 820px;
}
.return-route {
  max-width: 820px;
}
.food-columns {
  max-width: 800px;
}
.closing {
  border-top: 1px solid var(--line);
  color: #243b46;
  min-height: 0;
}
.closing .eyebrow {
  color: var(--pine);
}
.closing .button {
  background: var(--ink);
  color: #fff;
}
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .house-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }
}

@media (max-width: 620px) {
  .house-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .section,
  .house-section,
  .explore-section,
  .closing {
    padding-bottom: 44px;
    padding-top: 44px;
  }
  .hero {
    padding-bottom: 32px;
    padding-top: 32px;
  }
  .hero h1,
  .section h2,
  .house-section h2,
  .explore-section h2,
  .closing h2 {
    font-size: 1.65rem;
  }
}

/* Readability and navigation refinements. */
body {
  font-size: 17px;
  line-height: 1.65;
}
.eyebrow {
  font-size: 0.7rem;
}
.section-heading > p:last-child,
.hero-intro {
  font-size: 0.96rem;
  line-height: 1.7;
}
.airport-card p:not(.airport-code),
.route-card > p,
.transport-list em,
.ticket-list em,
.rental-list span,
.grocery-group span,
.place-column span,
.faq-list p,
.activity-season ul,
.ski-reference-grid p:not(.stock-label),
.return-route p:not(.stock-label) {
  font-size: 0.82rem;
}
.site-nav a,
.quick-links a {
  font-size: 0.72rem;
}
.button {
  border: 1px solid var(--ink);
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.78rem;
  gap: 10px;
  letter-spacing: 0;
  padding: 11px 14px;
  text-transform: none;
}
.button span {
  font-size: 1rem;
  line-height: 1;
}
.text-link {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
}
.house-gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 20px;
  max-width: 460px;
}
.house-gallery img {
  display: block;
  height: 118px;
  object-fit: cover;
  width: 100%;
}
.return-route-options {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.return-route-options article {
  border-left: 2px solid var(--pine);
  padding-left: 12px;
}
.return-route-options article + article {
  border-left-color: var(--accent);
}
.return-route-options strong {
  font-family: var(--sans);
  font-size: 0.84rem;
}
.return-route-options p {
  margin-top: 3px !important;
}
.route-diagram {
  background: #f7faf9;
  border: 1px solid var(--line);
  padding: 10px;
}
.route-diagram figcaption {
  font-size: 0.75rem;
  line-height: 1.45;
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .house-gallery img {
    height: 100px;
  }
  .button {
    padding: 10px 12px;
  }
}

/* Field-guide layout pass. */
:root {
  --ink: #25343b;
  --muted: #63747c;
  --line: #dbe2e3;
  --wash: #f8faf9;
  --accent: #8c4b34;
}
body {
  background: #fbfcfc;
}
.site-header,
.hero,
.quick-links,
.section,
.house-section,
.explore-section,
.closing {
  max-width: 1060px;
}
.site-header {
  border-bottom: 0;
  padding: 18px 32px 14px;
}
.brand {
  font-size: 0.74rem;
  letter-spacing: 0.045em;
}
.brand-mark {
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  height: 29px;
  width: 29px;
}
.site-nav {
  gap: 20px;
}
.site-nav a {
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
}
.hero {
  border-bottom: 1px solid var(--line);
  padding: 38px 32px 30px;
}
.hero-copy {
  max-width: 700px;
}
.hero h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
}
.hero-intro {
  color: var(--muted);
  max-width: 650px;
}
.guide-search {
  max-width: 680px;
}
.search-control {
  border-color: #c3d0d2;
  min-height: 44px;
}
.search-help {
  color: var(--muted);
}
.hero-actions {
  gap: 12px;
  margin-top: 19px;
}
.button {
  background: var(--ink);
  border-radius: 2px;
  font-weight: 600;
  min-height: 40px;
  padding: 9px 13px;
}
.button:hover {
  background: #3a4d55;
}
.text-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration-thickness: 1px;
}
.quick-links {
  border-top: 0;
  grid-template-columns: repeat(4, 1fr);
}
.quick-links a {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  min-height: 55px;
  padding: 0 12px;
  text-transform: none;
}
.quick-links a > :last-child {
  color: var(--muted);
}
.quick-icon {
  display: none;
}
.section,
.house-section,
.explore-section,
.closing {
  padding: 50px 32px;
}
.section-heading {
  max-width: 680px;
}
.eyebrow {
  color: #577069;
  font-size: 0.66rem;
  letter-spacing: 0.075em;
  margin-bottom: 9px;
}
.section h2,
.house-section h2,
.explore-section h2,
.closing h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}
.section-heading > p:last-child {
  max-width: 650px;
}
.route-card,
.transport-layout,
.house-facts,
.sleep-grid,
.activity-seasons,
.ticket-list,
.rental-list,
.house-stock-grid,
.grocery-columns,
.food-columns,
.faq-list,
.ski-reference-grid,
.return-route {
  max-width: 820px;
}
.airport-grid {
  max-width: 820px;
}
.airport-card {
  padding: 15px;
}
.airport-card h3,
.transport-layout h3,
.activity-season h3,
.house-stock-grid h3 {
  font-size: 0.9rem;
}
.winter-driving-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-top: 30px;
}
.winter-driving-grid > div {
  padding: 24px 28px 24px 0;
}
.winter-driving-grid > div + div {
  border-left: 1px solid var(--line);
  padding-left: 28px;
  padding-right: 0;
}
.winter-driving-grid h3,
.altitude-note h3 {
  font-family: var(--sans);
  font-size: 1rem;
  margin: 5px 0 10px;
}
.winter-driving-grid p:not(.note-label),
.winter-driving-grid li,
.altitude-note p:not(.note-label) {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}
.winter-driving-grid p:not(.note-label),
.altitude-note p:not(.note-label) {
  margin: 0;
}
.note-label {
  color: #577069;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.075em;
  margin: 0;
  text-transform: uppercase;
}
.winter-driving-grid ul {
  margin: 15px 0 0;
  padding-left: 17px;
}
.winter-driving-grid li + li {
  margin-top: 8px;
}
.winter-driving-grid a,
.altitude-note a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.altitude-note {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 170px minmax(0, 1fr);
  margin-top: 30px;
  max-width: 820px;
  padding-top: 22px;
}
.altitude-note p + p {
  margin-top: 12px !important;
}
.house-gallery {
  max-width: 420px;
}
.house-gallery img {
  border: 1px solid var(--line);
  height: 108px;
}
.ski-reference-grid article {
  min-height: 0;
}
.route-diagram {
  background: transparent;
  border: 0;
  padding: 0;
}
.route-diagram svg {
  border: 1px solid var(--line);
}
.closing {
  border-bottom: 1px solid var(--line);
}
.site-footer {
  max-width: 1060px;
  margin: auto;
  padding-left: 32px;
  padding-right: 32px;
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 20px 11px;
  }
  .site-nav {
    top: 55px;
  }
  .hero,
  .section,
  .house-section,
  .explore-section,
  .closing {
    padding-left: 20px;
    padding-right: 20px;
  }
  .quick-links a {
    min-height: 52px;
    padding: 0 10px;
  }
  .winter-driving-grid,
  .altitude-note {
    grid-template-columns: 1fr;
  }
  .winter-driving-grid > div {
    padding: 22px 0;
  }
  .winter-driving-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .altitude-note {
    gap: 8px;
  }
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
