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

:root {
  --ink: #1d231f;
  --ink-deep: #121512;
  --forest: #1d2b25;
  --forest-soft: #2a3a31;
  --paper: #f7f4ee;
  --sand: #ebe5d9;
  --cream: #f4f0e8;
  --gold: #b69b66;
  --gold-bright: #d4bb82;
  --muted: #687168;
  --line: rgba(29, 35, 31, .16);
  --line-light: rgba(247, 244, 238, .22);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.page-width {
  width: min(calc(100% - 96px), 1400px);
  margin-inline: auto;
}
.section { padding-block: 140px; }
.section--sand { background: var(--sand); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--paper); }
.section--ink { background: var(--ink-deep); color: var(--paper); }

/* Header */
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--paper);
  transition: background .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 244, 238, .95);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(29, 35, 31, .1);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  width: min(calc(100% - 96px), 1400px);
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(182, 155, 102, .55);
  border-radius: inherit;
}
.brand-mark span { position: relative; z-index: 1; transform: translateY(-1px); }
.brand-name { display: flex; flex-direction: column; gap: 0; line-height: 1; }
.brand-name strong { font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: .01em; }
.brand-name small { margin-top: 4px; font-family: var(--mono); font-size: 7px; letter-spacing: .29em; text-transform: uppercase; opacity: .68; }
.primary-nav { display: flex; align-items: center; gap: clamp(24px, 3.3vw, 54px); margin-left: auto; }
.primary-nav a, .header-cta, .footer-links a {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.primary-nav a::after, .footer-links a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); transform-origin: left center; }
.header-cta { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-bright); white-space: nowrap; }
.header-cta span { font-size: 18px; font-weight: 400; line-height: 0; transition: transform .3s var(--ease); }
.header-cta:hover span { transform: translate(3px, -3px); }
.site-header.scrolled .header-cta { color: #8a703c; }
.menu-toggle { display: none; border: 0; background: none; padding: 12px 0 12px 12px; color: currentColor; }
.menu-toggle span { display: block; width: 28px; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s var(--ease); }
.mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--paper);
  background: #24322d;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.04); filter: saturate(.8); }
