:root {
  --ink: #071c24;
  --ink-soft: #12333d;
  --paper: #f3f0e7;
  --white: #ffffff;
  --ice: #bde8ee;
  --blue: #00a8c6;
  --orange: #ff5a36;
  --green: #b7d53a;
  --line: rgba(7, 28, 36, 0.18);
  --radius: 0.25rem;
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  background: var(--white);
  padding: 0.75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.brand-mark { display: flex; gap: 3px; align-items: flex-end; width: 28px; height: 22px; }
.brand-mark span { width: 7px; background: currentColor; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.brand-mark span:nth-child(1) { height: 14px; }
.brand-mark span:nth-child(2) { height: 22px; }
.brand-mark span:nth-child(3) { height: 17px; }
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.language-switcher { justify-self: end; display: inline-flex; border: 1px solid rgba(255,255,255,.45); }
.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0.55rem 0.62rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}
.lang-btn.is-active { background: var(--white); color: var(--ink); }
.lang-btn:focus-visible, a:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.hero {
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: 1fr auto;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(189,232,238,.22);
  border-radius: 50%;
  left: -17vw;
  top: 21vh;
}
.hero-copy {
  padding: 10.5rem clamp(2rem, 6vw, 7rem) 5rem max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  margin: 0 0 1.35rem;
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 0.94; letter-spacing: -0.045em; }
h1, h2 { font-family: "Arial Narrow", "Helvetica Neue", sans-serif; text-transform: uppercase; font-weight: 900; }
h1 { font-size: clamp(3.7rem, 7.3vw, 8rem); max-width: 9ch; }
h1 em { color: var(--green); font-style: normal; }
.hero-lead { max-width: 36rem; margin: 2.25rem 0 0; font-size: clamp(1.05rem, 1.5vw, 1.32rem); color: rgba(255,255,255,.76); }
.hero-actions { margin-top: 2.2rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button {
  min-height: 3.25rem;
  padding: 0.9rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 0.85rem; font-size: 0.82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.hero-visual { position: relative; overflow: hidden; min-height: 720px; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,36,.48), transparent 35%), linear-gradient(0deg, rgba(7,28,36,.36), transparent 38%); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  z-index: 2;
  top: 28%;
  right: 7%;
  width: 126px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
}
.hero-badge span { font-size: 0.65rem; font-weight: 900; letter-spacing: .13em; }
.hero-badge strong { font-size: 1.15rem; line-height: .95; letter-spacing: -.03em; }
.image-note { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; margin: 0; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; writing-mode: vertical-rl; }
.quick-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
  min-height: 110px;
}
.quick-facts div { padding: 1.2rem 2rem; display: flex; align-items: baseline; gap: .8rem; border-right: 1px solid rgba(255,255,255,.2); }
.quick-facts strong { color: var(--ice); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.quick-facts span { color: rgba(255,255,255,.65); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) 2rem; }
.section-tight { max-width: var(--max); margin: 0 auto; padding: 0 2rem clamp(5rem, 10vw, 9rem); }
.intro { display: grid; grid-template-columns: 80px 1.35fr .65fr; gap: 2rem; align-items: end; }
.section-number { font-size: .78rem; font-weight: 900; color: var(--orange); align-self: start; }
h2 { font-size: clamp(2.6rem, 5.8vw, 6rem); }
.section-copy { margin: 0 0 .3rem; font-size: 1.15rem; max-width: 31rem; }

.experience-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 1rem; }
.experience-card { min-height: 460px; position: relative; overflow: hidden; padding: 1.75rem; }
.experience-card-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.experience-card-photo:hover img { transform: scale(1.025); }
.experience-card-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,28,36,.8), transparent 65%); }
.card-overlay { position: absolute; z-index: 2; inset: auto 1.75rem 1.75rem; color: var(--white); }
.card-index { display: block; font-size: .72rem; font-weight: 900; letter-spacing: .12em; margin-bottom: 1rem; }
.experience-card h3 { font-size: clamp(2rem, 3.4vw, 3.5rem); text-transform: uppercase; font-weight: 900; }
.experience-card p { max-width: 24rem; font-size: 1rem; margin: .8rem 0 0; }
.experience-card-color { display: flex; flex-direction: column; justify-content: space-between; }
.color-hike { background: var(--blue); color: var(--ink); }
.color-calm { background: var(--orange); color: var(--ink); }
.card-arrow { position: absolute; right: 1.5rem; top: 1.2rem; font-size: 2rem; }
.line-art { height: 145px; margin: auto -1.75rem; opacity: .9; }
.mountain-art { background: linear-gradient(150deg, transparent 0 46%, var(--ink) 46% 47%, transparent 47%), linear-gradient(35deg, transparent 0 51%, var(--ink) 51% 52%, transparent 52%); }
.water-art { background: repeating-radial-gradient(ellipse at center, transparent 0 12px, var(--ink) 13px 14px, transparent 15px 26px); transform: scaleY(.35); }

