/* ============================================================
   MATIN JA LIISAN ASEMA — Lapinlahti
   Real brand: slate grey · lime green (#66d803) · white · warm paper
   Lightweight: no cursor, no canvas, no preloader. SVG icons.
   ============================================================ */

/* Omat fontit, ei Google Fontsia. WOFF2 on häviötön pakkaus samasta datasta: kirjaimet
   ovat pikselilleen samat kuin TTF:ssä, mutta lataus on noin 60 % pienempi.
   IBM Plex Sansista ei ladata erillistä kursiivia (580 kt yhtä riviä varten) — selain
   kallistaa sen itse. Playfairin kursiivi on hero-otsikossa, joten se on aito leikkaus. */
@font-face {
  font-family: "Neo Sans Ultra";
  src: url("fonts/NeoSansUltra.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-VariableFont_wght.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("fonts/PlayfairDisplay-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #1f2228;
  --slate: #4f4f5b;
  --slate-2: #43434e;
  --slate-d: #34343d;
  --paper: #f5f3ed;
  --paper-2: #ebe6da;
  --card: #ffffff;
  --muted: #2b2d33;        /* darker for stronger contrast */
  --lime: #66d803;         /* brand green */
  --lime-d: #367800;       /* readable green on light (AA contrast) */
  --lime-ink: #16240a;     /* text on lime */
  --edenred: #e2231a;
  --line: rgba(31, 34, 40, 0.13);
  --line-soft: rgba(31, 34, 40, 0.07);

  --title: "Neo Sans Ultra", "IBM Plex Sans", system-ui, sans-serif;
  --display: "IBM Plex Sans", system-ui, sans-serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;   /* hero-otsikon korkeakontrastinen antiikva */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
  --pad: clamp(1.4rem, 5vw, 6rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }
body { background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }
[hidden] { display: none !important; }   /* class display rules must not override the hidden attribute (media bar/credit) */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: var(--lime-ink); }

/* ============ ICONS ============ */
.ic { width: 1.1em; height: 1.1em; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.18em; flex: none; }

/* ============ SHARED TYPE ============ */
/* section eyebrows — simple label above each title, matching the nav wording */
.sign { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime-d); margin-bottom: 0.9rem; }
.sign .ic { width: 1.05em; height: 1.05em; color: var(--lime-d); }
.lunch .sign, .sign--glass { color: var(--lime); }
.lunch .sign .ic { color: var(--lime); }

.section-title { font-family: var(--title); font-weight: 700; font-size: clamp(2rem, 5.1vw, 3.7rem); line-height: 1.02; letter-spacing: -0.015em; color: var(--ink); }
.section-title.light { color: #fff; }
.section-title .hl { color: var(--lime-d); }
.section-title.light .hl { color: var(--lime); }
.light-dim { color: rgba(255,255,255,0.9) !important; }

/* ============ BUTTONS ============ */
.btn { position: relative; display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; padding: 0.95em 1.6em; border-radius: 11px; border: 2px solid transparent; cursor: pointer; transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.35s, border-color 0.3s; }
.btn .ic { transition: transform 0.35s var(--ease); }
.btn--primary { background: var(--lime); color: var(--lime-ink); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -12px rgba(102,216,3,0.7); }
.btn--primary:hover .ic { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-3px); }
.btn--nav { background: transparent; color: #fff; padding: 0.65em 1.15em; font-size: 0.85rem; border-color: rgba(255,255,255,0.5); }
.btn--nav:hover { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.btn--nav:hover .ic { transform: translateX(3px); }
.nav.is-scrolled .btn--nav { color: var(--ink); border-color: var(--line); }
.nav.is-scrolled .btn--nav:hover { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.btn--lg { padding: 1.1em 2.1em; font-size: 1.05rem; }

.link-underline { position: relative; font-weight: 700; color: var(--lime-d); padding-bottom: 3px; display: inline-block; }
.link-underline::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease); }
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ============ NAV ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; gap: 2rem; padding: 1rem var(--pad); transition: padding 0.5s var(--ease), background 0.5s, box-shadow 0.5s; }
.nav.is-scrolled { padding: 0.55rem var(--pad); background: rgba(244,242,236,0.72); backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3); box-shadow: 0 6px 22px -18px rgba(0,0,0,0.6); }
.nav__brand { position: relative; height: 62px; display: flex; align-items: center; }
.nav__logo { height: 62px; width: auto; transition: opacity 0.4s; }
.nav__logo--dark { position: absolute; left: 0; opacity: 0; }
.nav.is-scrolled .nav__logo--light { opacity: 0; }
.nav.is-scrolled .nav__logo--dark { opacity: 1; }
.nav__links { margin-left: auto; display: flex; gap: 1.8rem; }
.nav__links a { position: relative; font-size: 0.9rem; font-weight: 600; color: #fff; opacity: 0.9; transition: color 0.3s, opacity 0.3s; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.nav.is-scrolled .nav__links a { color: var(--ink); text-shadow: none; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--lime); border-radius: 2px; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { opacity: 1; }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__burger { display: none; margin-left: auto; width: 34px; height: 24px; background: none; border: none; cursor: pointer; position: relative; z-index: 110; }
.nav__burger span { display: block; width: 100%; height: 2.5px; background: #fff; border-radius: 3px; transition: transform 0.4s var(--ease), opacity 0.3s, background 0.4s; box-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.nav.is-scrolled .nav__burger span { background: var(--ink); box-shadow: none; }
.nav__burger span + span { margin-top: 6px; }
.nav__burger.is-open span { background: #fff; box-shadow: none; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu { position: fixed; inset: 0; z-index: 95; background: var(--slate); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: var(--pad); clip-path: circle(0% at 100% 0); transition: clip-path 0.7s var(--ease); pointer-events: none; }
.mobile-menu.is-open { clip-path: circle(150% at 100% 0); pointer-events: auto; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.1rem; }
.mobile-menu__links a { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 8vw, 2.8rem); padding: 0.3rem 0; display: flex; align-items: baseline; gap: 1rem; opacity: 0; transform: translateY(24px); }
.mobile-menu.is-open .mobile-menu__links a { animation: mmIn 0.55s var(--ease) forwards; }
.mobile-menu.is-open a:nth-child(1){animation-delay:.14s}.mobile-menu.is-open a:nth-child(2){animation-delay:.2s}.mobile-menu.is-open a:nth-child(3){animation-delay:.26s}.mobile-menu.is-open a:nth-child(4){animation-delay:.32s}.mobile-menu.is-open a:nth-child(5){animation-delay:.38s}.mobile-menu.is-open a:nth-child(6){animation-delay:.44s}
@keyframes mmIn { to { opacity: 1; transform: none; } }
.mm-num { font-family: var(--sans); font-size: 0.8rem; font-weight: 700; color: var(--lime); }
.mobile-menu__foot { margin-top: 2.5rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.9; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--lime), var(--lime-d)); z-index: 200; will-change: transform; }

/* ============ HERO (full-bleed aerial) ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--slate-d); }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--slate-d); }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero__slide.is-active { opacity: 1; animation: kenburns 22s linear both; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero__slide--right { object-position: 78% center; }   /* veturi on kuvan oikeassa laidassa */
@media (prefers-reduced-motion: reduce) { .hero__slide.is-active { animation: none; } }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(22,24,29,0.55) 0%, rgba(22,24,29,0) 24%, rgba(22,24,29,0.34) 58%, rgba(22,24,29,0.88) 100%),
  radial-gradient(130% 80% at 8% 112%, rgba(22,24,29,0.65), transparent 58%); }

