/* ==========================================================================
   Bergrestaurant Alm Zermatt — site.css
   Visual thesis: "Firn & Forelle" — the Alm is met as a real place first;
   the food concept and the contact resolve after the place.
   Palette derived from the merchant's own brand assets (green trout roundel)
   and the merchant's own theme tokens: #485d44 / #2d3328 / #5a4b23 / #e6e1d6.
   ========================================================================== */

/* ---- fonts (self-hosted latin subsets, variable) ---- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---- tokens ---- */
:root {
  --paper: #f6f3ec;
  --cream: #e6e1d6;
  --cream-dim: #d8d2c4;
  --ink: #1c2018;
  --green-950: #20251b;
  --green-900: #2d3328;
  --green-700: #485d44;
  --green-600: #566c50;
  --green-500: #6b8163;
  --gold: #5a4b23;
  --gold-soft: #8a733a;
  --line: rgba(28, 32, 24, .16);
  --line-on-dark: rgba(230, 225, 214, .24);

  --ff-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --ff-text: 'Archivo', 'Helvetica Neue', Arial, sans-serif;

  --step--1: clamp(.78rem, .74rem + .2vw, .86rem);
  --step-0: clamp(.95rem, .9rem + .28vw, 1.06rem);
  --step-1: clamp(1.12rem, 1.02rem + .5vw, 1.34rem);
  --step-2: clamp(1.4rem, 1.2rem + .9vw, 1.9rem);
  --step-3: clamp(1.9rem, 1.5rem + 1.7vw, 3rem);
  --step-4: clamp(2.4rem, 1.7rem + 2.9vw, 4.3rem);
  --step-5: clamp(3rem, 1.8rem + 5.6vw, 7.2rem);
  --step-6: clamp(3.6rem, 1.4rem + 9vw, 11rem);

  --gutter: clamp(1.1rem, 4.2vw, 4.4rem);
  --measure: 62ch;
  --radius: 2px;
  --ease-out: cubic-bezier(.16, .84, .24, 1);
  --ease-inout: cubic-bezier(.33, 0, .1, 1);
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-text);
  font-size: var(--step-0);
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, svg { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 400; line-height: .98; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--green-700); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }

/* ---- utilities ---- */
.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: .5rem; left: .5rem; z-index: 200;
  transform: translateY(-200%);
  background: var(--green-900); color: var(--cream);
  padding: .7rem 1.1rem; border-radius: var(--radius);
  font-size: var(--step--1); letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(1320px, 100%); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 880px; }
.measure { max-width: var(--measure); }

.eyebrow {
  font-size: var(--step--1); letter-spacing: .24em; text-transform: uppercase;
  font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: .7em; margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 1.8em; height: 1px; background: currentColor; flex: none; }
.on-dark .eyebrow { color: var(--cream-dim); }
.on-dark .eyebrow::before { background: var(--line-on-dark); }