.stays { border-top: 1px solid var(--line); }
.stays-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.stays-heading .eyebrow { margin-bottom: .7rem; }
.stay-list { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); }
.stay-card { padding: clamp(2rem, 5vw, 4rem); background: var(--white); }
.stay-card + .stay-card { border-left: 1px solid var(--ink); }
.stay-card-alt { background: var(--ice); }
.stay-card-top { display: flex; justify-content: space-between; align-items: center; }
.stay-label { width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--white); font-weight: 900; }
.availability { display: flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.availability i { width: .55rem; height: .55rem; border-radius: 50%; background: #21a257; }
.stay-card h3 { font-size: clamp(2.5rem, 5vw, 5.2rem); text-transform: uppercase; margin-top: 3rem; }
.stay-card > p { max-width: 35rem; font-size: 1.05rem; min-height: 4.8rem; }
.stay-card ul { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.stay-card li { padding: 1.2rem .5rem 1.2rem 0; display: flex; flex-direction: column; }
.stay-card li strong { font-size: 1.3rem; }
.stay-card li span { font-size: .68rem; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; opacity: .65; }
.button-dark { background: var(--ink); color: var(--white); }

.location { background: var(--ink); color: var(--white); min-height: 560px; position: relative; overflow: hidden; display: grid; place-items: center; }
.location > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; image-rendering: auto; opacity: .38; transform: scale(1.04); filter: saturate(.8) contrast(1.05); }
.location::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,36,.95), rgba(7,28,36,.35)); }
.location-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 4rem)); }
.location-content h2 { max-width: 13ch; }
.location-content > p:not(.eyebrow) { max-width: 39rem; font-size: 1.05rem; color: rgba(255,255,255,.8); }
.light-link { margin-top: 1.25rem; }

.closing { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.closing .eyebrow { color: var(--orange); }
.button-large { min-width: 220px; min-height: 4rem; }
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 2.2rem max(2rem, calc((100vw - var(--max)) / 2 + 2rem)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; font-size: .72rem; }
.footer-brand { color: var(--white); }
.site-footer p { margin: 0; }
.footer-note { justify-self: end; text-align: right; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 670px; padding-right: 2rem; }
  .hero-visual { min-height: 68vh; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .intro { grid-template-columns: 50px 1fr; }
  .intro .section-copy { grid-column: 2; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card-photo { grid-column: 1 / -1; }
  .stay-list { grid-template-columns: 1fr; }
  .stay-card + .stay-card { border-left: 0; border-top: 1px solid var(--ink); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p:nth-child(2) { justify-self: end; }
  .footer-note { grid-column: 1 / -1; justify-self: start; text-align: left; }
}

@media (max-width: 640px) {
  .site-header { padding: 1.1rem; gap: .75rem; }
  .brand { font-size: .72rem; letter-spacing: .1em; }
  .brand-mark { width: 23px; }
  .lang-btn { padding: .5rem; }
  .hero-copy { min-height: 620px; padding: 8rem 1.15rem 3.2rem; }
  h1 { font-size: clamp(3.3rem, 18vw, 5rem); }
  .hero-visual { min-height: 520px; }
  .hero-badge { width: 92px; top: 12%; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-facts div { padding: 1rem; flex-direction: column; gap: .25rem; }
  .section { padding: 4.5rem 1.15rem; }
  .section-tight { padding: 0 1.15rem 4.5rem; }
  .intro { grid-template-columns: 1fr; gap: 1.25rem; }
  .intro .section-copy { grid-column: 1; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card-photo { grid-column: auto; }
  .experience-card { min-height: 390px; }
  .stay-card { padding: 2rem 1.25rem; }
  .stay-card > p { min-height: 0; }
  .stay-card ul { grid-template-columns: 1fr; }
  .stay-card li + li { border-top: 1px solid var(--line); }
  .location-content { width: calc(100% - 2.3rem); }
  .location { min-height: 620px; }
  .closing { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; padding: 2rem 1.15rem; }
  .site-footer > p:nth-child(2), .footer-note { justify-self: start; text-align: left; }
}

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