.hero__award { position: absolute; z-index: 3; right: var(--pad); top: clamp(5.5rem, 12vw, 8rem); width: clamp(160px, 22vw, 220px); height: auto; filter: drop-shadow(0 12px 26px rgba(0,0,0,0.3)); animation: medalIn 0.9s var(--ease); }
@media (max-width: 700px) { .hero__award { width: 150px; top: 4.9rem; right: 1.1rem; } }
/* hero-napit vierekkäin puhelimessa: pinottuina ne veivät kolmanneksen kuvasta */
@media (max-width: 560px) {
  .hero__actions { flex-wrap: nowrap; gap: 0.5rem; }
  .hero__actions .btn { font-size: 0.8rem; padding: 0.75em 1em; gap: 0.4em; }
}

.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(3rem, 7vw, 5rem); }
.hero__content { max-width: 40ch; }
@media (min-width: 860px) { .hero__content { max-width: 52ch; } }
.hero__title { font-family: var(--serif); font-weight: 800; font-size: clamp(2.3rem, 7.4vw, 5.6rem); line-height: 1; letter-spacing: -0.015em; color: #fff; margin-bottom: 0.9rem; hyphens: manual; text-shadow: 0 2px 6px rgba(0,0,0,0.5), 0 6px 34px rgba(0,0,0,0.55); }
/* oma rivi ja aina yhtenä pätkänä; "Mualiman&shy;matkoojan" katkeaa vain merkityssä kohdassa */
.hero__title em { display: block; white-space: nowrap; font-style: italic; color: var(--lime); }
.hero__dialect { font-family: var(--display); font-style: italic; font-weight: 600; font-size: clamp(1.05rem, 2vw, 1.4rem); color: rgba(255,255,255,0.95); margin-bottom: 1.1rem; text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 2px 18px rgba(0,0,0,0.5); }
.hero__text { color: rgba(255,255,255,0.92); margin-bottom: 1.8rem; text-shadow: 0 1px 4px rgba(0,0,0,0.55); font-size: 1.05rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__hours { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.3rem 1.1rem; margin-top: 1.4rem; font-size: 0.94rem; font-weight: 600; color: rgba(255,255,255,0.95); text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.hero__hours .ic { width: 1.15em; height: 1.15em; color: var(--lime); }
.hero__fact { display: inline-flex; align-items: center; gap: 0.45em; white-space: nowrap; }

.sign--glass { color: #fff; }
.btn--glass { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--glass:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-3px); }

.hero__scroll { position: absolute; z-index: 2; left: 50%; bottom: 1.15rem; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 0.6em; padding: 0.6em 1.15em; color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; border-radius: 100px; border: 1px solid rgba(255,255,255,0.45); background: rgba(24,26,31,0.42); backdrop-filter: blur(6px); transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease); }
.hero__scroll:hover { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); transform: translateX(-50%) translateY(-3px); }
.hero__scroll .ic { width: 1.05rem; height: 1.05rem; animation: heroBob 1.6s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .hero__scroll .ic { animation: none; } }
@keyframes heroBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-width: 820px) { .hero__scroll { display: none; } }

/* ============ ÄÄNESTYSBANNERI (ajastettu, ks. data.js vote) ============ */
.vote { background: var(--slate); color: #fff; border-top: 3px solid var(--lime); }
.vote__inner { max-width: var(--maxw); margin: 0 auto; padding: 1.6rem var(--pad); display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.vote__logo { width: 170px; height: auto; flex: 0 0 auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35)); }
.vote__text { flex: 1 1 260px; }
.vote__kicker { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lime); display: flex; align-items: center; gap: 0.5em; }
.vote__kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: votePulse 1.8s ease-in-out infinite; }
@keyframes votePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .vote__kicker::before { animation: none; } }
.vote__title { font-family: var(--display); font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.1; margin: 0.25rem 0 0.3rem; }
.vote__sub { font-size: 0.95rem; color: rgba(255,255,255,0.78); max-width: 52ch; }
.vote__btn { flex: 0 0 auto; }

/* Lähtölaskenta: neljä numerolaatikkoa, luku korostettuna limellä */
.vote__count-label { margin-top: 0.9rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.vote__clock { display: flex; gap: 0.5rem; margin-top: 0.45rem; }
.vclock { display: flex; flex-direction: column; align-items: center; min-width: 3.4rem; padding: 0.5rem 0.3rem 0.4rem; border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); }
.vclock b { font-family: var(--display); font-size: 1.7rem; line-height: 1; color: var(--lime); font-variant-numeric: tabular-nums; }
.vclock i { font-style: normal; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.3rem; }

/* Mobiilissa koko banneri keskitetään: logo, teksti, laskuri ja nappi allekkain */
@media (max-width: 760px) {
  .vote__inner { flex-direction: column; text-align: center; gap: 1rem; }
  .vote__logo { width: 130px; }
  .vote__text { flex: 1 1 auto; }
  .vote__kicker { justify-content: center; }
  .vote__sub { margin-inline: auto; }
  .vote__clock { justify-content: center; }
  .vote__btn { width: 100%; justify-content: center; }
}

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; background: var(--slate); color: #fff; padding: 0.85rem 0; }
.marquee__track { display: flex; gap: 2.2rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 2.2vw, 1.45rem); display: inline-flex; align-items: center; gap: 2.2rem; }
.marquee__track span::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ WEEK / LOUNASLISTA ============ */
.week { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 6.5rem) var(--pad) clamp(3rem, 7vw, 5rem); }
.week__head { margin-bottom: 2.1rem; }
.week__badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }
.week__pill { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.9rem; font-weight: 600; color: var(--ink); background: var(--card); border: 1px solid var(--line); padding: 0.5em 1em; border-radius: 100px; }
.week__pill .ic { color: var(--lime-d); }
.week__today { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em; color: var(--lime-ink); background: var(--lime); padding: 0.5em 1em; border-radius: 100px; }
.week__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.week__list li { display: flex; align-items: center; gap: 1.1rem; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem 1.15rem; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
.week__list li:hover { transform: translateY(-3px); border-color: var(--lime); box-shadow: 0 16px 30px -22px rgba(31,34,40,0.5); }
.week__day { font-family: var(--display); font-weight: 800; font-size: 0.95rem; color: var(--lime-d); background: rgba(102,216,3,0.12); width: 2.9rem; height: 2.9rem; display: grid; place-items: center; border-radius: 10px; flex: none; }
.week__dish { font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.35; }
.week__list li.is-today { background: var(--slate); border-color: var(--slate); box-shadow: 0 18px 36px -20px rgba(31,34,40,0.6); }
.week__list li.is-today .week__day { background: var(--lime); color: var(--lime-ink); }
.week__list li.is-today .week__dish { color: #fff; }
.week__list li.is-today::after { content: "Tänään"; margin-left: auto; align-self: flex-start; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); flex: none; }
.week__foot { margin-top: 1.6rem; color: var(--muted); font-size: 0.9rem; }

/* ============ LUNCH ============ */
.lunch { background: var(--slate); color: #fff; }
.lunch__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 6rem) var(--pad) clamp(2.5rem, 6vw, 3.5rem); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.lunch__text > p { margin-top: 1.2rem; max-width: 52ch; }
.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 2rem 0 1.3rem; }
.prices__h { font-family: var(--display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime); margin-bottom: 0.7rem; }