/* dark surfaces always carry light text (the sections, not only .on-dark blocks) */
.section--dark, .section--green, .page-head, .hero { color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--green h1, .section--green h2, .section--green h3, .section--green h4,
.page-head h1 { color: var(--paper); }
.section--dark .eyebrow, .section--green .eyebrow, .page-head .eyebrow { color: var(--cream-dim); }
.section--dark .eyebrow::before, .section--green .eyebrow::before, .page-head .eyebrow::before { background: var(--line-on-dark); }
.section--dark .muted, .section--green .muted, .page-head .muted { color: rgba(230, 225, 214, .78); }
.section--dark a:hover, .section--green a:hover, .page-head a:hover { color: var(--paper); }
.section--dark .facts, .section--dark .fact,
.section--green .facts, .section--green .fact { border-color: var(--line-on-dark); }
.section--dark .fact dt, .section--green .fact dt { color: var(--cream-dim); }
.section--dark .hours, .section--dark .hours__row,
.section--green .hours, .section--green .hours__row { border-color: var(--line-on-dark); }
.section--dark .hours__row span:first-child,
.section--green .hours__row span:first-child { color: rgba(230, 225, 214, .72); }
.section--dark .hours__row--muted span, .section--dark .hours__row--muted strong,
.section--green .hours__row--muted span, .section--green .hours__row--muted strong { color: rgba(230, 225, 214, .55); }
.section--dark .media-caption, .section--green .media-caption { color: rgba(230, 225, 214, .62); }
.section--dark .rule, .section--green .rule { background: var(--line-on-dark); }

.lede { font-size: var(--step-1); line-height: 1.5; }
.muted { color: rgba(28, 32, 24, .72); }
.on-dark { color: var(--cream); }
.on-dark .muted { color: rgba(230, 225, 214, .76); }
.on-dark h2, .on-dark h1, .on-dark h3 { color: var(--paper); }
.on-dark a:hover { color: var(--paper); }

/* ---- buttons ---- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  padding: .82em 1.5em; border-radius: var(--radius);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.btn:hover { background: var(--green-900); border-color: var(--green-900); color: var(--paper); transform: translateY(-2px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: var(--green-700); border-color: var(--green-700); color: var(--paper); }
.btn--gold { --btn-bg: var(--gold); border-color: var(--gold); }
.btn--gold:hover { background: var(--green-900); border-color: var(--green-900); }
.btn--on-dark { --btn-bg: var(--paper); --btn-fg: var(--green-900); border-color: var(--paper); }
.btn--on-dark:hover { background: transparent; color: var(--paper); border-color: var(--paper); }
.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; letter-spacing: .04em; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: .18em; }
.link-arrow::after { content: "\2192"; transition: transform .3s var(--ease-out); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-900); color: var(--cream);
  border-bottom: 1px solid rgba(230, 225, 214, .12);
}
.site-header__inner {
  display: flex; align-items: center; gap: clamp(.6rem, 2vw, 2rem);
  min-height: 76px; padding-block: .55rem;
  transition: min-height .22s ease;
}
.site-header.is-tight .site-header__inner { min-height: 60px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--cream); flex: none; }
.brand img { width: 42px; height: 42px; transition: width .22s ease, height .22s ease; }
.site-header.is-tight .brand img { width: 34px; height: 34px; }
.brand__name {
  font-family: var(--ff-display); font-size: clamp(1.05rem, .85rem + .7vw, 1.5rem);
  line-height: 1; letter-spacing: -.01em;
}
.brand__name small { display: block; font-family: var(--ff-text); font-size: .58em; letter-spacing: .22em; text-transform: uppercase; color: var(--cream-dim); margin-top: .35em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.7rem, 1.6vw, 1.7rem); }
.nav__list { display: flex; align-items: center; gap: clamp(.7rem, 1.6vw, 1.7rem); }
.nav a {
  text-decoration: none; font-size: var(--step--1); letter-spacing: .13em; text-transform: uppercase;
  color: var(--cream-dim); padding-block: .4rem; position: relative;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--cream); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--paper); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { margin-left: clamp(.4rem, 1vw, 1rem); }
/* the drawer close button belongs to the mobile drawer only */
.nav__close { display: none; }
.lang { display: flex; align-items: center; gap: .35rem; font-size: var(--step--1); letter-spacing: .1em; }
.lang a { text-decoration: none; padding: .25em .4em; color: var(--cream-dim); }
.lang a[aria-current="true"] { color: var(--paper); font-weight: 700; }
.lang span { color: rgba(230,225,214,.35); }

.nav-toggle {
  display: none; margin-left: auto;
  background: transparent; border: 1px solid rgba(230,225,214,.4); border-radius: var(--radius);
  padding: .5rem .7rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--cream); }