.hero-shade { background: linear-gradient(90deg, rgba(10, 16, 13, .72) 0%, rgba(10, 16, 13, .3) 49%, rgba(10, 16, 13, .08) 100%), linear-gradient(0deg, rgba(10, 16, 13, .52) 0%, transparent 35%, rgba(10, 16, 13, .22) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 120px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 30px; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .17em; line-height: 1.4; text-transform: uppercase; }
.eyebrow--light { color: rgba(247, 244, 238, .72); }
.eyebrow-rule { display: inline-block; width: 34px; height: 1px; background: currentColor; opacity: .75; }
.hero h1 { max-width: 920px; margin: 0; font-family: var(--serif); font-size: clamp(70px, 10.6vw, 160px); font-weight: 400; letter-spacing: -.065em; line-height: .86; }
.hero h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }
.hero h1 em { color: var(--gold-bright); }
.hero-lede { max-width: 360px; margin: 36px 0 0; color: rgba(247, 244, 238, .85); font-family: var(--serif); font-size: clamp(19px, 2vw, 27px); line-height: 1.2; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 40px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease); }
.button span { font-size: 18px; font-weight: 400; line-height: 0; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(3px, -3px); }
.button--light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button--light:hover { background: transparent; color: var(--paper); }
.button--gold { background: var(--gold); border-color: var(--gold); color: var(--ink-deep); }
.button--gold:hover { background: transparent; color: var(--gold-bright); border-color: var(--gold-bright); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.text-link--light { color: var(--paper); }
.link-arrow { display: inline-block; font-size: 17px; font-weight: 400; line-height: 10px; transition: transform .3s var(--ease); }
.text-link:hover .link-arrow { transform: translate(4px, -4px); }
.hero-footer { position: absolute; z-index: 1; right: 0; bottom: 35px; left: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; color: rgba(247, 244, 238, .7); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.hero-location { display: flex; align-items: center; gap: 8px; }
.hero-location strong { color: var(--paper); font-weight: 400; }
.pulse-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 5px rgba(212, 187, 130, .13); }
.hero-coordinate { justify-self: center; }
.scroll-cue { display: flex; align-items: center; justify-self: end; gap: 14px; }
.scroll-line { position: relative; display: inline-block; width: 48px; height: 1px; background: rgba(247, 244, 238, .5); }
.scroll-line::after { content: ''; position: absolute; top: -2px; right: 0; width: 5px; height: 5px; border-right: 1px solid var(--paper); border-bottom: 1px solid var(--paper); transform: rotate(-45deg); }

/* Shared heading and reveal */
h2 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 6.6vw, 98px); font-weight: 400; letter-spacing: -.065em; line-height: .91; }
.section-index { grid-area: index; color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.section-index span { opacity: .45; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 68px; }
.section-heading .eyebrow { margin-bottom: 24px; }
.section-heading-note { width: min(100%, 315px); padding-bottom: 5px; }
.section-heading-note p { margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.section--forest .section-heading-note p, .section-heading--light .section-heading-note p { color: rgba(247, 244, 238, .68); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal { opacity: 1; transform: none; }

/* Approach */
.approach { display: grid; grid-template-columns: minmax(70px, 1fr) minmax(0, 2.15fr) minmax(240px, 1fr); grid-template-areas: 'index main aside' '. foot foot'; column-gap: 45px; row-gap: 88px; }
.approach-main { grid-area: main; }
.approach-main h2 { max-width: 820px; }
.approach-main h2 em { color: #9d875a; }
.approach-aside { grid-area: aside; align-self: end; padding-left: 32px; border-left: 1px solid var(--line); }
.approach-aside p { margin: 0 0 27px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.approach-foot { grid-area: foot; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 760px; padding-top: 30px; border-top: 1px solid var(--line); }
.mini-stat { display: flex; align-items: baseline; gap: 14px; }
.mini-stat strong { color: var(--gold); font-family: var(--serif); font-size: 43px; font-weight: 400; letter-spacing: -.06em; }
.mini-stat span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .11em; line-height: 1.5; text-transform: uppercase; }

/* Signature journeys */
.journey-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, .8fr)); grid-template-rows: repeat(2, 315px); gap: 14px; }
.journey-card { position: relative; min-height: 315px; overflow: hidden; color: var(--paper); background: var(--ink); }
.journey-card--feature { grid-row: span 2; min-height: 644px; }
.journey-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter 1s var(--ease); }
.journey-card:hover img { transform: scale(1.055); filter: saturate(1.08); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 15, 12, .35), transparent 35%, rgba(10, 15, 12, .78) 100%); }
.card-meta { position: absolute; z-index: 1; top: 23px; right: 25px; left: 25px; display: flex; justify-content: space-between; color: rgba(247, 244, 238, .72); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.card-copy { position: absolute; z-index: 1; right: 25px; bottom: 24px; left: 25px; }
.card-kicker { margin: 0 0 12px; color: var(--gold-bright); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.card-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 48px); font-weight: 400; letter-spacing: -.055em; line-height: .93; }
.journey-card:not(.journey-card--feature) .card-copy h3 { font-size: clamp(25px, 2.35vw, 38px); }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 24px; padding-top: 12px; border-top: 1px solid rgba(247, 244, 238, .33); color: rgba(247, 244, 238, .72); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.round-arrow { display: grid; place-items: center; width: 34px; height: 34px; flex-shrink: 0; border: 1px solid rgba(247, 244, 238, .55); border-radius: 50%; color: var(--paper); font-family: var(--sans); font-size: 16px; transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.journey-card:hover .round-arrow, .stay-feature:hover .round-arrow { background: var(--paper); color: var(--ink); transform: rotate(45deg); }

/* Private escapes */
.escape-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.escape-card { min-height: 360px; padding: 27px 30px 30px; border-right: 1px solid var(--line-light); display: flex; flex-direction: column; justify-content: space-between; }
.escape-card:first-child { border-left: 1px solid var(--line-light); }
.escape-card-head { display: flex; justify-content: space-between; align-items: flex-start; color: rgba(247, 244, 238, .56); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.escape-icon { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(182, 155, 102, .7); border-radius: 50%; color: var(--gold-bright); font-family: var(--serif); font-size: 24px; line-height: 1; }
.escape-card h3 { margin: 0 0 18px; color: var(--paper); font-family: var(--serif); font-size: clamp(30px, 3vw, 45px); font-weight: 400; letter-spacing: -.06em; line-height: .94; }
.escape-card h3 em { color: var(--gold-bright); }
.escape-card p { max-width: 270px; margin: 0 0 26px; color: rgba(247, 244, 238, .62); font-size: 12px; line-height: 1.75; }
.escape-card .text-link { font-size: 9px; }

/* Stays */
.stays { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(50px, 9vw, 150px); align-items: center; }
.stays h2 { margin-bottom: 30px; }
.stays h2 em { color: #9d875a; }
.stays-intro { max-width: 345px; margin: 0 0 27px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.stay-list { margin-top: 66px; border-top: 1px solid var(--line); }
.stay-row { display: grid; grid-template-columns: 28px 1fr auto 22px; gap: 12px; align-items: center; min-height: 55px; border-bottom: 1px solid var(--line); color: var(--muted); transition: color .3s var(--ease), padding .3s var(--ease); }
.stay-row:hover { padding-inline: 7px; color: var(--ink); }
.stay-no, .stay-place { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.stay-no { color: var(--gold); }
.stay-name { font-family: var(--serif); font-size: 17px; }
.stay-place { justify-self: end; }
.stay-arrow { color: var(--gold); font-size: 17px; }
.stay-feature { position: relative; min-height: 690px; overflow: hidden; color: var(--paper); background: #2a312c; }
.stay-feature img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; transition: transform 1s var(--ease); }
.stay-feature:hover img { transform: scale(1.045); }
.stay-feature-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 25, 22, .46), transparent 36%, rgba(20, 25, 22, .68)); }
.stay-feature-top, .stay-feature-bottom { position: absolute; right: 30px; left: 30px; display: flex; justify-content: space-between; }
.stay-feature-top { top: 28px; color: rgba(247, 244, 238, .72); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.stay-feature-bottom { bottom: 28px; align-items: end; }
.stay-feature-bottom p { margin: 0; font-family: var(--serif); font-size: clamp(30px, 3vw, 48px); letter-spacing: -.06em; line-height: .93; }
.stay-feature-bottom em { color: var(--gold-bright); }

/* Experience band */
.experience-band { position: relative; min-height: min(790px, 80svh); overflow: hidden; color: var(--paper); background: var(--forest); }
.experience-band > img, .experience-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.experience-band > img { object-fit: cover; filter: saturate(.78); transition: transform 1.2s var(--ease); }
.experience-band:hover > img { transform: scale(1.025); }
.experience-shade { background: linear-gradient(90deg, rgba(15, 24, 20, .88), rgba(15, 24, 20, .38) 55%, rgba(15, 24, 20, .12)); }
.experience-content { position: relative; z-index: 1; padding-top: 135px; }
.experience-content h2 { font-size: clamp(70px, 9vw, 140px); }
.experience-content h2 em { color: var(--gold-bright); }
.experience-content > p:not(.eyebrow) { max-width: 310px; margin: 32px 0 26px; color: rgba(247, 244, 238, .77); font-family: var(--serif); font-size: 18px; line-height: 1.35; }
.experience-tags { display: flex; flex-wrap: wrap; gap: 10px; max-width: 420px; margin-bottom: 36px; }
.experience-tags span { padding: 9px 12px; border: 1px solid rgba(247, 244, 238, .34); color: rgba(247, 244, 238, .86); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

/* Planning */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step { position: relative; min-height: 365px; padding: 28px 30px 30px 0; border-right: 1px solid var(--line); }
.step:not(:first-child) { padding-left: 30px; }
.step:last-child { border-right: 0; }
.step-number { color: var(--gold); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.step-icon { position: absolute; top: 25px; right: 30px; width: 47px; height: 47px; color: var(--gold); }
.icon-circle { position: absolute; inset: 2px; border: 1px solid currentColor; border-radius: 50%; }
.icon-line { position: absolute; top: 50%; left: -5px; width: 57px; height: 1px; background: currentColor; transform: rotate(-36deg); transform-origin: center; }
.step-icon--design .icon-square { position: absolute; inset: 5px; border: 1px solid currentColor; transform: rotate(45deg); }
.step-icon--design .icon-line { transform: rotate(45deg); }
.icon-arc { position: absolute; inset: 3px 0 3px 3px; border: 1px solid currentColor; border-right-color: transparent; border-bottom-color: transparent; border-radius: 50%; transform: rotate(25deg); }
.icon-dot { position: absolute; top: 7px; right: 4px; width: 7px; height: 7px; background: currentColor; border-radius: 50%; }
.step h3 { margin: 105px 0 15px; font-family: var(--serif); font-size: 39px; font-weight: 400; letter-spacing: -.06em; }
.step p { max-width: 270px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }
.step-caption { position: absolute; bottom: 30px; color: var(--gold); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }

/* Stories */
.stories-heading { align-items: end; }
.story-controls { display: flex; align-items: center; gap: 20px; padding-bottom: 4px; }
.story-control { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font-size: 18px; transition: background .3s var(--ease), color .3s var(--ease); }
.story-control:hover { background: var(--ink); color: var(--paper); }
.story-count { color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.story-count span { color: var(--ink); }
.story-stage { position: relative; padding: 66px clamp(28px, 8vw, 140px) 54px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-stage.story-changing blockquote, .story-stage.story-changing .story-credit { animation: storyIn .45s var(--ease) both; }
@keyframes storyIn { from { opacity: .18; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.quote-mark { position: absolute; top: 35px; left: 0; color: var(--gold); font-family: var(--serif); font-size: 92px; font-weight: 400; line-height: .7; }
blockquote { max-width: 930px; margin: 0; font-family: var(--serif); font-size: clamp(29px, 4.25vw, 64px); font-weight: 400; letter-spacing: -.06em; line-height: 1.02; }
.story-credit { display: flex; align-items: center; gap: 28px; margin-top: 48px; }
.story-credit strong, .story-credit span { display: block; }
.story-credit strong { margin-bottom: 8px; font-family: var(--serif); font-size: 16px; font-weight: 400; }
.story-credit span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; line-height: 1.5; text-transform: uppercase; }
.story-rule { width: 70px; height: 1px; background: var(--gold); }
.story-tag { margin-left: auto; color: var(--gold) !important; }

/* Journal */
.journal-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 25px; }
.journal-card a { display: block; height: 100%; }
.journal-image { position: relative; aspect-ratio: 1.18 / 1; overflow: hidden; background: #cad0c9; }
.journal-card--large .journal-image { aspect-ratio: 1.25 / 1; }
.journal-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.journal-card:hover .journal-image img { transform: scale(1.055); }
.journal-type { position: absolute; top: 15px; left: 15px; padding: 7px 9px; background: var(--paper); color: var(--ink); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.journal-card-body { padding-top: 20px; }
.journal-date { margin: 0 0 12px; color: var(--gold); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.journal-card h3 { margin: 0 0 21px; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 37px); font-weight: 400; letter-spacing: -.055em; line-height: .97; }
.journal-card h3 em { color: #9d875a; }
.journal-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-family: var(--mono); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.journal-link span { font-family: var(--sans); font-size: 14px; transition: transform .3s var(--ease); }
.journal-card:hover .journal-link span { transform: translate(3px, -3px); }

/* Contact */
.contact { padding-block: 145px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 10vw, 150px); align-items: start; }
.contact-intro .eyebrow { margin-bottom: 35px; }
.contact-intro h2 { max-width: 600px; }
.contact-intro h2 em { color: var(--gold-bright); }
.contact-intro > p:not(.eyebrow) { max-width: 360px; margin: 36px 0 42px; color: rgba(247, 244, 238, .64); font-family: var(--serif); font-size: 18px; line-height: 1.35; }
.contact-details { display: flex; flex-direction: column; gap: 9px; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(247, 244, 238, .62); font-family: var(--mono); font-size: 9px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.contact-details a { color: var(--gold-bright); transition: color .3s var(--ease); }
.contact-details a:hover { color: var(--paper); }
.inquiry-form { padding: 33px 32px 27px; border: 1px solid rgba(247, 244, 238, .2); }
.form-intro { display: flex; justify-content: space-between; margin-bottom: 38px; color: rgba(247, 244, 238, .75); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.form-step { color: var(--gold-bright); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.field { display: flex; flex-direction: column; gap: 11px; margin-bottom: 27px; }
.field > span { color: rgba(247, 244, 238, .64); font-family: var(--mono); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 0 0 13px; border: 0; border-bottom: 1px solid rgba(247, 244, 238, .27); border-radius: 0; outline: none; background: transparent; color: var(--paper); font-family: var(--serif); font-size: 18px; transition: border-color .3s var(--ease); }
.field textarea { resize: vertical; line-height: 1.4; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 244, 238, .34); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 10px) 7px, calc(100% - 5px) 7px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); background: var(--paper); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-bright); }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 11px; }
.form-submit > span { max-width: 220px; color: rgba(247, 244, 238, .43); font-family: var(--mono); font-size: 8px; line-height: 1.5; text-align: right; }
.form-status { min-height: 17px; margin: 17px 0 0; color: var(--gold-bright); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; line-height: 1.5; }

/* Footer */
.site-footer { padding-block: 67px 28px; background: var(--ink); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 76px; }
.brand--footer { align-self: start; }
.footer-note { justify-self: center; }
.footer-note p { margin: 0 0 9px; font-family: var(--serif); font-size: 21px; }
.footer-note span { color: rgba(247, 244, 238, .48); font-family: var(--mono); font-size: 8px; letter-spacing: .11em; text-transform: uppercase; }
.footer-links { justify-self: end; display: grid; grid-template-columns: auto auto; gap: 14px 28px; }
.footer-links a { color: rgba(247, 244, 238, .7); font-size: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 17px; border-top: 1px solid var(--line-light); color: rgba(247, 244, 238, .38); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

/* Toast */
.toast { position: fixed; z-index: 30; right: 28px; bottom: 26px; max-width: 330px; padding: 16px 19px; border: 1px solid var(--gold); background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .05em; line-height: 1.5; opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .page-width, .nav-wrap { width: min(calc(100% - 64px), 1400px); }
  .primary-nav { gap: 25px; }
  .header-cta { font-size: 9px; }
  .approach { grid-template-columns: 65px minmax(0, 1.7fr) minmax(220px, 1fr); gap: 25px; }
  .stays { gap: 55px; }
  .stay-feature, .stay-feature img { min-height: 590px; }
  .stay-feature-bottom p { font-size: 39px; }
}

@media (max-width: 800px) {
  .section { padding-block: 100px; }
  .page-width, .nav-wrap { width: min(calc(100% - 48px), 1400px); }
  .nav-wrap { min-height: 78px; }
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: flex; visibility: hidden; pointer-events: none; position: fixed; inset: 78px 0 0; flex-direction: column; padding: 28px 24px 32px; background: var(--ink); color: var(--paper); opacity: 0; transform: translateY(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s; }
  .mobile-nav a { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(247, 244, 238, .16); font-family: var(--serif); font-size: 28px; letter-spacing: -.04em; }
  .mobile-nav a span { color: var(--gold-bright); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
  .mobile-nav .mobile-nav-cta { margin-top: auto; border: 1px solid var(--gold); padding: 17px 18px; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .nav-open .mobile-nav { visibility: visible; pointer-events: auto; opacity: 1; transform: translateY(0); }
  .nav-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 80px; }
  .hero h1 { font-size: clamp(64px, 14vw, 110px); }
  .hero-footer { grid-template-columns: 1fr auto; bottom: 26px; }
  .hero-coordinate { display: none; }
  .approach { grid-template-columns: 48px minmax(0, 1fr); grid-template-areas: 'index main' '. aside' '. foot'; gap: 44px 20px; }
  .approach-aside { padding-left: 20px; }
  .approach-foot { grid-column: 2; }
  .section-heading { align-items: start; flex-direction: column; gap: 30px; margin-bottom: 47px; }
  .section-heading-note { width: min(100%, 400px); }
  .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 470px 260px 260px; }
  .journey-card--feature { grid-column: span 2; grid-row: auto; min-height: 470px; }
  .escape-card { min-height: 340px; padding-inline: 21px; }
  .stays { grid-template-columns: 1fr; gap: 65px; }
  .stays-copy { max-width: 650px; }
  .stay-feature, .stay-feature img { min-height: 600px; }
  .experience-band { min-height: 680px; }
  .experience-content { padding-top: 105px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step, .step:not(:first-child) { min-height: 260px; padding: 25px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step h3 { margin-top: 64px; }
  .step-caption { bottom: 25px; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 18px; }
  .journal-card--large { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 70px; }
  .contact-intro > p:not(.eyebrow) { max-width: 540px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { justify-self: end; text-align: right; }
  .footer-links { grid-column: span 2; justify-self: start; }
}

@media (max-width: 520px) {
  .page-width, .nav-wrap { width: calc(100% - 36px); }
  .section { padding-block: 78px; }
  .brand-name strong { font-size: 17px; }
  .hero { min-height: 710px; }
  .hero-media img { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10, 16, 13, .67), rgba(10, 16, 13, .16)), linear-gradient(0deg, rgba(10, 16, 13, .67), transparent 50%, rgba(10, 16, 13, .2)); }
  .hero-content { padding-top: 67px; }
  .hero h1 { font-size: clamp(58px, 17vw, 82px); }
  .hero-lede { max-width: 260px; margin-top: 28px; font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; margin-top: 30px; }
  .hero-footer { bottom: 19px; font-size: 8px; }
  .hero-location { max-width: 180px; line-height: 1.5; }
  .scroll-cue span:first-child { display: none; }
  .scroll-line { width: 37px; }
  .eyebrow { margin-bottom: 23px; font-size: 8px; letter-spacing: .14em; }
  h2 { font-size: clamp(47px, 14vw, 70px); }
  .approach { grid-template-columns: 1fr; grid-template-areas: 'main' 'aside' 'foot'; gap: 34px; }
  .section-index { display: none; }
  .approach-aside { padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .approach-foot { grid-column: auto; grid-template-columns: repeat(3, 1fr); padding-top: 22px; }
  .mini-stat { display: block; }
  .mini-stat strong { display: block; font-size: 35px; margin-bottom: 7px; }
  .mini-stat span { font-size: 7px; }
  .journeys .section-heading-note { width: 100%; }
  .journey-grid { display: flex; flex-direction: column; gap: 10px; }
  .journey-card, .journey-card--feature { min-height: 420px; }
  .journey-card:not(.journey-card--feature) { min-height: 300px; }
  .card-meta { top: 17px; right: 17px; left: 17px; }
  .card-copy { right: 17px; bottom: 17px; left: 17px; }
  .card-copy h3, .journey-card:not(.journey-card--feature) .card-copy h3 { font-size: 34px; }
  .escape-grid { grid-template-columns: 1fr; }
  .escape-card, .escape-card:first-child { min-height: 300px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
  .escape-card:last-child { border-bottom: 0; }
  .stays { gap: 45px; }
  .stay-list { margin-top: 47px; }
  .stay-row { grid-template-columns: 23px 1fr 20px; gap: 9px; }
  .stay-place { display: none; }
  .stay-feature, .stay-feature img { min-height: 480px; }
  .stay-feature-top, .stay-feature-bottom { right: 19px; left: 19px; }
  .stay-feature-bottom p { font-size: 35px; }
  .experience-band { min-height: 680px; }
  .experience-content { padding-top: 84px; }
  .experience-content > p:not(.eyebrow) { font-size: 17px; }
  .experience-tags { gap: 7px; }
  .experience-tags span { font-size: 7px; }
  .story-controls { align-self: flex-start; }
  .story-stage { padding: 56px 0 32px; }
  .quote-mark { top: 28px; left: -2px; font-size: 70px; }
  blockquote { font-size: 32px; }
  .story-credit { align-items: flex-start; flex-wrap: wrap; gap: 17px; margin-top: 33px; }
  .story-rule { width: 45px; margin-top: 8px; }
  .story-tag { margin-left: 0; width: 100%; }
  .journal-grid { display: flex; flex-direction: column; gap: 43px; }
  .journal-card--large .journal-image, .journal-image { aspect-ratio: 1.2 / 1; }
  .contact { padding-block: 82px; }
  .inquiry-form { padding: 25px 18px 21px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-intro { margin-bottom: 32px; font-size: 8px; }
  .field input, .field select, .field textarea { font-size: 17px; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .form-submit > span { max-width: 270px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; padding-bottom: 55px; }
  .footer-note { justify-self: start; text-align: left; }
  .footer-links { grid-column: auto; justify-self: start; grid-template-columns: auto auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; font-size: 7px; }
  .toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
}

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