@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #172225;
  --muted: #5a6868;
  --paper: #f3f0e8;
  --line: rgba(23, 34, 37, 0.16);
  --sun: #e8a84a;
  --white: #fffdf8;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--paper); }
a { color: inherit; }

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  color: var(--white);
}

.wordmark { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; }
.wordmark span { font-weight: 400; opacity: 0.72; }
.site-navigation { display: flex; gap: 2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.site-navigation a { text-decoration: none; opacity: 0.84; }
.site-navigation a:hover, .site-navigation a:focus-visible { opacity: 1; color: var(--sun); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, 88vh);
  align-items: flex-end;
  overflow: hidden;
  padding: 9rem clamp(1.5rem, 10vw, 10rem) 5rem;
  color: var(--white);
  background: linear-gradient(90deg, rgba(15, 30, 33, 0.7), rgba(15, 30, 33, 0.08) 75%), url('images/mountain-background.jpg') center / cover;
  isolation: isolate;
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(9, 20, 22, 0.48), transparent 58%); }
.hero-content { max-width: 44rem; animation: rise-in 900ms ease-out both; }
.eyebrow { margin: 0 0 1.2rem; color: var(--sun); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: 'Playfair Display', serif; font-weight: 500; letter-spacing: 0; }
h1 { max-width: 11ch; font-size: clamp(3.7rem, 8vw, 7rem); line-height: 0.96; }
.hero-copy { max-width: 31rem; margin: 1.8rem 0 2.3rem; color: rgba(255, 253, 248, 0.84); font-size: 1.05rem; line-height: 1.7; }
.scroll-link { display: inline-flex; align-items: center; gap: 0.8rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255, 253, 248, 0.6); font-size: 0.82rem; font-weight: 700; text-decoration: none; }
.scroll-link span { color: var(--sun); font-size: 1.15rem; transition: transform 180ms ease; }
.scroll-link:hover span { transform: translateY(0.25rem); }
.location-note { position: absolute; right: clamp(1.5rem, 5vw, 5rem); bottom: 2.5rem; margin: 0; color: rgba(255, 253, 248, 0.68); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; writing-mode: vertical-rl; }

.welcome { display: grid; grid-template-columns: minmax(4rem, 1fr) minmax(14rem, 1.5fr) minmax(15rem, 1fr); gap: clamp(1.5rem, 5vw, 5rem); align-items: start; max-width: 1180px; margin: 0 auto; padding: clamp(5rem, 11vw, 10rem) clamp(1.5rem, 5vw, 5rem); }
.section-mark { color: var(--sun); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; }
h2 { max-width: 11ch; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.02; }
.welcome-copy { max-width: 25rem; margin: 2.5rem 0 0; color: var(--muted); line-height: 1.8; }
.site-footer { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem clamp(1.5rem, 5vw, 5rem); border-top: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; }
.site-footer p { margin: 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; }
@keyframes rise-in { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
  .site-header { padding-top: 1.4rem; }
  .menu-toggle { display: grid; gap: 0.28rem; width: 2.5rem; height: 2.5rem; padding: 0.7rem; border: 1px solid rgba(255, 253, 248, 0.45); border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; }
  .site-navigation { position: absolute; top: 4.7rem; right: 1.5rem; display: none; flex-direction: column; gap: 1rem; min-width: 9rem; padding: 1rem; border: 1px solid rgba(255, 253, 248, 0.24); background: rgba(23, 34, 37, 0.92); }
  .site-navigation.is-open { display: flex; }
  .hero { min-height: 720px; padding: 8rem 1.5rem 4rem; background-position: 58% center; }
  h1 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .location-note { display: none; }
  .welcome { grid-template-columns: 2rem 1fr; gap: 1.3rem; padding: 5rem 1.5rem 6rem; }
  .welcome-copy { grid-column: 2; margin-top: 0; }
  .site-footer { flex-direction: column; gap: 0.45rem; }
}