.nav-toggle span + span { margin-top: 4px; }
.nav-toggle__label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; display: block; margin-top: .35rem; color: var(--cream-dim); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 auto auto; top: 0; right: 0; height: 100dvh;
    width: min(360px, 88vw); margin: 0; padding: 5.5rem var(--gutter) 2rem;
    background: var(--green-950);
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
    clip-path: inset(0 0 100% 0); visibility: hidden;
    transition: clip-path .38s var(--ease-inout), visibility .38s;
    overflow-y: auto;
  }
  .nav.is-open { clip-path: inset(0); visibility: visible; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 1.15rem; }
  .nav a { font-size: 1.15rem; letter-spacing: .08em; text-transform: none; font-family: var(--ff-display); }
  .nav__cta { margin: 0; }
  .nav__close {
    display: block;
    position: absolute; top: 1rem; right: var(--gutter);
    background: transparent; border: 1px solid rgba(230,225,214,.4); color: var(--cream);
    border-radius: var(--radius); padding: .45rem .7rem; cursor: pointer;
    font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  }
}

/* ==========================================================================
   Hero — the place poster (signature beat 1)
   ========================================================================== */
.hero { position: relative; background: var(--green-950); color: var(--cream); overflow: hidden; }
.hero__poster { position: relative; min-height: min(92vh, 940px); }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  will-change: transform, clip-path;
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(32,37,27,.72) 0%, rgba(32,37,27,.18) 34%, rgba(32,37,27,.42) 62%, rgba(32,37,27,.9) 100%),
    linear-gradient(90deg, rgba(32,37,27,.5) 0%, rgba(32,37,27,0) 55%);
}
.hero__roundel {
  position: absolute; top: clamp(1rem, 3vw, 2.4rem); right: clamp(1rem, 3vw, 2.4rem);
  width: clamp(58px, 8vw, 104px); opacity: .92;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.4));
}
.hero__body {
  position: relative; z-index: 2;
  min-height: min(92vh, 940px);
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 1.3rem; padding-block: clamp(3rem, 12vh, 8rem) clamp(2.2rem, 7vh, 4.5rem);
}
.hero__locator {
  display: flex; align-items: center; gap: .8em; flex-wrap: wrap;
  font-size: var(--step--1); letter-spacing: .22em; text-transform: uppercase; color: var(--cream-dim);
}
.hero__locator b { color: var(--paper); font-weight: 600; letter-spacing: .22em; }
.hero__locator i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-soft); flex: none; }
.hero__word {
  font-family: var(--ff-display); font-weight: 400;
  font-size: var(--step-6); line-height: .86; letter-spacing: -.035em;
  margin: .1em 0 .05em; color: var(--paper); max-width: 16ch;
}
.hero__word .line { display: block; overflow: hidden; }
.hero__word .line > span { display: block; }
.hero__sub {
  font-family: var(--ff-display); font-style: italic;
  font-size: var(--step-2); color: var(--cream); letter-spacing: -.01em;
}
.hero__lead { max-width: 46ch; font-size: var(--step-0); color: rgba(230,225,214,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .7rem 1rem; align-items: center; margin-top: .4rem; }
.hero__hours {
  margin-top: .5rem; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-dim); display: flex; align-items: center; gap: .6em;
}
.hero__hours svg { width: 15px; height: 15px; flex: none; }

/* ---- signature beat 1: poster iris from the roundel ---- */
.js.motion-armed .hero__img {
  clip-path: circle(8% at 50% 44%);
  transform: scale(1.16);
  transition: clip-path 1.5s var(--ease-out), transform 1.9s var(--ease-out);
}
.js.motion-armed .hero__scrim,
.js.motion-armed .hero__roundel { opacity: 0; transition: opacity 1.2s ease .35s; }
.js.motion-armed .hero__locator,
.js.motion-armed .hero__lead,
.js.motion-armed .hero__actions,
.js.motion-armed .hero__hours { opacity: 0; transition: opacity .9s ease .75s; }
.js.motion-armed .hero__word .line > span,
.js.motion-armed .hero__sub { transform: translateY(114%); transition: transform 1s var(--ease-out); }
.js.motion-armed .hero__sub { display: block; }

