:root {
  --ink: #0c1210;
  --pine-black: #101815;
  --pine: #172720;
  --pine-mid: #284137;
  --moss: #728172;
  --cream: #f1eadf;
  --cream-deep: #ded4c5;
  --paper: #f7f3ec;
  --copper: #cf8454;
  --copper-bright: #e09b69;
  --line-dark: rgba(16, 24, 21, .18);
  --line-light: rgba(241, 234, 223, .2);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(92vw, 1440px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--pine-black); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--pine-black); background: var(--copper-bright); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: var(--pine-black);
  background: var(--cream);
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 88px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, min-height .35s ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(12, 18, 16, .95);
  border-color: rgba(241, 234, 223, .12);
  backdrop-filter: blur(14px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  width: 31px;
  height: 37px;
  border: 1px solid rgba(207, 132, 84, .86);
  display: grid;
  place-items: center;
  color: var(--copper-bright);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-size: .92rem; font-weight: 700; letter-spacing: .24em; }
.brand-subtitle { margin-top: .38rem; color: rgba(241, 234, 223, .62); font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.6rem, 3vw, 3.4rem); }
.desktop-nav a {
  position: relative;
  color: rgba(241, 234, 223, .8);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button {
  appearance: none;
  min-height: 52px;
  padding: .88rem 1.5rem .82rem;
  border: 1px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .menu-toggle:focus-visible, .modal-close:focus-visible { outline: 2px solid var(--copper-bright); outline-offset: 4px; }
.button--header { justify-self: end; min-height: 42px; padding: .75rem 1.25rem; color: var(--cream); background: transparent; border-color: rgba(241, 234, 223, .46); }
.button--header:hover { color: var(--pine-black); background: var(--cream); border-color: var(--cream); }
.button--copper { color: var(--pine-black); background: var(--copper); }
.button--copper:hover { background: var(--copper-bright); }
.button--cream { color: var(--pine-black); background: var(--cream); }
.button--cream:hover { background: #fff; }
.button--wide { width: 100%; }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: clamp(680px, 82svh, 780px);
  color: var(--cream);
  background: var(--pine-black);
  overflow: hidden;
}
.hero-backdrop, .hero-shade { position: absolute; inset: 0; }
.hero-backdrop {
  background-color: var(--pine-black);
  background-image: url("assets/northway-hero.webp");
  background-position: center center;
  background-size: cover;
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.02);
  animation: heroSettle 2s cubic-bezier(.2,.65,.25,1) both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 11, 9, .84) 0%, rgba(7, 11, 9, .61) 34%, rgba(7, 11, 9, .17) 66%, rgba(7, 11, 9, .05) 100%),
    linear-gradient(0deg, rgba(7, 11, 9, .54) 0%, transparent 42%);
}
.hero-road {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -2%;
  width: min(38vw, 580px);
  height: min(76vh, 760px);
  opacity: .26;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-road svg { width: 100%; height: 100%; overflow: visible; }
.hero-road-edge,
.hero-road-center {
  fill: none;
  vector-effect: non-scaling-stroke;
}
.hero-road-edge {
  stroke: rgba(241, 234, 223, .42);
  stroke-width: 1.15;
}
.hero-road-center {
  stroke: rgba(224, 155, 105, .82);
  stroke-width: 1.5;
  stroke-dasharray: 13 18;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(92vw, 1440px);
  margin: 0 auto;
  padding-top: clamp(8.25rem, 17vh, 10.5rem);
}
.eyebrow {
  margin: 0 0 1.7rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--pine-mid);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow > span { display: inline-block; width: 34px; height: 1px; background: currentColor; }
.eyebrow--copper { color: #a75e36; }
.eyebrow--light { color: var(--cream); }
.hero-eyebrow { color: var(--copper-bright); }
.hero h1, .story h2, .section-heading h2, .season h2, .gather h2, .visit h2, .modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .84;
}
.hero h1 { max-width: 850px; font-size: clamp(5rem, 9.7vw, 10rem); }
.hero h1 em, h2 em { color: var(--copper-bright); font-weight: 400; }
.hero-copy { max-width: 480px; margin: 2rem 0 0; color: rgba(241, 234, 223, .76); font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.45; }
.hero-actions { margin-top: 2.25rem; display: flex; align-items: center; gap: 2.2rem; }
.text-link {
  position: relative;
  padding: .35rem 0;
  border: 0;
  color: var(--pine-black);
  background: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .25s ease;
}
.text-link:hover::after { transform: scaleX(.5); }
.text-link span { display: inline-block; margin-left: .45rem; transition: transform .25s ease; }
.text-link:hover span { transform: translate(.18rem, .12rem); }
.text-link--light { color: var(--cream); }
.text-link--button { appearance: none; }
.route-sign {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 12vh;
  width: 72px;
  height: 88px;
  border: 1px solid rgba(241, 234, 223, .4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: rgba(12, 18, 16, .32);
  backdrop-filter: blur(8px);
}
.route-sign span { font-size: .56rem; font-weight: 700; letter-spacing: .14em; }
.route-sign i { width: 1px; height: 20px; margin: .35rem 0; background: var(--copper); }
.route-sign small { font-family: var(--serif); font-size: 1.35rem; }
.hero-note {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -62px;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(241, 234, 223, .5);
  font-size: .58rem;
  letter-spacing: .18em;
  transform: rotate(90deg);
}
.hero-note-line { width: 52px; height: 1px; background: rgba(241, 234, 223, .28); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 4vw;
  height: 120px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(241, 234, 223, .62);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i { display: block; width: 1px; height: 50px; background: var(--copper); animation: scrollPulse 1.8s ease-in-out infinite; }

.service-strip {
  min-height: 96px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr 1fr;
  color: var(--cream);
  background: var(--pine);
}
.service-strip p, .service-strip button {
  margin: 0;
  padding: 1.5rem clamp(1rem, 2vw, 2.25rem);
  border: 0;
  border-left: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: rgba(241, 234, 223, .55);
  background: transparent;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.5;
  text-transform: uppercase;
}
.service-strip p span { color: var(--copper); }
.service-strip p strong { margin-top: .35rem; color: var(--cream); font-size: .76rem; letter-spacing: .11em; }
.service-strip button { border-right: 1px solid var(--line-light); align-items: center; color: var(--cream); cursor: pointer; transition: background .25s ease; }
.service-strip button span { margin-top: .5rem; color: var(--copper); font-size: 1.25rem; transition: transform .25s ease; }
.service-strip button:hover { background: rgba(255,255,255,.045); }
.service-strip button:hover span { transform: translateX(.4rem); }

.section-pad { padding: clamp(3rem, 4vw, 4.5rem) max(4vw, calc((100vw - 1440px) / 2)); }
.story {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr);
  gap: clamp(2.5rem, 4.5vw, 4.5rem);
  align-items: center;
  background: var(--paper);
  overflow: hidden;
}
.story h2, .section-heading h2, .season h2, .gather h2, .visit h2 { font-size: clamp(3.75rem, 6.2vw, 6.4rem); }
.story .lede { margin: 1.75rem 0 1rem; color: var(--pine); font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.35; }
.story-copy > p:not(.eyebrow):not(.lede) { max-width: 580px; color: #4f544f; }
.story-visual { position: relative; width: 100%; max-width: 560px; margin: 0; padding-right: clamp(.75rem, 1.5vw, 1.5rem); justify-self: end; }
.image-frame { position: relative; overflow: hidden; background: var(--pine-mid); }
.image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none; }
.image-frame--portrait { height: clamp(27rem, 29vw, 33rem); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.25,1); }
.image-frame:hover img { transform: scale(1.025); }
.story-visual figcaption { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 2rem; color: #72756f; font-size: .63rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.topo-lines {
  position: absolute;
  z-index: -1;
  right: -7rem;
  bottom: -5rem;
  width: 320px;
  height: 250px;
  opacity: .35;
  background: repeating-radial-gradient(ellipse at center, transparent 0 13px, rgba(40,65,55,.26) 14px 15px, transparent 16px 28px);
  transform: rotate(-18deg);
}

.menu { border-top: 1px solid var(--line-dark); background: var(--cream); }
.section-heading { margin-bottom: clamp(2rem, 3vw, 3rem); display: grid; grid-template-columns: 1.05fr .65fr; gap: 8vw; align-items: end; }
.section-heading > p { max-width: 510px; margin: 0 0 .7rem; color: #5c615b; }
.menu-layout { display: grid; grid-template-columns: .54fr 1.18fr .72fr; gap: clamp(2.2rem, 5vw, 5.5rem); align-items: start; }
.menu-tabs { border-top: 1px solid var(--line-dark); }
.menu-tab {
  appearance: none;
  width: 100%;
  min-height: 64px;
  padding: .8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  color: #777b75;
  background: transparent;
  font-family: var(--serif);
  font-size: 1.16rem;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, padding-left .25s ease;
}
.menu-tab span { color: var(--copper); font-family: var(--sans); font-size: .58rem; font-weight: 700; letter-spacing: .13em; }
.menu-tab:hover, .menu-tab.is-active { padding-left: .55rem; color: var(--pine-black); }
.menu-tab.is-active { font-style: italic; }
.menu-panels { min-height: 350px; border-top: 1px solid var(--line-dark); }
.menu-panel { animation: panelIn .4s ease both; }
.menu-item { padding: 1rem 0 .9rem; border-bottom: 1px solid var(--line-dark); display: grid; grid-template-columns: 1fr auto; gap: 1.4rem; }
.menu-item h3 { margin: 0; font-family: var(--serif); font-size: 1.32rem; font-weight: 500; letter-spacing: -.01em; }
.menu-item p { margin: .38rem 0 0; color: #6d716b; font-size: .82rem; }
.menu-item > span { color: #9a5c37; font-family: var(--serif); font-size: 1.05rem; }
.food-visual { width: min(100%, 340px); margin: 0 0 0 auto; }
.food-visual img { width: 100%; height: clamp(210px, 14vw, 250px); object-fit: cover; object-position: center; filter: saturate(.88) contrast(1.03); }
.food-visual figcaption { margin-top: .8rem; color: #747770; font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.menu-footer { margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.menu-footer p { margin: 0; color: #737770; font-size: .78rem; }

.season {
  padding: clamp(2.4rem, 3.5vw, 3.25rem) max(4vw, calc((100vw - 1440px) / 2));
  display: grid;
  grid-template-columns: .26fr 1fr .85fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  color: var(--pine);
  background: #dce0d4;
}
.season h2 { font-size: clamp(2.8rem, 4vw, 4.1rem); }
.season-number { color: rgba(23,39,32,.09); font-family: var(--serif); font-size: clamp(4rem, 6vw, 5.6rem); line-height: .72; }
.season-copy p:last-child { max-width: 510px; margin-top: .75rem; color: #4f594f; }
.season .eyebrow { color: #9b5b38; }
.season-list { margin: .5rem 0 0; padding: 0; border-top: 1px solid rgba(23,39,32,.2); list-style: none; }
.season-list li { padding: .65rem 0; border-bottom: 1px solid rgba(23,39,32,.2); display: grid; grid-template-columns: 36px 1fr; }
.season-list span { grid-row: span 2; color: #9b5b38; font-size: .6rem; font-weight: 700; letter-spacing: .14em; }
.season-list strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.season-list em { margin-top: .2rem; color: #596259; font-size: .72rem; font-style: normal; letter-spacing: .04em; }

.gather {
  position: relative;
  min-height: 500px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 6vw;
  align-items: end;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(16,24,21,.97) 0%, rgba(16,24,21,.8) 46%, rgba(16,24,21,.46) 100%),
    url("assets/northway-hero.webp") center 55% / cover;
}
.gather::before { content: ""; position: absolute; inset: 2rem; border: 1px solid rgba(241,234,223,.18); pointer-events: none; }
.gather-card { position: relative; z-index: 1; max-width: 850px; }
.gather-card p:not(.eyebrow) { max-width: 560px; margin: 1.3rem 0 1.6rem; color: rgba(241,234,223,.72); }
.gather-details { position: relative; z-index: 1; padding: 1.5rem; border: 1px solid rgba(241,234,223,.24); background: rgba(12,18,16,.55); backdrop-filter: blur(10px); }
.gather-label { margin: 0 0 .75rem; color: var(--copper); font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.gather-details dl { margin: 0; }
.gather-details dl div { padding: .75rem 0; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; gap: 1rem; }
.gather-details dt { color: rgba(241,234,223,.5); font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.gather-details dd { margin: 0; font-family: var(--serif); font-size: 1rem; }

.visit { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.visit-map { position: relative; min-height: 500px; padding: clamp(1.5rem, 2vw, 2.25rem); display: grid; place-items: center; overflow: hidden; color: var(--cream); background: #b96f47; text-decoration: none; cursor: pointer; }
.visit-map:focus-visible { outline: 3px solid var(--cream); outline-offset: -7px; }
.visit-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(241,234,223,.24) 1px, transparent 1px), linear-gradient(90deg, rgba(241,234,223,.24) 1px, transparent 1px);
  background-size: 42px 42px;
}
.route-card { position: relative; width: min(100%, 365px); aspect-ratio: 4 / 5; border: 1px solid rgba(241,234,223,.42); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.visit-map:hover .route-card { border-color: rgba(241,234,223,.72); box-shadow: 0 18px 45px rgba(54,28,15,.2); transform: translateY(-5px); }
.route-card::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(241,234,223,.14); pointer-events: none; }
.route-card-heading { position: absolute; z-index: 2; top: 1.5rem; right: 1.5rem; left: 1.5rem; padding-bottom: .65rem; border-bottom: 1px solid rgba(241,234,223,.34); display: flex; justify-content: space-between; font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.route-card svg { position: absolute; inset: 12% 7% 6%; width: 86%; height: 82%; fill: none; }
.route-ribbon { stroke: rgba(16,24,21,.28); stroke-width: 19; stroke-linecap: round; }
.route-center { stroke: rgba(241,234,223,.78); stroke-width: 1.5; stroke-dasharray: 8 12; stroke-linecap: round; }
.route-origin { fill: var(--pine); stroke: var(--cream); stroke-width: 2; }
.route-destination { fill: var(--cream); stroke: var(--pine); stroke-width: 5; }
.route-place { position: absolute; z-index: 2; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.route-place--south { bottom: 5.1rem; left: 1.5rem; }
.route-place--north { top: 29%; right: 1.4rem; padding: .8rem 1rem; display: flex; flex-direction: column; color: var(--pine-black); background: var(--cream); }
.route-place--north strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; letter-spacing: .04em; }
.route-place--north small { margin-top: .15rem; font-size: .53rem; letter-spacing: .15em; }
.route-direction { position: absolute; z-index: 2; right: 1.5rem; bottom: 4.9rem; display: flex; align-items: center; gap: .55rem; font-size: .59rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.route-direction b { color: var(--pine); font-size: 1rem; }
.route-map-cta { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; min-height: 3.8rem; padding: 0 1.5rem; border-top: 1px solid rgba(241,234,223,.38); display: flex; align-items: center; justify-content: space-between; color: var(--cream); background: rgba(16,24,21,.18); font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.route-map-cta b { color: var(--pine); font-size: 1.25rem; transition: transform .25s ease; }
.visit-map:hover .route-map-cta b { transform: translate(.2rem, -.2rem); }
.visit-copy { display: flex; flex-direction: column; justify-content: center; background: var(--cream); }
.visit-columns { max-width: 600px; margin: 1.5rem 0; padding-top: 1rem; border-top: 1px solid var(--line-dark); display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.visit-columns h3 { margin: 0 0 .8rem; color: #855234; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; }
.visit-columns p { color: #515650; }
.visit-note { font-size: .74rem; }
.visit-copy .button { align-self: flex-start; }

.gateway-concept-credit { padding: 1.35rem 0; border-top: 1px solid #cdbba8; border-bottom: 1px solid #cdbba8; color: var(--pine); background: #e8ded1; }
.gateway-concept-credit__inner { width: var(--page); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2.25rem; }
.gateway-concept-credit__copy { max-width: 800px; }
.gateway-concept-credit__eyebrow { margin: 0 0 .45rem; color: #8f5638; font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.gateway-concept-credit__copy p:last-child { margin: 0; color: #455048; font-size: 1.05rem; line-height: 1.5; }
.gateway-concept-credit__copy strong { color: var(--pine-black); font-weight: 600; }
.gateway-concept-credit__copy span { color: #646a63; }
.gateway-concept-credit__link { min-height: 47px; padding: .75rem 1.35rem; border: 1px solid var(--pine); display: inline-flex; align-items: center; justify-content: center; gap: .9rem; flex-shrink: 0; color: var(--cream); background: var(--pine); font-size: .72rem; font-weight: 700; letter-spacing: .14em; line-height: 1; text-decoration: none; text-transform: uppercase; transition: background .25s ease, transform .25s ease; }
.gateway-concept-credit__link:hover { background: #22372e; transform: translateY(-2px); }
.gateway-concept-credit__link:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
.gateway-concept-credit__link span { color: var(--copper-bright); font-size: 1rem; }

.site-footer { padding: 2.5rem 4vw 1.25rem; color: rgba(241,234,223,.62); background: var(--pine-black); }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: .9rem; color: var(--cream); }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { letter-spacing: .25em; }
.footer-brand span:last-child { margin-top: .2rem; color: rgba(241,234,223,.45); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.site-footer > p { margin: .75rem 0 1.25rem; font-family: var(--serif); font-style: italic; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: clamp(1.2rem, 4vw, 3.8rem); }
.footer-links a { color: var(--cream); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.footer-bottom { margin-top: 1.75rem; padding-top: .9rem; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; gap: 1.5rem; font-size: .62rem; letter-spacing: .06em; }
.concept-note { max-width: 680px; margin: 0; line-height: 1.7; text-align: right; }
.concept-note a { color: var(--copper-bright); text-underline-offset: 3px; }

.modal {
  width: min(92vw, 920px);
  max-height: 92svh;
  margin: auto;
  padding: clamp(2rem, 6vw, 5.5rem);
  border: 0;
  color: var(--pine-black);
  background: var(--cream);
  box-shadow: 0 30px 100px rgba(0,0,0,.5);
  overflow-x: hidden;
}
.modal::backdrop { background: rgba(6,10,8,.82); backdrop-filter: blur(8px); }
.modal[open] { animation: modalIn .35s ease both; }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 46px; height: 46px; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--pine); background: transparent; font-family: var(--serif); font-size: 2rem; line-height: 1; cursor: pointer; transition: color .2s ease, background .2s ease; }
.modal-close:hover { color: var(--cream); background: var(--pine); }
.modal-intro { max-width: 620px; }
.modal h2 { font-size: clamp(3.8rem, 8vw, 7rem); }
.modal-intro > p:last-child { max-width: 530px; margin: 2rem 0 0; color: #5d625c; }
.reservation-form, .gathering-form { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.modal label, .modal legend { color: #76523d; font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.modal input, .modal select, .modal textarea { appearance: none; width: 100%; margin-top: .55rem; padding: .9rem 0; border: 0; border-bottom: 1px solid #aaa69e; border-radius: 0; color: var(--pine-black); background: transparent; font-family: var(--serif); font-size: 1.05rem; outline: 0; }
.modal input:focus, .modal select:focus, .modal textarea:focus { border-color: var(--copper); box-shadow: 0 1px 0 var(--copper); }
.modal textarea { resize: vertical; }
.modal fieldset { margin: 1.8rem 0; padding: 0; border: 0; }
.time-options { margin-top: .75rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
.time-options label { cursor: pointer; }
.time-options input { position: absolute; opacity: 0; pointer-events: none; }
.time-options span { min-height: 50px; border: 1px solid #aaa69e; display: grid; place-items: center; color: var(--pine); font-family: var(--sans); font-size: .72rem; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.time-options input:checked + span { color: var(--cream); background: var(--pine); border-color: var(--pine); }
.time-options input:focus-visible + span { outline: 2px solid var(--copper); outline-offset: 2px; }
.form-note { margin: .8rem 0 0; color: #858881; font-size: .7rem; text-align: center; }
.result-icon { width: 64px; height: 74px; margin-bottom: 2rem; border: 1px solid var(--copper); display: grid; place-items: center; color: var(--copper); font-family: var(--serif); font-size: 2rem; }
.reservation-result > p:not(.eyebrow), .gathering-result > p:not(.eyebrow) { margin: 2rem 0; color: #5d625c; }
.reservation-result .text-link { display: block; margin: 1.4rem auto 0; }

.toast { position: fixed; z-index: 100; right: 1.25rem; bottom: 1.25rem; max-width: 360px; padding: 1rem 1.2rem; color: var(--cream); background: var(--pine); box-shadow: 0 15px 50px rgba(0,0,0,.28); font-size: .82rem; transform: translateY(calc(100% + 2rem)); transition: transform .35s ease; }
.toast.is-visible { transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes heroSettle { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.35); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.985); } to { opacity: 1; transform: none; } }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .button--header { display: none; }
  .menu-toggle { justify-self: end; appearance: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(241,234,223,.32); display: grid; place-content: center; gap: 7px; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 20px; height: 1px; background: var(--cream); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: -1; inset: 0; padding: 9rem 6vw 3rem; color: var(--cream); background: var(--pine-black); opacity: 0; visibility: hidden; display: flex; flex-direction: column; justify-content: center; transition: opacity .3s ease, visibility .3s ease; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: flex; flex-direction: column; border-top: 1px solid var(--line-light); }
  .mobile-menu nav a { padding: .8rem 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: clamp(2.3rem, 8vw, 4rem); line-height: 1; text-decoration: none; }
  .mobile-menu .button { margin-top: 2rem; }
  .mobile-menu p { color: rgba(241,234,223,.5); font-size: .72rem; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
  .menu-layout { grid-template-columns: .48fr 1fr; }
  .food-visual { display: none; }
  .season { grid-template-columns: .35fr 1fr; }
  .season-list { grid-column: 2; }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; padding: 0 5vw; }
  .site-header.is-scrolled { min-height: 62px; }
  .brand-mark { width: 27px; height: 32px; font-size: 1.2rem; }
  .brand-name { font-size: .78rem; }
  .brand-subtitle { font-size: .52rem; }
  .hero { min-height: 680px; }
  .hero-backdrop { background-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,11,9,.84) 0%, rgba(7,11,9,.52) 72%, rgba(7,11,9,.24) 100%), linear-gradient(0deg, rgba(7,11,9,.55), transparent 52%); }
  .hero-road { display: none; }
  .hero-content { width: 90vw; padding-top: 9.75rem; }
  .hero h1 { font-size: clamp(3.85rem, 17vw, 5.6rem); }
  .hero-copy { max-width: 335px; font-size: 1.12rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .route-sign { right: 5vw; bottom: 3rem; width: 58px; height: 72px; }
  .hero-note, .scroll-cue { display: none; }
  .service-strip { padding: 0 5vw; grid-template-columns: 1fr 1fr; }
  .service-strip p, .service-strip button { min-height: 82px; padding: .8rem 1rem; border-bottom: 1px solid var(--line-light); }
  .service-strip p:nth-child(odd), .service-strip button:nth-child(odd) { border-left: 0; }
  .service-strip p:nth-child(even), .service-strip button:nth-child(even) { border-right: 0; }
  .section-pad { padding: 3.35rem 5vw; }
  .story { grid-template-columns: 1fr; gap: 2.25rem; }
  .story h2, .section-heading h2, .season h2, .gather h2, .visit h2 { font-size: clamp(3.1rem, 13.5vw, 4.8rem); }
  .story-visual { width: 86%; margin-left: auto; padding-right: 0; }
  .image-frame--portrait { height: auto; aspect-ratio: 5 / 4; }
  .story-visual::before { content: ""; position: absolute; z-index: -1; inset: -1.5rem auto 1.5rem -10vw; width: 28%; background: var(--pine-mid); }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line-dark); }
  .menu-tab { min-height: 60px; padding: .65rem .35rem; border-right: 1px solid var(--line-dark); border-bottom: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .2rem; font-size: .9rem; line-height: 1.08; }
  .menu-tab:last-child { border-right: 0; }
  .menu-tab:hover, .menu-tab.is-active { padding-left: .6rem; }
  .menu-panels { min-height: 0; }
  .menu-item h3 { font-size: 1.2rem; }
  .menu-footer { align-items: flex-start; flex-direction: column; }
  .season { padding: 2.75rem 5vw; grid-template-columns: 1fr; gap: .8rem; }
  .season h2 { font-size: clamp(2.85rem, 12vw, 3.85rem); }
  .season-number { margin-bottom: .45rem; }
  .season-list { grid-column: auto; margin-top: .5rem; }
  .gather { min-height: 0; padding: 3.5rem 9vw; grid-template-columns: 1fr; gap: 2rem; background-position: 65% center; }
  .gather::before { inset: 1.25rem; }
  .gather-details { padding: 1.4rem; }
  .visit { grid-template-columns: 1fr; }
  .visit-map { min-height: 400px; padding: 1.35rem 8vw; }
  .route-card { width: min(100%, 300px); }
  .visit-copy { min-height: 0; }
  .visit-columns { gap: 1.5rem; }
  .gateway-concept-credit { padding: 1.3rem 0; }
  .gateway-concept-credit__inner { align-items: flex-start; flex-direction: column; gap: 1.15rem; }
  .gateway-concept-credit__copy p:last-child { font-size: 1rem; }
  .footer-links { flex-wrap: wrap; }
  .footer-bottom { align-items: center; flex-direction: column; text-align: center; }
  .concept-note { text-align: center; }
  .modal { padding: 5.5rem 1.35rem 2rem; }
  .modal h2 { font-size: clamp(3.6rem, 17vw, 5.3rem); }
  .field-grid { grid-template-columns: 1fr; }
  .time-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 430px) {
  .service-strip p, .service-strip button { min-height: 78px; }
  .hero { min-height: 660px; }
  .hero-content { padding-top: 9rem; }
  .hero h1 { font-size: clamp(3.55rem, 17.5vw, 4.7rem); }
  .route-sign { bottom: 2rem; }
  .visit-columns { grid-template-columns: 1fr; }
}

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