/* weekly list board (inside dark lunch section) */
.lweek { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(4rem, 10vw, 6rem); }
.lweek__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; padding-top: clamp(2.5rem, 6vw, 4rem); border-top: 1px solid rgba(255,255,255,0.16); }
.lweek__title { font-family: var(--title); font-weight: 700; font-size: clamp(1.6rem, 3.6vw, 2.4rem); color: #fff; letter-spacing: -0.01em; }
.lweek__meta { display: flex; align-items: center; gap: 0.9rem 1.3rem; flex-wrap: wrap; }
.lweek__wk { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--lime-ink); background: var(--lime); padding: 0.4em 0.9em; border-radius: 100px; }
.lweek__wk b { font-family: var(--display); }
.lweek__dates { font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.72); }
.lweek__time { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.92); }
.lweek__time .ic { color: var(--lime); }
.lweek__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 1.8rem; }
.lweek__list li { display: flex; align-items: baseline; gap: 1rem; padding: 0.85rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.lweek__d { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--lime); flex: 0 0 6rem; }
.lweek__dish { color: rgba(255,255,255,0.9); font-size: 0.97rem; line-height: 1.4; }
.lweek__list li.is-past { opacity: 0.42; }
.lweek__list li.is-past .lweek__d { color: rgba(255,255,255,0.6); }
.lweek__list li.is-today { background: rgba(102,216,3,0.15); border-bottom-color: transparent; border-radius: 10px; padding-left: 0.9rem; padding-right: 0.9rem; position: relative; }
.lweek__list li.is-today::before { content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px; background: var(--lime); border-radius: 3px; }
.lweek__list li.is-today .lweek__d { color: #fff; }
.lweek__list li.is-today::after { content: "Tänään"; margin-left: auto; align-self: center; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lime-ink); background: var(--lime); padding: 0.28em 0.6em; border-radius: 100px; flex: none; }
.lweek__note { margin-top: 1.5rem; display: flex; align-items: flex-start; gap: 0.55em; color: rgba(255,255,255,0.78); font-size: 0.9rem; }
.lweek__note .ic { color: var(--lime); flex: none; margin-top: 0.15em; }
@media (max-width: 760px) { .lweek__list { grid-template-columns: 1fr; } }
.prow { display: flex; justify-content: space-between; gap: 0.8rem; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.94rem; color: rgba(255,255,255,0.85); }
.prow b { font-family: var(--display); font-weight: 700; color: #fff; white-space: nowrap; }
.lunch__extra { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.lunch__extra span { display: flex; align-items: center; gap: 0.6em; }
.lunch__extra .ic { color: var(--lime); }
.lunch__extra b { color: #fff; }

.lunch__side { position: relative; }
.lunch__photo { border-radius: 18px; overflow: hidden; border: 5px solid #fff; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.6); aspect-ratio: 3/2; }
.lunch__photo img { width: 100%; height: 100%; object-fit: cover; }
.lunch__badge { position: absolute; bottom: -32px; left: -24px; width: clamp(170px, 32vw, 240px); height: auto; filter: drop-shadow(0 16px 28px rgba(0,0,0,0.3)); animation: medalIn 0.9s var(--ease); }
@keyframes medalIn { from { transform: scale(0.85) rotate(-8deg); opacity: 0; } to { transform: none; opacity: 1; } }

/* ============ SERVICES ============ */
.services { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 6.5rem) var(--pad); }
.services__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.services__intro { color: var(--muted); margin-top: 1.2rem; }
.acc { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.acc__item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s; }
.acc__item[open] { border-color: var(--lime); box-shadow: 0 20px 40px -26px rgba(35,38,44,0.35); }
.acc__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.4rem; user-select: none; }
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary:hover .acc__title { color: var(--lime-d); }
.acc__ic { width: 1.7rem; height: 1.7rem; color: var(--lime-d); flex: none; }
.acc__title { font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); flex: 1 1 auto; transition: color 0.3s; }
.acc__hours { display: inline-flex; align-items: center; gap: 0.4em; font-size: 0.8rem; font-weight: 700; color: var(--lime-d); background: rgba(102,216,3,0.12); padding: 0.35em 0.8em; border-radius: 100px; white-space: nowrap; }
.acc__hours .ic { width: 1em; height: 1em; }
.acc__chev { width: 1.3rem; height: 1.3rem; color: var(--muted); flex: none; transition: transform 0.35s var(--ease), color 0.3s; }
.acc__item[open] .acc__chev { transform: rotate(180deg); color: var(--lime-d); }
.acc__body { padding: 0 1.4rem 1.4rem calc(1.4rem + 1.7rem + 1rem); }
.acc__body p { color: var(--muted); margin-bottom: 0.7rem; }
.acc__body p:last-child { margin-bottom: 0; }
.acc__body b { color: var(--ink); }
.acc__item[open] .acc__body { animation: accIn 0.4s var(--ease); }
/* services accordion: text + photo side by side */
.services .acc__body { display: grid; grid-template-columns: 1fr minmax(190px, 250px); gap: 1.6rem; align-items: start; }
.acc__media { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; align-self: stretch; }
.acc__media img { width: 100%; height: 100%; object-fit: cover; }
.acc__media--ph { display: grid; place-items: center; gap: 0.4rem; background: linear-gradient(140deg, var(--slate), var(--slate-d)); color: var(--lime); text-align: center; }
.acc__media--ph .ic { width: 2.6rem; height: 2.6rem; }
.acc__media--ph span { font-family: var(--display); font-weight: 700; font-size: 0.85rem; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }
@media (max-width: 620px) { .services .acc__body { grid-template-columns: 1fr; } .acc__media { aspect-ratio: 16/9; } }
/* Desktop: lay the service cards partly side by side (more room than mobile) */
@media (min-width: 1000px) {
  .services .acc { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; align-items: start; max-width: 1180px; }
  .services .acc__body { grid-template-columns: 1fr; }        /* narrower column → image sits below the text */
  .services .acc__item--full { grid-column: 1 / -1; }         /* Scanburger (image gallery) spans full width */
}
@keyframes accIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============ STORY / YRITYS ============ */
.story { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 7rem) var(--pad); }
.story__top { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.story__media { position: sticky; top: 90px; }
@media (max-width: 820px) { .story__top { grid-template-columns: 1fr; } .story__media { position: relative; top: 0; width: 100%; max-width: 420px; justify-self: center; margin-bottom: 0.5rem; } }
.acc__hint { color: var(--muted); font-weight: 600; margin: 1.6rem 0 0.9rem; }
.story__img { border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px -34px rgba(31,34,40,0.5); aspect-ratio: 4/5; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__ticket { position: absolute; right: 14px; bottom: -16px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; background: var(--slate); color: #fff; border-radius: 14px; padding: 0.85rem 1.3rem; box-shadow: 0 18px 32px -18px rgba(0,0,0,0.45); border-left: 4px solid var(--lime); }
.story__ticket-hole { display: none; }
.story__ticket b { font-family: var(--display); font-weight: 800; letter-spacing: 0.16em; font-size: 0.85rem; color: var(--lime); }
.story__ticket i { font-style: normal; font-size: 0.78rem; color: rgba(255,255,255,0.82); }
.story__text > p { color: var(--muted); margin-top: 1.3rem; }
.acc--story { max-width: none; margin: 1.8rem 0 0; gap: 0.6rem; }
.acc--story .acc__body { padding-left: calc(1.4rem + 1.7rem + 1rem); }

/* ============ STORY STATS ============ */
/* lunch placeholder image strip (bland tiles until real photos land) */
.lunch__gallery { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-bottom: clamp(2rem, 5vw, 3rem); }
.lphoto { position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.lphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.lphoto:hover img { transform: scale(1.06); }
.lphoto figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 0.8rem 0.55rem; font-family: var(--display); font-weight: 700; font-size: 0.82rem; color: #fff; background: linear-gradient(0deg, rgba(20,22,26,0.82), transparent); }
@media (max-width: 640px) { .lunch__gallery { grid-template-columns: 1fr 1fr; } }

/* ============ MAP (Google embed) ============ */
.visit__mapbtns { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
/* "ei polttoainetta" pitää erottua: se on tieto jonka takia matkalainen ei pety pihassa */
/* .hrow tuo jo oman erotinviivansa — oma border-top teki tuplaviivan ja ylimääräisen välin.
   Kaksi luokkaa, koska myöhempi .hrow b voittaisi muuten saman tarkkuuden takia. */
.hrow.hrow--note b { color: var(--edenred); }

/* ============ CONTACT ============ */
.contact { background: var(--paper-2); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 10vw, 6.5rem) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
.contact__text > p { color: var(--muted); margin-top: 1.2rem; max-width: 42ch; }
.contact__info { list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact__info li { display: flex; align-items: center; gap: 0.7em; color: var(--ink); }
.contact__info .ic { color: var(--lime-d); flex: none; }
.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.5rem, 4vw, 2.3rem); display: flex; flex-direction: column; gap: 1.4rem; box-shadow: 0 24px 50px -34px rgba(35,38,44,0.4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { position: relative; }
.field input, .field textarea { width: 100%; background: transparent; border: none; border-bottom: 1.5px solid var(--line); color: var(--ink); font-family: var(--sans); font-size: 1rem; padding: 0.8rem 0 0.5rem; outline: none; resize: none; }
.field textarea { min-height: 3rem; }
.field label { position: absolute; left: 0; top: 0.8rem; color: var(--muted); font-size: 1rem; pointer-events: none; transition: all 0.35s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: -0.7rem; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime-d); }
.field__line { position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.field input:focus ~ .field__line, .field textarea:focus ~ .field__line { transform: scaleX(1); }
.field select { width: 100%; background: transparent; border: none; border-bottom: 1.5px solid var(--line); color: var(--ink); font-family: var(--sans); font-size: 1rem; padding: 0.8rem 0 0.5rem; outline: none; cursor: pointer; }
.field select option { color: #111; }
.field--select label { top: -0.7rem; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime-d); }
.field select:focus ~ .field__line { transform: scaleX(1); }
/* Ryhmävarauksen lisäkentät: näkyvät vain kun aihe on "Ryhmät ja bussit" */
.group-fields { border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.15rem 1.2rem; background: var(--paper); display: flex; flex-direction: column; gap: 1.4rem; animation: accIn 0.35s var(--ease); }
.group-fields__h { font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime-d); }
/* date/time näyttävät aina arvon, joten leijuva label ei voi olla alhaalla */
.field--filled label { top: -0.7rem; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime-d); }
.field input[type="date"], .field input[type="time"] { width: 100%; background: transparent; border: none; border-bottom: 1.5px solid var(--line); color: var(--ink); font-family: var(--sans); font-size: 1rem; padding: 0.8rem 0 0.5rem; outline: none; }
.field__hint { display: block; margin-top: 0.5rem; font-size: 0.8rem; color: var(--muted); }
@media (max-width: 400px) { .group-fields { padding: 0.9rem; gap: 1.2rem; } }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }   /* honeypot: off-screen, not display:none so bots still fill it */
.btn--block { width: 100%; justify-content: center; }
.contact__reply { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.9rem; }
.contact__success { color: var(--lime-d); font-weight: 600; background: rgba(102,216,3,0.12); border: 1px solid rgba(102,216,3,0.4); padding: 0.9rem 1.1rem; border-radius: 12px; font-size: 0.93rem; }
.contact__note { font-size: 0.82rem; color: var(--muted); }
.contact__note a { color: var(--lime-d); font-weight: 600; }

/* ============ GALLERY ============ */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 9vw, 6rem) var(--pad); }
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem 1.4rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.gallery__mediabtn { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--sans); font-weight: 700; font-size: 0.82rem; color: var(--muted); background: none; border: 1px solid var(--line); border-radius: 100px; padding: 0.55em 1.1em; cursor: pointer; transition: color .3s, border-color .3s, background .3s; }
.gallery__mediabtn .ic { width: 1.05em; height: 1.05em; }
.gallery__mediabtn:hover { color: var(--lime-d); border-color: var(--lime-d); }
.gallery.media-mode .gallery__mediabtn { color: var(--lime-ink); background: var(--lime); border-color: var(--lime); }
.gallery__bar { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem 1.4rem; flex-wrap: wrap; margin: 0 0 1.6rem; padding: 0.85rem 1.15rem; background: var(--card); border: 1px solid var(--line); border-radius: 12px; }
.gallery__bar-info { font-size: 0.9rem; color: var(--muted); max-width: 62ch; }
.gallery__bar-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.gallery__credit { display: flex; align-items: center; gap: 0.5em; margin-top: 1.3rem; font-size: 0.85rem; color: var(--muted); }
.gallery__credit .ic { color: var(--lime-d); }
.gallery.media-mode .gallery__item { cursor: pointer; }
.gallery.media-mode .gallery__item::after { opacity: 0; }
.gallery__pick { position: absolute; top: 10px; right: 10px; z-index: 4; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.9); box-shadow: 0 2px 8px rgba(0,0,0,0.35); display: none; place-items: center; color: transparent; }
.gallery.media-mode .gallery__pick { display: grid; }
.gallery__pick .ic { width: 18px; height: 18px; }
.gallery.media-mode .gallery__item.is-picked .gallery__pick { background: var(--lime); color: var(--lime-ink); }
.gallery.media-mode .gallery__item.is-picked { outline: 3px solid var(--lime); outline-offset: -3px; }
.plogo-link { display: inline-flex; align-items: center; justify-content: center; flex: none; padding: 0.8rem 1.15rem; border-radius: 16px; transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease); }
.plogo-link:hover { background: var(--card); box-shadow: 0 16px 32px -18px rgba(31,34,40,0.4); transform: translateY(-4px); }
.gallery__item.media-only { display: none; }
.gallery.media-mode .gallery__item.media-only { display: block; opacity: 1; transform: none; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: 14px; box-shadow: 0 14px 30px -20px rgba(35,38,44,0.5); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery__item::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(30,32,37,0.6), transparent 55%); opacity: 0; transition: opacity 0.5s; }
.gallery__item::after { content: attr(data-cap); position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; font-family: var(--display); font-weight: 700; font-size: 1rem; color: #fff; transform: translateY(10px); opacity: 0; transition: all 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::before { opacity: 1; }
.gallery__item:hover::after { transform: none; opacity: 1; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item { opacity: 0; transform: scale(0.95); }
.gallery__item.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

/* ============ VISIT ============ */
.visit { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 9vw, 6rem) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.visit__text p { color: var(--muted); margin-top: 1.2rem; max-width: 44ch; }
.visit__hours { margin: 2rem 0 1.6rem; border-top: 1px solid var(--line); }
.hrow { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; }
.hrow span { color: var(--muted); }
.hrow b { font-family: var(--display); font-weight: 600; color: var(--ink); text-align: right; }
.visit__map { position: relative; aspect-ratio: 1/1; border-radius: 18px; overflow: hidden; background: linear-gradient(160deg, #e6ecdd, var(--paper) 70%); border: 1px solid var(--line); display: block; box-shadow: 0 24px 50px -30px rgba(35,38,44,0.5); }
.visit__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.visit__map:hover img { transform: scale(1.03); }
.visit__map-label { position: absolute; bottom: 1.2rem; left: 1.2rem; z-index: 3; display: inline-flex; align-items: center; gap: 0.4em; background: var(--card); border: 1px solid var(--line); padding: 0.6em 1em; border-radius: 100px; font-size: 0.85rem; font-weight: 700; transition: transform 0.4s var(--ease); }
.visit__map-label .ic { width: 1em; height: 1em; color: var(--lime-d); }
.visit__map:hover .visit__map-label { transform: translateY(-3px); }

/* ============ CTA ============ */
.cta-strip { text-align: center; background: var(--slate); color: #fff; padding: clamp(4rem, 9vw, 6.5rem) var(--pad); }
.cta-strip .sign { margin-bottom: 1.4rem; }
.cta-strip h2 { font-family: var(--title); font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 2rem; letter-spacing: -0.015em; }
.cta-strip h2 .hl { color: var(--lime); }

/* ============ REVIEWS (horizontal marquee) ============ */
.reviews { background: var(--paper-2); padding: clamp(4rem, 10vw, 6.5rem) 0; }
.reviews__head { max-width: 700px; margin: 0 auto 2.4rem; padding: 0 var(--pad); text-align: center; }
.reviews__rating { margin-top: 1rem; color: var(--muted); font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5em; flex-wrap: wrap; }
.reviews__stars { color: #f5a623; letter-spacing: 2px; font-size: 1.05rem; }
.reviews__stars .star-half { color: #d9c9a0; }
.reviews__rating b { color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.reviews__head .btn { margin-top: 1.4rem; }
.rev-marquee { overflow: hidden; padding: 0.5rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.rev-track { display: flex; gap: 1.1rem; width: max-content; animation: marquee 150s linear infinite; pointer-events: none; }
.rev { width: 340px; flex: none; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; box-shadow: 0 16px 34px -30px rgba(31,34,40,0.4); }
.rev__stars { color: #f5a623; letter-spacing: 2px; font-size: 0.95rem; }
.rev__stars .star-off { color: #d9c9a0; }
.rev blockquote { color: var(--ink); font-size: 0.95rem; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.rev figcaption { display: flex; align-items: center; gap: 0.65rem; margin-top: auto; }
.rev figcaption b { font-size: 0.9rem; color: var(--ink); }
.rev__ava { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 800; background: var(--a, var(--slate)); flex: none; }
.reviews__note { max-width: var(--maxw); margin: 1.8rem auto 0; padding: 0 var(--pad); text-align: center; font-size: 0.85rem; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .rev-track { animation: none; pointer-events: auto; } .rev-marquee { overflow-x: auto; } }

/* ============ PARTNERS ============ */
.partners { background: var(--paper); padding: clamp(2.5rem, 6vw, 4rem) 0; border-top: 1px solid var(--line); }
.partners__label { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.partners__row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.partners__track { display: flex; align-items: center; gap: clamp(2.2rem, 5vw, 4rem); width: max-content; animation: marquee 60s linear infinite; }
.partners__row:hover .partners__track { animation-play-state: paused; }
.plogo { height: clamp(28px, 5vw, 40px); width: auto; object-fit: contain; opacity: 1; transition: transform 0.35s var(--ease); flex: none; }
.plogo-link:hover .plogo { transform: scale(1.07); }
@media (prefers-reduced-motion: reduce) { .partners__track { animation: none; } .partners__row { overflow-x: auto; } }

/* ============ TERVETULLOO (savolainen loppukuittaus ennen footeria) ============ */
.welcome { background: var(--paper); padding: clamp(3rem, 8vw, 5.5rem) var(--pad) clamp(3.5rem, 9vw, 6rem); text-align: center; overflow: hidden; }
.welcome__word { font-family: var(--serif); font-weight: 800; font-style: italic; font-size: clamp(3rem, 13vw, 9rem); line-height: 0.95; letter-spacing: -0.02em; color: var(--ink); }
.welcome__word span { color: var(--lime-d); }
.welcome__rule { width: clamp(70px, 12vw, 130px); height: 3px; margin: 1.5rem auto 0; border-radius: 3px; background: linear-gradient(90deg, var(--lime), var(--lime-d)); }
.welcome__sub { margin-top: 1.3rem; font-family: var(--display); font-weight: 600; font-size: clamp(0.9rem, 1.7vw, 1.05rem); color: var(--muted); }

/* ============ FOOTER ============ */
.footer { background: var(--slate); color: #fff; padding: clamp(3rem, 8vw, 5rem) var(--pad) 2rem; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer__logo { height: 52px; width: auto; }
.footer__brand p { color: rgba(255,255,255,0.6); margin-top: 1.1rem; max-width: 32ch; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__cols h3 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 1.1rem; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); transition: background 0.3s, transform 0.3s, color 0.3s; }
.footer__social a:hover { background: var(--lime); color: var(--lime-ink); transform: translateY(-2px); }
.footer__social .ic { width: 1.2rem; height: 1.2rem; }
.footer__legal { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.footer__legal a { transition: color 0.3s; }
.footer__legal a:hover { color: var(--lime); }
.footer__cols a { display: block; color: rgba(255,255,255,0.64); padding: 0.35rem 0; transition: color 0.3s, transform 0.3s var(--ease); }
.footer__cols a:hover { color: #fff; transform: translateX(5px); }
.footer__bottom { max-width: var(--maxw); margin: 2rem auto 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer__made { display: inline-flex; align-items: center; gap: 0.5em; }
.footer__made .ic { color: var(--lime); }
.footer__top-link:hover { color: var(--lime); }

/* ============ AWARD BADGES (2024 + 2025 side by side) ============ */
.badge-stack { display: flex; align-items: center; justify-content: center; gap: 0.6rem; }
.badge-stack img { position: static; flex: 0 1 auto; width: auto; max-width: calc(50% - 0.3rem); height: auto; transform: none; z-index: auto; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.25)); }
.badge-stack img.badge-stack__b2024 { transform: scale(1.2); transform-origin: center; }  /* 2024 PNG has more padding — scale up to visually match 2025 */

/* ============ LIGHTBOX (posters) ============ */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 4vw; background: rgba(20, 22, 26, 0.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.lightbox.is-open { display: grid; animation: lbIn 0.25s var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img { max-width: min(92vw, 900px); max-height: 88vh; width: auto; height: auto; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7); animation: lbImg 0.3s var(--ease); }
@keyframes lbImg { from { transform: scale(0.94); } to { transform: none; } }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.5rem; width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background 0.3s, transform 0.3s; }
.lightbox__close:hover { background: rgba(255, 255, 255, 0.32); transform: rotate(90deg); }
.newprod__tile { cursor: zoom-in; }

/* ============ NATURAL-ASPECT IMAGES (no crop, except hero) ============ */
.acc__media, .story__img, .lunch__photo, .lphoto { aspect-ratio: auto; }
.acc__media img, .story__img img, .lunch__photo img, .lphoto img, .newprod__tile img { height: auto; object-fit: fill; cursor: zoom-in; }
.newprod__tile img { aspect-ratio: auto; }
/* lounasgalleria on ruudukko: yhtenäinen suhde, muuten matalampi kuva jättää tyhjää korttiin (näkyi PC:llä).
   Rajaus koskee vain pikkukuvaa — koko kuva avautuu klikkaamalla. */
.lunch__gallery .lphoto { aspect-ratio: 4 / 3; }
.lunch__gallery .lphoto img { height: 100%; object-fit: cover; }

/* ============ GALLERY: masonry, natural aspect, load-more ============ */
.gallery__grid { display: block; column-count: 4; column-gap: 1rem; grid-template-columns: none; grid-auto-rows: auto; }
.gallery__item { display: block; width: 100%; margin: 0 0 1rem; break-inside: avoid; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 30px -20px rgba(35, 38, 44, 0.5); cursor: zoom-in; opacity: 1; transform: none; }
.gallery__item img { width: 100%; height: auto; display: block; transition: transform 1s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::before, .gallery__item::after { content: none; }
.gallery__item.is-more { display: none; }
.gallery__item.is-more.is-shown { display: block; }
.gallery.media-mode .gallery__item.is-more { display: block; }
.gallery.media-mode .gallery__more-wrap { display: none; }
.gallery__more-wrap { text-align: center; margin-top: 1.8rem; }
.gallery__more { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--sans); font-weight: 700; font-size: 0.9rem; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 0.7em 1.4em; cursor: pointer; transition: background 0.3s, color 0.3s, transform 0.3s; }
.gallery__more:hover { background: var(--slate); color: #fff; transform: translateY(-2px); border-color: var(--slate); }
.gallery__more[hidden] { display: none; }
@media (max-width: 980px) { .gallery__grid { column-count: 3; } }
@media (max-width: 640px) { .gallery__grid { column-count: 2; } }

/* ============ PARTNERS: K-Plussa reads small, give it more height ============ */
.plogo[alt="K-Plussa"] { height: clamp(56px, 9vw, 78px); }

/* ============ SECTION WAVES ============ */
.lunch, .footer, .reviews, .contact { position: relative; }
.lunch::before, .lunch::after, .footer::before {
  content: ""; position: absolute; left: 0; width: 100%; height: 46px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%234f4f5b' d='M0,48L0,26C240,44,480,8,720,22C960,36,1200,50,1440,26L1440,48Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}
/* 1px overlap: exact adjacency leaves a hairline seam on fractional device-pixel ratios (näkyi puhelimessa) */
.lunch::before, .footer::before { bottom: calc(100% - 1px); }
.lunch::after { top: calc(100% - 1px); transform: scaleY(-1); }
.reviews::before, .reviews::after, .contact::before, .contact::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 40px; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23ebe6da' d='M0,48L0,26C240,44,480,8,720,22C960,36,1200,50,1440,26L1440,48Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}
.reviews::before, .contact::before { bottom: calc(100% - 1px); }
.reviews::after, .contact::after { top: calc(100% - 1px); transform: scaleY(-1); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .lunch__inner { grid-template-columns: 1fr; }
  .lunch__side { max-width: 520px; margin-top: 1rem; }
  .lunch__side .medal { bottom: -26px; }
}
@media (max-width: 820px) {
  .nav__links, .nav .btn--nav { display: none; }
  .nav__burger { display: block; }
  .story { grid-template-columns: 1fr; }
  .story__media { max-width: 420px; }
  .week__head { align-items: flex-start; }
  .week__meta { text-align: left; }
  .cafe { grid-template-columns: 1fr; }
  .cafe__img { max-width: 460px; }
  .visit { grid-template-columns: 1fr; }
  .visit__map { max-width: 480px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 165px; }
}
@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .prices { grid-template-columns: 1fr; gap: 1rem; }
  .footer__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .week__list li { flex-wrap: wrap; gap: 0.6rem 1rem; }
  .week__list li.is-today::after { display: none; }
  .gallery__item--tall { grid-row: span 1; }
}

/* new sections */
@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .week__list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .acc__hours { display: none; }
  .acc__body { padding-left: 1.4rem; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---- mobile: more breathing room, less going on ---- */
@media (max-width: 640px) {
  p { line-height: 1.66; }

  /* a little more air between sections (esp. gallery/visit which were tighter) */
  .story, .week, .services, .gallery, .reviews, .visit { padding-top: 4.25rem; padding-bottom: 4.25rem; }
  .lunch__inner, .contact__inner { padding-top: 4.25rem; padding-bottom: 4.25rem; }

  /* hero: less crammed, easier buttons */
  .hero__inner { padding-bottom: 3.2rem; }
  .hero__text { margin-bottom: 1.6rem; }
  .hero__actions { gap: 0.7rem; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  /* story */
  .story { gap: 2.2rem; }

  /* accordion: full-width text + roomier tap targets */
  .acc { gap: 0.75rem; }
  .acc__item summary { padding: 1.15rem; gap: 0.85rem; }
  .acc__body { padding: 0 1.15rem 1.35rem; }
  .acc--story .acc__body, .services .acc__body { padding-left: 1.15rem; }
  .services .acc__body { gap: 1.3rem; }

  /* week list */
  .week__list { gap: 0.8rem; }
  .week__list li { padding: 1rem 1.1rem; }

  /* lunch: badge inline instead of overlapping the photo */
  .lunch__badge { position: static; display: flex; inset: auto; width: 190px; margin: 1.3rem auto 0; }
  .prices { gap: 1.3rem; }

  /* reviews */
  .review { padding: 1.4rem; }

  /* partners: calmer spacing */
  .partners__track { gap: 2.6rem; }
}

/* ============ ADDITIONS (lunch merge, services, media, lang) ============ */
.btn--sm { padding: 0.6em 1.15em; font-size: 0.85rem; border-radius: 9px; }

/* highlight marker */

/* new-product placeholder chips */
.newprod { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; margin-top: 1rem; }
.newprod__tile { display: block; position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.newprod__tile img { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.newprod__tile:hover img { transform: scale(1.05); }
.newprod__tile span { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.7rem 0.5rem 0.4rem; font-size: 0.72rem; font-weight: 700; color: #fff; background: linear-gradient(0deg, rgba(20,22,26,0.85), transparent); text-align: center; }
@media (max-width: 620px) { .newprod { grid-template-columns: repeat(3, 1fr); } }

/* scanburger menu gallery */
.acc__body--wide { grid-template-columns: 1fr; }
.acc__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin-top: 1.1rem; }
.acc__gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
@media (max-width: 620px) { .acc__gallery { grid-template-columns: repeat(2, 1fr); } }

.acc__gallery--two { grid-template-columns: repeat(2, 1fr); align-items: start; }   /* Kotipizza: kaksi kuvaa rinnakkain */
/* nämä näytetään kokonaisina, ei rajausta */
.acc__gallery--two img { aspect-ratio: auto; height: auto; object-fit: contain; }
@media (max-width: 620px) { .acc__gallery--two { grid-template-columns: 1fr; } }

/* media / kuvapankki */
.media { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 8vw, 5rem) var(--pad); }
.media__text { max-width: 640px; margin-bottom: 2rem; }
.media__text > p { color: var(--muted); margin-top: 1rem; }
.media__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.media__item { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--card); aspect-ratio: 4/3; }
.media__item img { width: 100%; height: 100%; object-fit: cover; }
.media__item--logo { display: grid; place-items: center; padding: 1.4rem; }
.media__item--logo img { object-fit: contain; }
.media__dl { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; gap: 0.4em; padding: 0.6em; font-size: 0.82rem; font-weight: 700; color: #fff; background: rgba(31,34,40,0.72); transition: background 0.3s; }
.media__dl:hover { background: var(--lime-d); }
.media__dl .ic { width: 1.1em; height: 1.1em; }
.media__credit { display: flex; align-items: center; gap: 0.5em; margin-top: 1.4rem; font-size: 0.82rem; color: var(--muted); }
.media__credit .ic { color: var(--lime-d); }
@media (max-width: 860px) { .media__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .media__grid { grid-template-columns: repeat(2, 1fr); } }

/* language switcher (UI only) */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 0.4em; font-family: var(--sans); font-weight: 700; font-size: 0.82rem; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,0.4); border-radius: 9px; padding: 0.5em 0.7em; cursor: pointer; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.nav.is-scrolled .lang__btn { color: var(--ink); border-color: var(--line); }
.lang__btn .ic { width: 1.05em; height: 1.05em; }
.lang__chev { transition: transform 0.3s; }
.lang.is-open .lang__chev { transform: rotate(180deg); }
.lang__menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 0.4rem; box-shadow: 0 20px 44px -20px rgba(31,34,40,0.4); display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.25s, transform 0.3s, visibility 0.25s; z-index: 120; }
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__opt { padding: 0.55rem 0.8rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.lang__opt.is-active { background: rgba(102,216,3,0.14); color: var(--lime-d); }
.lang__opt--soon { color: var(--muted); cursor: default; }
.lang__opt--soon::after { content: "tulossa"; float: right; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); opacity: 0.7; margin-top: 0.15em; }
.lang__soon-note { display: none; }
.lang__opt { display: flex; align-items: center; gap: 0.55em; }
.lang__opt--link:hover { background: var(--paper-2); }
.lang__flag { font-size: 1.05em; line-height: 1; }
.flagi { width: 1.2em; height: auto; flex: none; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18); }   /* SVG-lippu emojin tilalla, ks. script.js */
@media (max-width: 820px) { .lang { display: none; } }   /* mobiilissa kielivalinta on hampurilaisvalikossa */

/* kielivalinta mobiilivalikon sisällä */
/* Kompakti: liput + kielikoodi mahtuvat yhdelle riville, joten valikon osiot saavat tilan.
   Aiemmin viisi koko nimeä + otsikkorivi vei kolme riviä. */
.mobile-menu__lang { margin-top: 1.4rem; }
.mm-langs { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.mm-lang { display: inline-flex; align-items: center; gap: 0.3em; padding: 0.32em 0.6em; border-radius: 100px; border: 1px solid rgba(255,255,255,0.28); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.02em; color: #fff; }
.mm-lang.is-active { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }

/* ============ PALVELUT: vertical service cards (revert = drop .acc--bento class + this block) ============ */
/* single column so opening a card expands in place instead of jumping to a full-width grid row */
.services .acc--bento { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; max-width: 880px; margin: 0 auto; }
.services .acc--bento .acc__item { position: relative; overflow: hidden; border-radius: 16px; transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s; }
/* lime accent bar that grows in on hover/open */
.services .acc--bento .acc__item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--lime); transform: scaleY(0); transform-origin: top; transition: transform 0.35s var(--ease); z-index: 1; }
.services .acc--bento .acc__item:hover, .services .acc--bento .acc__item[open] { border-color: var(--lime); box-shadow: 0 22px 40px -26px rgba(31,34,40,0.55); }
.services .acc--bento .acc__item:hover:not([open]) { transform: translateY(-2px); }
.services .acc--bento .acc__item:hover::before, .services .acc--bento .acc__item[open]::before { transform: scaleY(1); }
/* summary row: icon medallion | title + teaser | hours | chevron */
.services .acc--bento .acc__item summary { display: flex; align-items: center; flex-wrap: wrap; gap: 0.85rem 1rem; padding: 1.05rem 1.35rem; }
.services .acc--bento .acc__ic { box-sizing: border-box; width: 3rem; height: 3rem; padding: 0.62rem; border-radius: 13px; background: rgba(102,216,3,0.14); color: var(--lime-d); flex: none; transition: background 0.3s, color 0.3s, transform 0.3s var(--ease); }
.services .acc--bento .acc__item:hover .acc__ic, .services .acc--bento .acc__item[open] .acc__ic { background: var(--lime); color: var(--lime-ink); }
.services .acc--bento .acc__head { flex: 1 1 12rem; min-width: 0; display: flex; flex-direction: column; gap: 0.15rem; }
.services .acc--bento .acc__title { flex: none; font-size: 1.2rem; }
.services .acc--bento .acc__teaser { font-size: 0.88rem; color: var(--muted); line-height: 1.35; }
.services .acc--bento .acc__hours { flex: none; }
.services .acc--bento .acc__chev { flex: none; }
/* the card's own transition list (3 classes) outranks .reveal (1 class) and drops opacity,
   so the scroll reveal snapped in instead of fading. Restore it at matching specificity. */
.services .acc--bento .acc__item.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), border-color 0.3s, box-shadow 0.3s; }

/* ============ HISTORY TIMELINE (train track) ============ */
.tl { position: relative; max-width: 780px; margin: clamp(2.6rem, 6vw, 4rem) auto 0; --tl-fill: 0px; }
.tl__track { position: relative; list-style: none; margin: 0; padding: 0; }
/* steel rails + warm sleepers; rail box is 22px wide, centred on x = 1.15rem + 7px */
.tl__track::before {
  content: ""; position: absolute; left: calc(1.15rem - 4px); top: 0.7rem; bottom: 1.4rem; width: 22px;
  background:
    linear-gradient(90deg, transparent 4px, #7c7c88 4px 5px, #a6a6b1 5px 6px, #7c7c88 6px 7px, transparent 7px 15px, #7c7c88 15px 16px, #a6a6b1 16px 17px, #7c7c88 17px 18px, transparent 18px),
    repeating-linear-gradient(to bottom, #c9b596 0 3px, transparent 3px 15px);
}
/* lime "travelled" rails, height driven by JS via --tl-fill */
.tl__track::after {
  content: ""; position: absolute; left: calc(1.15rem - 4px); top: 0.7rem; width: 22px; height: var(--tl-fill); pointer-events: none;
  background: linear-gradient(90deg, transparent 4px, var(--lime) 4px 7px, transparent 7px 15px, var(--lime) 15px 18px, transparent 18px);
}
/* green locomotive token that rides the rail; top set by JS. A filled green disc with a white
   loco (site favicon) so it stands out clearly against the muted rails. */
.tl__train {
  position: absolute; left: 1.15rem; top: 1.4rem; z-index: 3; width: 3.4rem; height: 3.4rem;
  transform: translate(calc(7px - 50%), -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, #6c6c78, var(--slate) 60%, #34343d);
  border: 3px solid #fff;
  box-shadow: 0 8px 18px -4px rgba(31,34,40,0.55), 0 0 0 2px rgba(31,34,40,0.25);
  transition: top 0.15s linear;
}
.tl__train::before {
  content: ""; position: absolute; inset: 8%;   /* isompi veturitunnus, ympyrä pysyy samana */
  background: #fff;
  -webkit-mask: url("img/favicon.png") center / contain no-repeat;
  mask: url("img/favicon.png") center / contain no-repeat;
}
.tl__stop { position: relative; padding-left: 3.9rem; padding-bottom: 1.3rem; }
.tl__stop:last-child { padding-bottom: 0; }
.tl__dot { position: absolute; left: 1.15rem; top: 1.45rem; width: 18px; height: 18px; transform: translateX(calc(7px - 50%)); border-radius: 50%; background: var(--card); border: 3px solid var(--lime-d); box-shadow: 0 0 0 3px var(--paper); z-index: 1; }
.tl__card { cursor: pointer; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 1.15rem 1.3rem; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease); }
.tl__body { cursor: auto; }
.tl__card:hover { border-color: var(--lime); box-shadow: 0 16px 30px -24px rgba(31,34,40,0.5); }
.tl__year { display: inline-block; font-family: var(--display); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--lime-ink); background: var(--lime); padding: 0.3em 0.8em; border-radius: 100px; }
.tl__ttl { font-family: var(--title); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin: 0.6rem 0 0.4rem; display: flex; align-items: center; gap: 0.55rem; }
.tl__ic { width: 1.3rem; height: 1.3rem; color: var(--lime-d); flex: none; }
.tl__lead { color: var(--muted); }
.tl__lead b, .tl__body b { color: var(--ink); }
.tl__more { margin-top: 0.7rem; }
.tl__more summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; font-size: 0.85rem; color: var(--lime-d); user-select: none; }
.tl__more summary::-webkit-details-marker { display: none; }
.tl__more summary .ic { width: 1rem; height: 1rem; transition: transform 0.35s var(--ease); }
.tl__more[open] summary .ic { transform: rotate(180deg); }
.tl__more-less { display: none; }
.tl__more[open] .tl__more-more { display: none; }
.tl__more[open] .tl__more-less { display: inline; }
.tl__body { margin-top: 0.7rem; }
.tl__body p { color: var(--muted); margin-bottom: 0.7rem; }
.tl__body p:last-child { margin-bottom: 0; }
.tl__img { margin-top: 0.9rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.tl__img img { width: 100%; height: auto; display: block; cursor: zoom-in; transition: transform 0.7s var(--ease); }
.tl__img:hover img { transform: scale(1.04); }
.tl__more[open] .tl__body { animation: accIn 0.4s var(--ease); }
@media (max-width: 620px) { .tl__stop { padding-left: 3.6rem; } }

/* ============ HYVIN PIENET PUHELIMET (<= 400px) ============
   Kapeimmilla laitteilla (esim. iPhone SE, 320–375px) tekstit ja rivit menivät päällekkäin.
   Pienennetään typografiaa ja pakotetaan kaksipalstaiset rivit allekkain. */
@media (max-width: 400px) {
  /* hero: "pyssääspaekka." on nowrap, joten se on pakko mahtua – pienennetään reilusti */
  .hero__title { font-size: 1.95rem; letter-spacing: -0.01em; }
  .hero__dialect { font-size: 0.92rem; }
  .hero__hours { font-size: 0.82rem; flex-wrap: wrap; column-gap: 1rem; row-gap: 0.3rem; }
  .hero__actions .btn { font-size: 0.76rem; padding: 0.7em 0.85em; }
  .hero__award { width: 116px; top: 4.4rem; right: 0.8rem; }

  /* navigaatio: iso logo vei liikaa tilaa hampurilaisen vierestä */
  .nav__brand, .nav__logo { height: 44px; }

  .section-title { font-size: 1.72rem; }
  .sign { font-size: 0.68rem; letter-spacing: 0.1em; }

  /* aukiolo- ja hintarivit: nimi ja arvo omille riveilleen, muuten ne törmäsivät */
  .hrow { flex-direction: column; align-items: flex-start; gap: 0.15rem; font-size: 0.88rem; }
  .hrow b { text-align: left; }
  .prow { flex-wrap: wrap; gap: 0.1rem 0.6rem; }
  .lunch__extra span { font-size: 0.85rem; }

  /* palvelukorttien otsikkorivi */
  .acc__title { font-size: 1rem; }
  .acc__teaser, .acc__hours { font-size: 0.8rem; }
  .acc__body { padding-left: 1rem; padding-right: 1rem; }

  /* viikkolista: päivä ja ruoka pysyvät samalla rivillä, vain pienemmällä fontilla */
  .lweek__d { font-size: 0.78rem; }
  .lweek__dish { font-size: 0.92rem; }
  .lweek__head { gap: 0.6rem; }

  /* aikajana: kapeampi kuja, muuten kortille jäi tuskin tilaa */
  .tl__stop { padding-left: 2.9rem; }
  .tl__card { padding: 0.95rem 1rem; }
  .tl__ttl { font-size: 0.98rem; }
  .tl__train { width: 2.6rem; height: 2.6rem; }

  /* galleria ja arvostelut */
  .gallery__grid { column-count: 1; }
  .rev { width: 268px; padding: 1.15rem; }
  .newprod { grid-template-columns: repeat(2, 1fr); }

  /* palkinnot vierekkäin mahtuvat juuri ja juuri */
  .badge-stack { gap: 0.35rem; }

  .welcome__word { font-size: 2.6rem; }
  .footer__logo { height: 42px; }
}

/* ============ EVÄSTEBANNERI ============
   Hyväksy ja hylkää ovat yhtä helppoja (laki vaatii), teksti lyhyt ja selkokielinen. */
.cc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; padding: 0.9rem var(--pad) calc(0.9rem + env(safe-area-inset-bottom)); background: rgba(31,34,40,0.97); backdrop-filter: blur(10px); color: #fff; transform: translateY(110%); transition: transform 0.5s var(--ease); box-shadow: 0 -12px 34px -18px rgba(0,0,0,0.7); }
.cc.is-in { transform: none; }
.cc__box { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 0.4rem 2rem; align-items: center; }
.cc__t { grid-column: 1; font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); }
.cc__b { grid-column: 1; font-size: 0.88rem; color: rgba(255,255,255,0.86); max-width: 78ch; }
.cc__b a { color: var(--lime); text-decoration: underline; }
.cc__actions { grid-column: 2; grid-row: 1 / span 2; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cc__no { color: #fff; border-color: rgba(255,255,255,0.45); }
.cc__no:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 700px) {
  .cc__box { grid-template-columns: 1fr; gap: 0.35rem; }
  .cc__actions { grid-column: 1; grid-row: auto; margin-top: 0.6rem; }
  .cc__actions .btn { flex: 1 1 auto; justify-content: center; }
  .cc__b { font-size: 0.82rem; }
}

/* OpenStreetMap-upotus. Osoitekyltti siirtyy ylös, koska OSM:n omat linkit ja
   tekijätiedot ovat kartan alareunassa, eikä sen läpi pitää päästä klikkaamaan. */
.visit__map--live iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.visit__map--live .visit__map-label { top: 1.1rem; left: 1.1rem; bottom: auto; pointer-events: none; }

/* ============ HERON VIERITYSVIHJE MOBIILISSA ============
   Työpöydällä pilleri tekstillä, puhelimessa pelkkä pieni nuoli. */
@media (max-width: 820px) {
  .hero__scroll { display: inline-flex; width: 38px; height: 38px; padding: 0; justify-content: center; border-radius: 50%; }
  .hero__scroll span { display: none; }
  .hero__scroll .ic { width: 1.25rem; height: 1.25rem; }
  /* nuoli on absoluuttinen, joten sisällölle on varattava sen verran tilaa alas:
     kapealla puhelimella osoiterivi rivittyi kahdelle riville ja meni nuolen alle */
  .hero__inner { padding-bottom: 5.4rem; }
}