.js.motion-armed.poster-ready .hero__img { clip-path: circle(135% at 50% 44%); transform: scale(1); }
.js.motion-armed.poster-ready .hero__scrim,
.js.motion-armed.poster-ready .hero__roundel,
.js.motion-armed.poster-ready .hero__locator,
.js.motion-armed.poster-ready .hero__lead,
.js.motion-armed.poster-ready .hero__actions,
.js.motion-armed.poster-ready .hero__hours { opacity: 1; }
.js.motion-armed.poster-ready .hero__word .line > span,
.js.motion-armed.poster-ready .hero__sub { transform: translateY(0); }
.js.motion-armed.poster-ready .hero__word .line:nth-child(2) > span { transition-delay: .12s; }
.js.motion-armed.poster-ready .hero__sub { transition-delay: .3s; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: clamp(3.4rem, 9vw, 7.5rem); }
.section--tight { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.section--paper { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--green-950); color: var(--cream); }
.section--green { background: var(--green-700); color: var(--paper); }
.section + .section--dark, .section--dark + .section { border-top: 1px solid rgba(0,0,0,.06); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.on-dark .rule { background: var(--line-on-dark); }

/* split: image + text */
.split { display: grid; gap: clamp(1.6rem, 5vw, 4.4rem); align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split--reverse > :first-child { order: 2; }
  .split--wide-media { grid-template-columns: 1.25fr .75fr; }
}
.split__media { position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.frame { overflow: hidden; border-radius: var(--radius); background: var(--cream-dim); }
.frame--tall { aspect-ratio: 4 / 5; }
.frame--wide { aspect-ratio: 3 / 2; }
.frame--square { aspect-ratio: 1 / 1; }
.media-caption { font-size: var(--step--1); color: rgba(28,32,24,.6); margin-top: .7rem; letter-spacing: .04em; }
.on-dark .media-caption { color: rgba(230,225,214,.62); }

/* signature beat 2: one bounded semantic reveal (the place heading) */
[data-beat="semantic"] .line { display: block; overflow: hidden; }
[data-beat="semantic"] .line > span { display: block; }
[data-beat="semantic"] .reveal-follow { opacity: 1; }
.js.motion-armed [data-beat="semantic"] .line > span { transform: translateY(116%); transition: transform .95s var(--ease-out); }
.js.motion-armed [data-beat="semantic"] .reveal-follow { opacity: 0; transform: translateY(22px); transition: opacity .8s ease .28s, transform .8s var(--ease-out) .28s; }
.js.motion-armed [data-beat="semantic"].is-in .line > span { transform: translateY(0); }
.js.motion-armed [data-beat="semantic"].is-in .line:nth-child(2) > span { transition-delay: .1s; }
.js.motion-armed [data-beat="semantic"].is-in .reveal-follow { opacity: 1; transform: none; }

.place-lead { margin-top: 1.6rem; }
.place-meta {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line); font-size: var(--step--1); letter-spacing: .06em;
}
.place-meta div { display: flex; gap: .5em; align-items: baseline; }
.place-meta b { font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-size: .82em; }

/* highlights strip */
.highlights { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 700px) { .highlights { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .highlights { grid-template-columns: repeat(4, 1fr); } }
.highlight { background: var(--paper); padding: clamp(1.3rem, 3vw, 2.1rem); display: flex; flex-direction: column; gap: .7rem; }
.highlight__num { font-family: var(--ff-display); font-size: var(--step-1); color: var(--gold); }
.highlight h3 { font-size: var(--step-1); line-height: 1.12; }
.highlight p { font-size: var(--step--1); color: rgba(28,32,24,.76); }

/* teaser cards */
.teasers { display: grid; gap: clamp(1.2rem, 3vw, 2.4rem); }
@media (min-width: 820px) { .teasers { grid-template-columns: repeat(2, 1fr); } }
.teaser { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.teaser .frame { margin-bottom: 1.3rem; }
.teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.teaser:hover img { transform: scale(1.045); }
.teaser h3 { font-size: var(--step-2); margin-bottom: .5rem; }
.teaser p { font-size: var(--step-0); color: rgba(28,32,24,.78); }
.teaser .link-arrow { margin-top: 1rem; align-self: flex-start; }

/* fact list */
.facts { display: grid; gap: 0; border-top: 1px solid var(--line); margin: 0; }
.fact { display: grid; gap: .3rem 1.6rem; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 620px) { .fact { grid-template-columns: minmax(120px, 26%) 1fr; align-items: baseline; } }
.fact dt { font-size: var(--step--1); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.fact dd { margin: 0; font-size: var(--step-0); }
.on-dark .facts, .on-dark .fact { border-color: var(--line-on-dark); }
.on-dark .fact dt { color: var(--cream-dim); }

/* hours card */
.hours { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.hours__row { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1.1rem; font-size: var(--step-0); }
.hours__row + .hours__row { border-top: 1px solid var(--line); }
.hours__row span:first-child { color: rgba(28,32,24,.72); letter-spacing: .04em; }
.hours__row strong { font-weight: 600; }
.hours__row--muted span, .hours__row--muted strong { color: rgba(28,32,24,.55); }
.on-dark .hours, .on-dark .hours__row { border-color: var(--line-on-dark); }
.on-dark .hours__row span:first-child { color: rgba(230,225,214,.7); }

/* contact info blocks */
.infolist { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 760px) { .infolist { grid-template-columns: repeat(3, 1fr); } }
.infobox { background: var(--paper); padding: clamp(1.2rem, 3vw, 1.9rem); display: flex; flex-direction: column; gap: .45rem; }
.infobox__label { font-size: var(--step--1); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.infobox__value { font-family: var(--ff-display); font-size: var(--step-1); line-height: 1.24; }
.infobox a { text-decoration: none; border-bottom: 1px solid var(--line); }
.infobox a:hover { border-color: currentColor; }

/* map */
.map-block { margin-top: clamp(1.4rem, 4vw, 2.4rem); }
.map-frame {
  position: relative; width: 100%; height: clamp(300px, 46vh, 460px);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--cream);
}
.map-frame iframe { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; border: 0; }
/* a resting layer stays visible when the embed cannot load */
.map-frame__rest {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; justify-content: flex-end; gap: .35rem;
  padding: clamp(1.1rem, 3vw, 1.8rem) clamp(1.1rem, 3vw, 1.8rem) 3.9rem;
  background: linear-gradient(140deg, var(--cream), var(--cream-dim));
}
.map-frame__rest b { font-family: var(--ff-display); font-weight: 400; font-size: var(--step-1); }
.map-frame__rest span { font-size: var(--step--1); color: rgba(28, 32, 24, .7); }
.map-fallback {
  position: absolute; inset: auto 1rem 1rem auto; z-index: 2;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .55rem .9rem; font-size: var(--step--1);
}

/* arrival tips — auto-fit so 2-item and 4-item sets both fill the row */
.tips { display: grid; gap: 1px; background: var(--line-on-dark); border: 1px solid var(--line-on-dark); border-radius: var(--radius); overflow: hidden; margin-top: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.tip { background: var(--green-700); padding: clamp(1.1rem, 2.6vw, 1.7rem); }
.tip h3 { font-size: var(--step-1); margin-bottom: .5rem; color: var(--paper); }
.tip p { font-size: var(--step--1); color: rgba(246,243,236,.86); }
.section--dark .tip { background: var(--green-900); }

/* side-by-side media pair: keeps a two-image column the same height as its text */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.6rem, 1.6vw, 1rem); }
.duo .frame { aspect-ratio: 3 / 4; }
.duo img { width: 100%; height: 100%; object-fit: cover; }

/* menu pdf */
.menucard {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.6rem;
  border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.9rem); background: var(--paper);
}
.menucard h3 { font-size: var(--step-1); }
.menucard p { font-size: var(--step--1); margin: .35rem 0 0; }

/* cookie band (in-flow, never a fixed overlay) */
.cookie { background: var(--green-950); color: var(--cream); border-top: 1px solid var(--line-on-dark); }
.cookie__inner { display: grid; gap: 1rem; padding-block: 1.3rem; }
@media (min-width: 860px) { .cookie__inner { grid-template-columns: 1fr auto; align-items: center; } }
.cookie p { font-size: var(--step--1); margin: 0; max-width: 70ch; color: rgba(230,225,214,.86); }
.cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie a { color: var(--paper); }
.cookie.is-dismissed { display: none; }

/* footer */
.site-footer { background: var(--green-900); color: var(--cream); padding-block: clamp(2.6rem, 6vw, 4.4rem) 1.6rem; }
.footer__grid { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer__brand img { width: 62px; height: 62px; margin-bottom: 1rem; }
.footer__brand p { font-size: var(--step--1); color: rgba(230,225,214,.8); max-width: 34ch; }
.footer h2 { font-size: var(--step--1); letter-spacing: .2em; text-transform: uppercase; font-family: var(--ff-text); font-weight: 600; color: var(--cream-dim); margin-bottom: 1rem; }
.footer ul { display: grid; gap: .55rem; font-size: var(--step-0); }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--paper); text-decoration: underline; }
.footer__bottom {
  margin-top: clamp(2rem, 5vw, 3.2rem); padding-top: 1.3rem; border-top: 1px solid var(--line-on-dark);
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  font-size: var(--step--1); color: rgba(230,225,214,.68);
}
.footer__lang { display: flex; gap: .8rem; }

/* page head (interior pages) */
.page-head { background: var(--green-950); color: var(--cream); position: relative; overflow: hidden; }
.page-head__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-head__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,37,27,.72), rgba(32,37,27,.86)); }
.page-head__body { position: relative; z-index: 2; padding-block: clamp(3rem, 9vw, 6rem) clamp(2.4rem, 6vw, 4rem); }
.page-head h1 { font-size: var(--step-5); color: var(--paper); max-width: 20ch; }
.page-head .lede { margin-top: 1.2rem; max-width: 56ch; color: rgba(230,225,214,.9); }
.breadcrumb { font-size: var(--step--1); letter-spacing: .16em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 1.2rem; display: flex; gap: .6em; flex-wrap: wrap; }
.breadcrumb a { text-decoration: none; }
.breadcrumb span { opacity: .5; }

