:root {
  --ink: #071d22;
  --lake: #073e49;
  --lake-deep: #032c34;
  --water: #72d2df;
  --sky: #c9f3f4;
  --moss: #165d3a;
  --fern: #8bcf75;
  --signal: #f06c3b;
  --signal-light: #ff9a73;
  --paper: #edf8f6;
  --white: #fffefa;
  --line: rgba(201,243,244,.42);
  --shadow: 0 18px 60px rgba(1,30,35,.24);
  --radius: 1.2rem;
  --shell: min(92vw, 1440px);
  --header-h: 6.3rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: clip;
  accent-color: var(--signal);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .22em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--white); background: var(--signal); }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; }
.skip-link {
  position: fixed; z-index: 1000; top: .75rem; left: .75rem;
  padding: .8rem 1rem; background: var(--white); color: var(--ink);
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute; inset: 0 0 auto; z-index: 20;
  height: var(--header-h); width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.38);
}
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; min-height: 48px; }
.brand-plate {
  display: grid; place-items: center; width: 11rem; min-height: 3rem;
  padding: .4rem .7rem; background: rgba(255,255,255,.94); border-radius: .3rem;
}
.brand img { width: 100%; height: auto; }
.brand-place { font-size: .7rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(1rem,2.2vw,2.4rem); }
.desktop-nav a {
  min-height: 44px; display: inline-flex; align-items: center;
  color: rgba(255,255,255,.9); font-size: .86rem; font-weight: 720; text-decoration: none;
  border-bottom: 2px solid transparent; transition: color .2s ease,border-color .2s ease;
}
.desktop-nav a:hover,.desktop-nav a:focus-visible { color: #fff; border-color: var(--water); }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.motion-toggle {
  display: none; align-items: center; gap: .5rem; min-width: 44px; min-height: 44px;
  color: var(--white); background: transparent; border: 0; cursor: pointer;
}
.js .motion-toggle { display: inline-flex; }
.motion-toggle svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 2; }
.motion-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.header-call {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: .55rem 1rem; border: 1px solid rgba(255,255,255,.55); border-radius: 99px;
  font-size: .84rem; font-weight: 760; text-decoration: none; white-space: nowrap;
  transition: background .2s ease,color .2s ease;
}
.header-call:hover { background: var(--white); color: var(--ink); }
.mobile-menu { display: none; }

.hero {
  position: relative; min-height: max(740px,100svh); overflow: hidden;
  display: grid; align-items: center; padding: calc(var(--header-h) + 3rem) 4vw 4rem;
  color: var(--white); background: var(--lake-deep); isolation: isolate;
}
.hero-media,.hero-media img,.hero-tint { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; overflow: hidden; }
.hero-media img { object-fit: cover; object-position: 52% 55%; filter: saturate(.9) contrast(1.05); }
.hero-tint {
  background:
    linear-gradient(90deg,rgba(3,28,34,.8) 0%,rgba(3,44,52,.4) 48%,rgba(3,44,52,.1) 72%),
    linear-gradient(0deg,rgba(3,30,35,.72) 0%,transparent 48%,rgba(0,20,25,.28) 100%);
}
.water-lines { position: absolute; inset: auto 0 0; height: 28%; opacity: .55; overflow: hidden; }
.water-lines i {
  position: absolute; left: -10%; width: 120%; height: 1px; background: rgba(201,243,244,.75);
  transform-origin: center; animation: water-drift 7s ease-in-out infinite alternate;
}
.water-lines i:nth-child(1){ bottom: 22%; }
.water-lines i:nth-child(2){ bottom: 43%; animation-delay: -2.5s; animation-duration: 10s; opacity: .55; }
.water-lines i:nth-child(3){ bottom: 66%; animation-delay: -5s; animation-duration: 12s; opacity: .3; }