/* intro block */
.intro-note { border-left: 2px solid var(--gold); padding-left: 1.1rem; font-size: var(--step-0); color: rgba(28,32,24,.8); }
.on-dark .intro-note { color: rgba(230,225,214,.84); border-color: var(--gold-soft); }

/* ==========================================================================
   Reduced motion — show the finished poster and all text immediately
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
  }
  .js.motion-armed .hero__img { clip-path: none !important; transform: none !important; }
  .js.motion-armed .hero__scrim,
  .js.motion-armed .hero__roundel,
  .js.motion-armed .hero__locator,
  .js.motion-armed .hero__lead,
  .js.motion-armed .hero__actions,
  .js.motion-armed .hero__hours { opacity: 1 !important; }
  .js.motion-armed .hero__word .line > span,
  .js.motion-armed .hero__sub { transform: none !important; }
  .js.motion-armed [data-beat="semantic"] .line > span { transform: none !important; }
  .js.motion-armed [data-beat="semantic"] .reveal-follow { opacity: 1 !important; transform: none !important; }
  .js.motion-armed .hero__img { transition: none !important; }
}

/* ==========================================================================
   Mobile focal reframing
   ========================================================================== */
@media (max-width: 768px) {
  /* the sticky header is in flow: keep header + poster inside one first viewport */
  .hero__poster { min-height: calc(100svh - 76px); }
  .hero__body {
    min-height: calc(100svh - 76px); justify-content: flex-end;
    gap: 1rem; padding-block: 2.6rem 1.6rem;
  }
  /* the terrace furniture and flowers become the subject on a tall screen */
  .hero__img { object-position: 62% 62%; }
  .hero__word { font-size: clamp(3rem, 16vw, 5.4rem); max-width: 100%; }
  .hero__sub { font-size: var(--step-1); }
  .hero__roundel { width: 54px; opacity: .85; }
  .hero__lead { font-size: var(--step--1); }
  .js.motion-armed .hero__img { clip-path: circle(10% at 62% 40%); }
  .js.motion-armed.poster-ready .hero__img { clip-path: circle(150% at 62% 40%); }
  .brand__name small { display: none; }
}
@media (max-width: 420px) {
  .hero__locator { letter-spacing: .14em; }
  .btn { padding: .78em 1.15em; }
}