.hero-content { width: var(--shell); margin: 0 auto; padding-top: 1rem; }
.place-line {
  margin: 0 0 1.1rem; font-size: .8rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.hero h1 {
  max-width: 11ch; margin: 0; font-family: "Arial Narrow","Avenir Next Condensed","Segoe UI",sans-serif;
  font-size: clamp(4rem,8.3vw,8.2rem); font-weight: 900; letter-spacing: -.04em;
  line-height: .86; text-wrap: balance;
}
.hero h1 span { color: var(--sky); }
.hero-copy { max-width: 34rem; margin: 1.7rem 0 2rem; font-size: clamp(1.05rem,1.5vw,1.28rem); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.action {
  min-height: 54px; padding: .85rem 1.15rem; display: inline-flex; align-items: center; gap: 1.8rem;
  border: 1px solid rgba(255,255,255,.72); text-decoration: none; font-weight: 780;
  transition: color .2s ease,background .2s ease,border-color .2s ease,transform .2s ease;
}
.action svg { width: 1.2rem; fill: none; stroke: currentColor; stroke-width: 2; }
.action-primary { background: var(--signal); border-color: var(--signal); color: #16100d; }
.action-secondary { background: rgba(4,43,49,.45); backdrop-filter: blur(8px); }
.action:hover { transform: translateY(-2px); }
.action-primary:hover { background: #ff8a5f; border-color: #ff8a5f; }
.action-secondary:hover { background: var(--white); color: var(--ink); }

.open-card {
  position: absolute; right: 4vw; bottom: 5rem; width: min(26rem,35vw);
  display: grid; grid-template-columns: auto 1fr; gap: .7rem 1rem; align-items: start;
  padding: 1.25rem; background: rgba(3,44,52,.86); border-top: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.open-card .pulse {
  width: .72rem; height: .72rem; margin-top: .42rem; border-radius: 50%; background: var(--fern);
  border: 3px solid rgba(139,207,117,.26);
}
.open-card strong,.open-card span { display: block; }
.open-card strong { font-size: 1.05rem; }
.open-card div span { color: rgba(255,255,255,.75); font-size: .84rem; }
.open-card a { grid-column: 2; font-size: .8rem; font-weight: 740; }
.scroll-cue {
  position: absolute; left: 4vw; bottom: 1.2rem; display: flex; align-items: center; gap: .55rem;
  min-height: 44px; font-size: .74rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
}
.scroll-cue svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; animation: nudge 2s ease-in-out infinite; }

.shore-section { position: relative; padding: clamp(7rem,10vw,10rem) 0 clamp(6rem,9vw,9rem); background: var(--paper); scroll-margin-top: 1.5rem; }
.shore-line { position: absolute; top: -3.2rem; left: 0; width: 100%; height: 10rem; overflow: visible; }
.shore-line path { fill: none; stroke: var(--water); stroke-width: 3; vector-effect: non-scaling-stroke; }
.shore-line circle { fill: var(--signal); stroke: var(--paper); stroke-width: 8; vector-effect: non-scaling-stroke; }
.section-shell { width: var(--shell); margin: 0 auto; }
.section-heading { display: grid; grid-template-columns: minmax(12rem,.7fr) 1.8fr; gap: 2rem; align-items: end; }
.route-name {
  margin: 0 0 .8rem; font-size: .74rem; font-weight: 840; letter-spacing: .15em; text-transform: uppercase; color: var(--moss);
}
.section-heading h2 {
  margin: 0; font-family: "Arial Narrow","Avenir Next Condensed","Segoe UI",sans-serif;
  font-size: clamp(3.2rem,6.6vw,7rem); line-height: .92; letter-spacing: -.035em; text-wrap: balance;
}
.weiher-intro {
  width: min(100%,62rem); margin: 3.5rem 0 4rem auto;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem,6vw,6rem); align-items: start;
}
.weiher-intro p { margin: 0; max-width: 38rem; }
.weiher-intro .lead { font-size: clamp(1.25rem,2vw,1.7rem); line-height: 1.45; font-weight: 620; }

.feature-image { position: relative; margin: 0; height: min(67vw,48rem); overflow: hidden; background: var(--lake); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.feature-image figcaption {
  position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.2rem; color: var(--white); background: rgba(3,44,52,.82);
  font-size: .75rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase;
}
.route-facts {
  display: grid; grid-template-columns: repeat(3,1fr); margin-top: 3.5rem;
  border-top: 1px solid rgba(7,29,34,.25); border-bottom: 1px solid rgba(7,29,34,.25);
}
.route-facts article { position: relative; padding: 2rem clamp(1rem,3vw,3rem); }
.route-facts article + article { border-left: 1px solid rgba(7,29,34,.25); }
.route-facts svg { width: 2.3rem; height: 2.3rem; fill: none; stroke: var(--moss); stroke-width: 2; }
.route-facts h3 { margin: 1rem 0 .35rem; font-size: 1.15rem; }
.route-facts p { margin: 0; max-width: 26ch; color: #36545a; }
@keyframes water-drift { to { transform: translate3d(4%,0,0) scaleX(.93); } }
@keyframes nudge { 50% { transform: translateY(.35rem); } }

body.motion-paused * { animation-play-state: paused !important; }
.no-js .water-lines i,
.no-js .scroll-cue svg,
.no-js .contour-lines path,
.no-js .welcome-marker { animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .water-lines i,
  .open-card .pulse,
  .scroll-cue svg,
  .contour-lines path,
  .welcome-marker { animation: none !important; }
}

@media (hover:hover) {
  .feature-image:hover img { transform: scale(1.025); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .brand-place,.desktop-nav,.header-call { display: none; }
  .header-actions { justify-self: end; }
  .mobile-menu { display: block; justify-self: end; }
  .mobile-menu summary {
    width: 48px; height: 48px; display: grid; place-content: center; gap: .45rem;
    cursor: pointer; list-style: none; border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
  }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 1.25rem; height: 2px; background: currentColor; transition: transform .2s ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(.23rem) rotate(45deg); }
  .mobile-menu[open] summary span:last-child { transform: translateY(-.23rem) rotate(-45deg); }
  .mobile-menu nav {
    position: absolute; top: calc(var(--header-h) - .5rem); right: 0; width: min(22rem,92vw);
    display: grid; padding: 1rem; background: var(--white); color: var(--ink); box-shadow: var(--shadow);
  }
  .mobile-menu nav a { min-height: 48px; padding: .7rem .5rem; display: flex; align-items: center; text-decoration: none; border-bottom: 1px solid #c9d9d7; }
  .mobile-menu nav .menu-call { margin-top: .5rem; justify-content: center; background: var(--signal); border: 0; font-weight: 800; }
  .open-card { width: min(25rem,42vw); }
}

@media (max-width: 900px) {
  :root { --shell: min(90vw,42rem); --header-h: 5.3rem; }
  .site-header { gap: .6rem; }
  .brand-plate { width: 8.4rem; min-height: 2.65rem; }
  .header-actions { margin-left: auto; }
  .hero { min-height: 780px; padding: calc(var(--header-h) + 2.5rem) 5vw 12.5rem; align-items: center; }
  .hero-media img { object-position: 65% 55%; }
  .hero-tint {
    background:
      linear-gradient(0deg,rgba(3,30,35,.88) 0%,rgba(3,44,52,.38) 62%,rgba(0,20,25,.45) 100%),
      linear-gradient(90deg,rgba(3,30,35,.52),transparent);
  }
  .hero-content { width: 100%; }
  .place-line { font-size: .67rem; letter-spacing: .14em; }
  .hero h1 { font-size: clamp(3.45rem,17vw,5.2rem); line-height: .88; max-width: 8.6ch; }
  .hero-copy { max-width: 27rem; margin: 1.25rem 0 1.45rem; font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%,22rem); }
  .action { justify-content: space-between; }
  .open-card {
    left: 5vw; right: 5vw; bottom: 4.2rem; width: auto; padding: 1rem;
  }
  .scroll-cue { left: 5vw; bottom: .3rem; }
  .shore-section { padding-top: 6rem; }
  .shore-line { top: -2.2rem; height: 7rem; width: 100%; left: 0; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: clamp(3rem,14vw,4.8rem); }
  .weiher-intro { margin: 2.4rem 0 2.8rem; grid-template-columns: 1fr; gap: 1.4rem; }
  .weiher-intro .lead { font-size: 1.22rem; }
  .feature-image { height: 65svh; min-height: 30rem; margin-inline: -5vw; }
  .feature-image img { object-position: 53% center; }
  .route-facts { grid-template-columns: 1fr; margin-top: 2rem; }
  .route-facts article { display: grid; grid-template-columns: 3rem 1fr; column-gap: 1rem; padding: 1.4rem 0; }
  .route-facts article + article { border-left: 0; border-top: 1px solid rgba(7,29,34,.25); }
  .route-facts h3 { margin: 0 0 .25rem; }
  .route-facts p { grid-column: 2; }
}
@media (max-width: 370px) {
  .brand-plate { width: 7.5rem; }
  .motion-toggle { padding-inline: .35rem; }
  .hero { padding-left: 4vw; padding-right: 4vw; }
  .hero h1 { font-size: clamp(3.1rem,16vw,4rem); }
}


/* Full one-page continuation */
section[id] { scroll-margin-top: 5.5rem; }
.js .site-header {
  position: fixed;
  transition: width .25s ease, height .25s ease, top .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.js .site-header.is-scrolled {
  top: .6rem; height: 4.5rem; width: min(95vw, 1440px); padding-inline: 1rem;
  background: rgba(3,44,52,.94); border: 1px solid rgba(201,243,244,.28);
  box-shadow: 0 12px 38px rgba(0,0,0,.25); backdrop-filter: blur(12px);
}
.js .site-header.is-scrolled .brand-plate { width: 9rem; min-height: 2.6rem; }
.desktop-nav a[aria-current="true"] { color: var(--sky); border-color: var(--signal); }

.lead { font-size: clamp(1.22rem, 1.8vw, 1.62rem); line-height: 1.48; font-weight: 620; }
.text-link {
  display: inline-flex; align-items: center; gap: .6rem; min-height: 46px;
  margin-top: 1.1rem; color: var(--lake-deep); font-weight: 800;
  text-decoration-thickness: 1px; transition: color .2s ease, gap .2s ease;
}
.text-link:hover { color: var(--signal); gap: .9rem; }
.text-link-light { color: var(--sky); }

.restaurant-section {
  padding: clamp(7rem,10vw,11rem) 0 clamp(6rem,8vw,9rem);
  background: var(--white);
}
.restaurant-grid {
  display: grid; grid-template-columns: repeat(12,1fr); gap: clamp(1.3rem,2.4vw,2.8rem);
  align-items: start;
}
.restaurant-copy { grid-column: 1 / span 5; padding-top: clamp(1rem,5vw,5rem); }
.restaurant-copy h2,
.stay-head h2,
.welcome-copy h2,
.celebrate-copy h2,
.plan-heading h2 {
  margin: 0 0 2.2rem; font-family: "Arial Narrow","Avenir Next Condensed","Segoe UI",sans-serif;
  font-size: clamp(3.4rem,6.5vw,7.3rem); line-height: .9; letter-spacing: -.035em; text-wrap: balance;
}
.restaurant-copy p:not(.route-name) { max-width: 38rem; }
.restaurant-portrait {
  grid-column: 7 / span 3; margin: 0; position: relative;
  background: var(--lake); box-shadow: 0 22px 50px rgba(6,40,44,.18);
}
.restaurant-portrait img { width: 100%; aspect-ratio: .76; object-fit: cover; }
.restaurant-portrait figcaption,
.celebrate-main figcaption {
  position: absolute; inset: auto 0 0; padding: .8rem 1rem; color: var(--white);
  background: rgba(3,44,52,.86); font-size: .72rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase;
}
.menu-board { grid-column: 10 / -1; margin-top: clamp(3rem,11vw,10rem); background: linear-gradient(var(--signal),var(--signal)) top left / 100% 4px no-repeat; }
.menu-board h3 { margin: 1.2rem 0 1rem; font-size: 1.25rem; }
.menu-board nav { border-bottom: 1px solid rgba(7,29,34,.25); }
.menu-board nav a {
  min-height: 64px; display: flex; justify-content: space-between; align-items: center; gap: .8rem;
  padding: .7rem 0; text-decoration: none; border-top: 1px solid rgba(7,29,34,.25);
  transition: color .2s ease, padding .2s ease;
}
.menu-board nav a:hover { color: var(--signal); padding-left: .45rem; }
.menu-board strong,.menu-board small { display: block; }
.menu-board small { color: #4b6468; font-size: .74rem; }
.menu-board > p { color: #4b6468; font-size: .75rem; line-height: 1.45; }

.terrace-panorama {
  position: relative; width: min(94vw,1600px); height: min(64vw,52rem);
  margin: clamp(5rem,9vw,9rem) 0 0 auto; background: var(--lake); overflow: hidden;
}
.terrace-panorama img { width: 100%; height: 100%; object-fit: cover; object-position: center 57%; }
.terrace-panorama figcaption {
  position: absolute; inset: auto auto 0 0; min-width: min(32rem,90%);
  padding: 1.35rem clamp(1.2rem,3vw,3rem); background: var(--signal); color: var(--ink);
}
.terrace-panorama figcaption strong,.terrace-panorama figcaption span { display: block; }
.terrace-panorama figcaption strong { font-size: 1.3rem; }
.terrace-panorama figcaption span { font-size: .8rem; font-weight: 700; color: #2a130c; }

.dish-strip {
  display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: clamp(1rem,2vw,2rem);
  align-items: stretch; margin-top: clamp(2rem,4vw,4rem);
}
.dish-strip figure { margin: 0; position: relative; overflow: hidden; min-height: 20rem; background: var(--lake); }
.dish-strip img { width: 100%; height: 100%; object-fit: cover; }
.dish-strip figure:last-child img { object-position: center; }
.dish-strip figcaption {
  position: absolute; inset: auto .8rem .8rem auto; padding: .35rem .6rem;
  background: var(--white); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.dish-strip blockquote {
  margin: 0; padding: clamp(2rem,4vw,4rem) clamp(1.5rem,3vw,3rem);
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--sky);
}
.dish-strip blockquote p { margin: 0; font-size: clamp(1.7rem,3vw,3.1rem); line-height: 1.03; font-weight: 820; letter-spacing: -.035em; }
.dish-strip blockquote a { margin-top: 2rem; font-weight: 800; }

.stay-section {
  position: relative; padding: clamp(7rem,10vw,11rem) 0; overflow: hidden;
  color: var(--white); background: var(--lake-deep); isolation: isolate;
}
.contour-lines { position: absolute; z-index: -1; top: 0; right: -8%; width: min(58rem,70vw); height: 100%; opacity: .16; }
.contour-lines path {
  fill: none; stroke: var(--water); stroke-width: 2; stroke-dasharray: 14 18;
  animation: contour-walk 20s linear infinite;
}
.stay-section .route-name { color: var(--fern); }
.stay-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem,9vw,10rem); align-items: end; }
.stay-head h2 { margin-bottom: 0; }
.stay-intro p { max-width: 38rem; }
.stay-intro p:last-child { color: rgba(255,255,255,.72); }

.stay-gallery {
  display: grid; grid-template-columns: 1.5fr .8fr .58fr; grid-template-rows: 1fr auto;
  gap: clamp(.8rem,1.5vw,1.5rem); align-items: stretch; margin-top: clamp(4rem,7vw,7rem);
}
.stay-gallery figure { position: relative; margin: 0; overflow: hidden; background: #082a30; }
.stay-gallery img { width: 100%; height: 100%; object-fit: cover; }
.stay-room { grid-row: 1 / span 2; min-height: 43rem; }
.stay-hut { min-height: 32rem; }
.stay-gallery figure figcaption {
  position: absolute; inset: auto 0 0; padding: 1rem 1.2rem;
  background: rgba(3,44,52,.88); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.stay-ticket {
  grid-row: 1 / span 2; align-self: end; min-height: 23rem; padding: 2rem 1.4rem;
  display: flex; flex-direction: column; justify-content: flex-end; background: var(--signal); color: #20100b;
}
.stay-ticket span,.stay-ticket small { font-weight: 750; }
.stay-ticket strong { display: block; margin: .5rem 0; font-size: clamp(3.4rem,5.4vw,5.8rem); line-height: .88; letter-spacing: -.06em; }
.stay-ticket small { font-size: .82rem; line-height: 1.4; }
.stay-details {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end;
  padding-top: 2rem; border-top: 1px solid rgba(201,243,244,.28);
}
.stay-details ul { display: flex; flex-wrap: wrap; gap: .7rem 2rem; margin: 0; padding: 0; list-style: none; }
.stay-details li { position: relative; padding-left: 1.2rem; color: rgba(255,255,255,.78); }
.stay-details li::before { content: ""; position: absolute; top: .75em; left: 0; width: .42rem; height: .42rem; border-radius: 50%; background: var(--fern); }
.stay-actions { display: flex; align-items: center; gap: 1.5rem; }
.stay-actions .text-link { white-space: nowrap; }

.welcome-section {
  position: relative; display: grid; grid-template-columns: 52% 48%; min-height: 56rem;
  background: var(--sky); overflow: hidden;
}
.welcome-photo { min-height: 56rem; overflow: hidden; }
.welcome-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.welcome-copy {
  align-self: center; width: min(82%,42rem); margin: 0 auto; padding: 6rem 0;
}
.welcome-copy h2 { color: var(--lake-deep); }
.welcome-copy p { max-width: 38rem; }
.welcome-marker {
  position: absolute; left: calc(52% - 3.5rem); top: 12%; width: 7rem; height: 7rem;
  display: grid; place-items: center; border-radius: 50%; background: var(--signal); color: #1c0e09;
  box-shadow: 0 12px 36px rgba(0,0,0,.24); animation: marker-float 4s ease-in-out infinite;
}
.welcome-marker span { font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-10deg); }

.celebrate-section { padding: clamp(7rem,10vw,11rem) 0; background: var(--paper); }
.celebrate-grid {
  display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: auto auto;
  gap: clamp(1rem,2vw,2rem); align-items: start;
}
.celebrate-copy { grid-column: 1 / span 5; grid-row: 1 / span 2; padding-top: clamp(1rem,5vw,5rem); }
.celebrate-copy p { max-width: 38rem; }
.celebrate-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 1.5rem; }
.celebrate-main { grid-column: 7 / -1; grid-row: 1; position: relative; margin: 0; height: 36rem; background: var(--lake); overflow: hidden; }
.celebrate-main img { width: 100%; height: 100%; object-fit: cover; }
.celebrate-detail { grid-column: 6 / span 4; grid-row: 2; height: 17rem; margin: -5rem 0 0; z-index: 1; border: .75rem solid var(--paper); overflow: hidden; }
.celebrate-detail img { width: 100%; height: 100%; object-fit: cover; }

.plan-section { padding: clamp(7rem,10vw,11rem) 0; background: var(--lake); color: var(--white); }
.plan-section .route-name { color: var(--fern); }
.plan-heading {
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 4rem; align-items: end;
  padding-bottom: clamp(3rem,6vw,6rem); border-bottom: 1px solid rgba(201,243,244,.3);
}
.plan-heading h2 { margin-bottom: 0; }
.plan-heading > p { color: rgba(255,255,255,.74); font-size: 1.15rem; max-width: 28rem; }

.plan-grid {
  display: grid; grid-template-columns: 1.1fr .95fr .95fr; gap: 0;
  border-bottom: 1px solid rgba(201,243,244,.3);
}
.plan-grid > section { padding: clamp(2rem,4vw,4rem); border-right: 1px solid rgba(201,243,244,.3); }
.plan-grid > section:first-child { padding-left: 0; }
.plan-grid > section:last-child { padding-right: 0; border-right: 0; }
.plan-grid h3 { margin: 0 0 2rem; font-size: 1.35rem; color: var(--sky); }
.hours-panel dl { margin: 0; }
.hours-panel dl div {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: .72rem 0;
  border-top: 1px solid rgba(201,243,244,.2);
}
.hours-panel dt { font-weight: 790; }
.hours-panel dd { margin: 0; text-align: right; color: rgba(255,255,255,.76); font-variant-numeric: tabular-nums; }
.hours-panel .closed { color: var(--signal-light); }
.hours-panel > p,.contact-panel > p,.arrival-panel p { margin: 1.5rem 0 0; color: rgba(255,255,255,.67); font-size: .84rem; }
.contact-panel > a {
  min-height: 72px; display: flex; flex-direction: column; justify-content: center;
  padding: .75rem 0; border-top: 1px solid rgba(201,243,244,.2); text-decoration: none;
  overflow-wrap: anywhere; transition: color .2s ease, padding .2s ease;
}
.contact-panel > a:hover { color: var(--fern); padding-left: .45rem; }
.contact-panel span { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--water); }
.contact-panel strong { font-size: 1rem; }
.arrival-panel address { font-style: normal; font-size: clamp(1.4rem,2.3vw,2.2rem); line-height: 1.28; font-weight: 760; }
.arrival-panel .action { margin-top: 2rem; width: 100%; justify-content: space-between; }
.trust-line { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid rgba(201,243,244,.3); }
.trust-line div { padding: 2rem; }
.trust-line div:first-child { padding-left: 0; }
.trust-line div + div { border-left: 1px solid rgba(201,243,244,.3); }
.trust-line strong,.trust-line span { display: block; }
.trust-line strong { color: var(--sky); }
.trust-line span { color: rgba(255,255,255,.65); font-size: .78rem; }

.site-footer { position: relative; min-height: 54rem; color: var(--white); background: #011e24; overflow: hidden; }
.footer-image,.footer-image::after { position: absolute; inset: 0; }
.footer-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .43; }
.footer-image::after { content: ""; background: linear-gradient(0deg,#011e24 0%,rgba(1,30,36,.83) 50%,rgba(1,30,36,.48) 100%); }
.footer-content { position: relative; z-index: 1; padding-top: clamp(6rem,9vw,9rem); padding-bottom: 2rem; }
.footer-lead { display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding-bottom: clamp(4rem,9vw,8rem); }
.footer-lead > span {
  max-width: 9ch; font-family: "Arial Narrow","Avenir Next Condensed","Segoe UI",sans-serif;
  font-size: clamp(4rem,8vw,8.7rem); line-height: .85; font-weight: 900; letter-spacing: -.04em;
}
.footer-lead > a { display: inline-flex; align-items: center; gap: .7rem; min-height: 48px; font-weight: 800; }
.footer-lead svg { width: 1.3rem; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-main {
  display: grid; grid-template-columns: 1.4fr .7fr .9fr; gap: 3rem;
  padding: 3rem 0; border-top: 1px solid rgba(201,243,244,.3); border-bottom: 1px solid rgba(201,243,244,.3);
}
.footer-brand .brand-plate {
  width: 13rem; min-height: 0; aspect-ratio: 1024 / 308; display: inline-grid; padding: .45rem .7rem;
}
.footer-brand .brand-plate img { width: 100%; height: auto; object-fit: contain; }
.footer-brand p { max-width: 31rem; color: rgba(255,255,255,.68); }
.footer-main nav { display: grid; align-content: start; }
.footer-main nav a { min-height: 42px; display: flex; align-items: center; text-decoration: none; }
.footer-main address { font-style: normal; color: rgba(255,255,255,.78); }
.footer-main address a { display: inline-block; margin-top: .6rem; }
.legal-row {
  display: grid; grid-template-columns: auto auto 1fr; gap: 1.5rem; align-items: start; padding-top: 1.5rem;
  font-size: .78rem; color: rgba(255,255,255,.68);
}
.legal-row > span { justify-self: end; }
.legal-row details { max-width: 27rem; }
.legal-row summary { min-height: 44px; display: flex; align-items: center; color: var(--white); cursor: pointer; font-weight: 750; }
.legal-row details div { padding: .8rem 1rem; background: rgba(3,44,52,.9); color: rgba(255,255,255,.77); }
.legal-open { color: #ffd0bf; }

@keyframes contour-walk { to { stroke-dashoffset: -320; } }
@keyframes marker-float { 50% { transform: translateY(.65rem) rotate(3deg); } }

@media (max-width: 1050px) {
  .restaurant-copy { grid-column: 1 / span 6; }
  .restaurant-portrait { grid-column: 7 / span 6; }
  .menu-board { grid-column: 7 / -1; margin-top: 0; }
  .stay-gallery { grid-template-columns: 1.35fr .9fr; }
  .stay-ticket { grid-column: 2; grid-row: 2; min-height: 15rem; }
  .stay-room { min-height: 39rem; }
  .stay-hut { min-height: 23rem; }
  .stay-details { grid-template-columns: 1fr; }
  .stay-actions { justify-content: space-between; }
  .plan-grid { grid-template-columns: 1fr 1fr; }
  .plan-grid > section:nth-child(2) { border-right: 0; }
  .plan-grid > section:last-child { grid-column: 1 / -1; padding-left: 0; border-top: 1px solid rgba(201,243,244,.3); }
}

@media (max-width: 900px) {
  .js .site-header.is-scrolled { height: 4.2rem; top: .35rem; }
  .js .site-header.is-scrolled .brand-plate { width: 7.5rem; }
  .restaurant-section,.stay-section,.celebrate-section,.plan-section { padding-block: 6rem; }
  .restaurant-grid,.celebrate-grid { display: block; }
  .restaurant-copy,.celebrate-copy { padding-top: 0; }
  .restaurant-copy h2,.stay-head h2,.welcome-copy h2,.celebrate-copy h2,.plan-heading h2 { font-size: clamp(3.1rem,14vw,5.4rem); }
  .restaurant-portrait { width: 82%; margin: 3.5rem 0 0 auto; }
  .menu-board { width: 92%; margin: -1.8rem auto 0 0; padding: 1.1rem; position: relative; z-index: 1; background: var(--white); }
  .terrace-panorama { width: 95vw; height: 72svh; min-height: 34rem; margin-top: 4rem; }
  .terrace-panorama img { object-position: 44% center; }
  .dish-strip { grid-template-columns: 1fr 1fr; }
  .dish-strip blockquote { grid-column: 1 / -1; grid-row: 1; min-height: 18rem; }
  .dish-strip figure { min-height: 18rem; }
  .stay-head { grid-template-columns: 1fr; gap: 2rem; }
  .stay-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .stay-room { grid-column: 1 / -1; grid-row: auto; min-height: 32rem; }
  .stay-hut { min-height: 22rem; }
  .stay-ticket { grid-column: auto; grid-row: auto; min-height: 22rem; }
  .stay-details ul { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 1rem; }
  .stay-actions { align-items: flex-start; }
  .welcome-section { grid-template-columns: 1fr; }
  .welcome-photo { min-height: 70svh; max-height: 48rem; }
  .welcome-copy { width: var(--shell); padding: 5rem 0 6rem; }
  .welcome-marker { left: auto; right: 6%; top: calc(70svh - 3.5rem); }
  .celebrate-main { height: 65svh; min-height: 32rem; margin-top: 3.5rem; }
  .celebrate-detail { width: 62%; height: 13rem; margin: -4rem 0 0 auto; border-right: 0; }
  .plan-heading { grid-template-columns: 1fr; gap: 1rem; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid > section,.plan-grid > section:first-child,.plan-grid > section:last-child {
    grid-column: auto; padding: 2.4rem 0; border-right: 0; border-top: 1px solid rgba(201,243,244,.3);
  }
  .trust-line { grid-template-columns: 1fr; }
  .trust-line div,.trust-line div:first-child { padding: 1.4rem 0; }
  .trust-line div + div { border-left: 0; border-top: 1px solid rgba(201,243,244,.3); }
  .footer-lead { display: block; }
  .footer-lead > a { margin-top: 2rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-row { grid-template-columns: 1fr 1fr; }
  .legal-row > span { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 520px) {
  .restaurant-portrait { width: 88%; }
  .dish-strip { display: block; }
  .dish-strip > * + * { margin-top: 1rem; }
  .dish-strip figure { min-height: 19rem; }
  .stay-gallery { display: block; }
  .stay-gallery > * + * { margin-top: 1rem; }
  .stay-room,.stay-hut { min-height: 29rem; }
  .stay-ticket { min-height: 14rem; }
  .stay-details ul { grid-template-columns: 1fr; }
  .stay-actions { display: grid; }
  .welcome-photo { min-height: 34rem; }
  .welcome-marker { top: 30.5rem; width: 6.3rem; height: 6.3rem; }
  .celebrate-main { margin-inline: -5vw; }
  .celebrate-detail { width: 72%; }
  .footer-main,.legal-row { grid-template-columns: 1fr; }
  .footer-brand,.legal-row > span { grid-column: auto; }
  .footer-main nav { margin-top: 1rem; }
}
