:root {
  --bg: #0E0A0C;
  --bg-2: #161013;
  --bg-3: #1E1519;
  --line: #34242B;
  --text: #F3ECE6;
  --muted: #BCAEA8;
  --berry: #9B2257;
  --berry-hi: #B52C67;
  --blush: #E9B3C9;
  --brass: #C9A46A;
  --display: "Tinos", "Times New Roman", Times, serif;
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0;
}

h1 em, h2 em, h3 em { font-style: italic; color: var(--blush); }

p { margin: 0 0 1em; }

::selection { background: var(--berry); color: #fff; }

:focus-visible { outline: 2px solid var(--blush); outline-offset: 3px; border-radius: 2px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--berry); color: #fff; padding: 10px 16px; text-decoration: none;
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.mono { width: auto; fill: currentColor; overflow: visible; }

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-solid { background: rgba(14, 10, 12, .96); border-bottom-color: var(--line); }
.header__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px; gap: 16px; }
.header__in .brand { grid-column: 2; }
.header__call {
  grid-column: 3; justify-self: end; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; background: var(--berry); color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.header__call:hover { background: var(--berry-hi); transform: scale(1.06); }
.header__call svg { width: 20px; height: 20px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mono { height: 40px; }
.brand__name { font-family: var(--display); font-weight: 400; font-size: 21px; letter-spacing: .08em; line-height: 1; }
.brand__name small { display: block; font-family: var(--display); font-size: 13px; letter-spacing: .04em; color: var(--muted); margin-top: 4px; text-align: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 500; letter-spacing: .02em;
  text-decoration: none; padding: 15px 26px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--berry); color: #fff; }
.btn--primary:hover { background: var(--berry-hi); transform: translateY(-2px); }
.btn--ghost { border-color: rgba(243, 236, 230, .45); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); background: rgba(243, 236, 230, .06); transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

.hero { position: relative; aspect-ratio: 16 / 9; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; background: var(--bg); }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: #000 url("../img/hero-poster.webp") center / cover no-repeat; }
@media (orientation: portrait) { .hero__media { background-image: url("../img/hero-poster-mobile.webp"); } }
.hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 10, 12, .65) 0%, rgba(14, 10, 12, .18) 28%, rgba(14, 10, 12, .4) 60%, rgba(14, 10, 12, .95) 100%),
    linear-gradient(90deg, rgba(14, 10, 12, .7) 0%, rgba(14, 10, 12, 0) 65%),
    rgba(14, 10, 12, .28);
}
.hero__in { padding-top: 110px; padding-bottom: clamp(48px, 7vh, 90px); }
.hero__mark { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.hero__mark .mono { height: 64px; }
.hero__mark span { font-family: var(--display); font-size: 18px; letter-spacing: .1em; }
.hero h1 { font-size: clamp(42px, 5.8vw, 90px); max-width: 11.5em; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__actions .btn { border-radius: 12px; }
.status { display: inline-flex; align-items: center; gap: 10px; font-weight: 400; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); flex: none; }
.status.is-open::before { background: #7BD389; box-shadow: 0 0 0 4px rgba(123, 211, 137, .18); }

.section { padding: clamp(80px, 12vw, 150px) 0; position: relative; }
.section--tight { padding-top: 0; }

.rule { display: flex; align-items: center; gap: 18px; color: var(--brass); margin-bottom: 30px; }
.rule::before, .rule::after { content: ""; height: 1px; background: currentColor; opacity: .6; flex: 1; max-width: 90px; }
.rule .mono { height: 30px; }

.h2 { font-size: clamp(36px, 4.8vw, 64px); }

.intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.intro__text p { color: var(--muted); font-size: 18px; max-width: 32em; }
.intro__text .h2 { margin-bottom: 30px; }
.intro__pics { position: relative; padding-bottom: 70px; }
.arch { border-radius: 999px 999px 0 0; overflow: hidden; background: var(--bg-3); }
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.arch:hover img { transform: scale(1.04); }
.pill { border-radius: 999px; overflow: hidden; background: var(--bg-3); }
.pill img { width: 100%; height: 100%; object-fit: cover; }
.intro__pics .arch { aspect-ratio: 4 / 5; width: 78%; margin-left: auto; }
.intro__pics .pill { position: absolute; left: 0; bottom: 0; width: 42%; aspect-ratio: 3 / 5; border: 6px solid var(--bg); }

.rating {
  display: inline-flex; align-items: center; gap: 16px; margin-top: 14px; padding: 16px 22px 16px 18px;
  border: 1px solid var(--line); text-decoration: none; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.rating:hover { border-color: var(--brass); background: var(--bg-2); }
.rating__num { font-family: var(--display); font-size: 42px; line-height: 1; }
.rating__stars { color: var(--brass); letter-spacing: 3px; font-size: 14px; }
.rating__meta { font-size: 14px; color: var(--muted); line-height: 1.4; }




.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 56px; }
.quote { padding: 44px 36px 40px; margin: 0; }
.quote + .quote { border-left: 1px solid var(--line); }
.quote blockquote { margin: 0; font-family: var(--display); font-style: italic; font-size: clamp(21px, 2vw, 26px); line-height: 1.4; }
.quote figcaption { font-size: 14px; color: var(--muted); }
.quote figcaption b { color: var(--text); font-weight: 400; }
.quotes__foot { display: flex; justify-content: center; margin-top: 44px; }
.link { color: var(--blush); text-decoration: none; border-bottom: 1px solid rgba(233, 179, 201, .4); padding-bottom: 3px; transition: border-color .3s; }
.link:hover { border-color: var(--blush); }

.weekdays { padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(60px, 8vw, 110px); }
.weekdays__head { margin-bottom: 40px; }
.weekdays__head p { color: var(--muted); font-size: 18px; margin: 0; max-width: 30em; }
.week { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1.3fr)) repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); }
.week__day { position: relative; padding: 22px 18px 20px; display: flex; flex-direction: column; gap: 6px; color: var(--muted); transition: background .3s var(--ease); }
.week__day + .week__day { border-left: 1px solid var(--line); }
.week__day.is-work { color: var(--text); background: var(--bg-2); }
.week__day.is-work:hover { background: var(--bg-3); }
.week__day.is-work::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--berry); }
.week__name { font-family: var(--display); font-size: 21px; line-height: 1.1; }
.week__hours { font-size: 15px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.week__short { display: none; text-decoration: none; }
.week__day.is-today { background: var(--berry); color: #fff; }
.week__day.is-today:hover { background: var(--berry-hi); }
.week__day.is-today::before { background: var(--blush); }
.week__day.is-today::after { content: "dziś"; position: absolute; top: 10px; right: 12px; font-size: 13px; font-style: italic; font-family: var(--display); color: var(--blush); }
.weekdays__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 34px; }

.showcase { position: relative; height: 560vh; height: 560svh; }
.showcase__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.showcase__col { position: absolute; top: 0; width: min(23vw, 330px); display: flex; flex-direction: column; gap: 4vh; will-change: transform; }
.showcase__col--l { left: var(--gutter); }
.showcase__col--r { right: var(--gutter); }
.showcase__ph { margin: 0; flex: none; height: 60vh; border-radius: 999px 999px 16px 16px; overflow: hidden; background: var(--bg-3); will-change: transform, opacity; transform-origin: center; }
.showcase__col--r .showcase__ph { border-radius: 16px 16px 999px 999px; }
.showcase__ph img { width: 100%; height: 100%; object-fit: cover; }
.showcase__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 90px calc(min(23vw, 330px) + var(--gutter) + 40px) 40px; }
.showcase__label { position: absolute; top: 104px; left: 0; right: 0; margin: 0; font-size: clamp(22px, 2vw, 30px); color: var(--text); }
.showcase__titles { display: grid; width: 100%; max-width: 640px; }
.showcase__item { grid-area: 1 / 1; display: flex; flex-direction: column; align-items: center; pointer-events: none; }
.showcase__item h3 { overflow: hidden; font-size: clamp(40px, 5.4vw, 88px); line-height: 1.02; padding-bottom: .08em; }
.showcase__item h3 span { display: block; transform: translateY(105%); transition: transform .9s var(--ease); }
.showcase__item.is-past h3 span { transform: translateY(-105%); }
.showcase__item.is-active h3 span { transform: none; }
.showcase__tr, .showcase__desc { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.showcase__item.is-active .showcase__tr, .showcase__item.is-active .showcase__desc { opacity: 1; transform: none; transition-delay: .25s; }
.showcase__tr { font-family: var(--display); font-style: italic; color: var(--brass); font-size: 20px; margin: 14px 0 0; }
.showcase__desc { color: var(--muted); font-size: 17px; max-width: 30em; margin: 16px 0 0; }
.showcase__cta { position: absolute; bottom: 8vh; }

.contact-band { border-top: 1px solid var(--line); padding: 46px 0; }
.contact-band__in { display: flex; align-items: center; justify-content: space-between; gap: 30px 50px; flex-wrap: wrap; }
.contact-band__title { font-size: clamp(26px, 2.6vw, 34px); }
.contact-band__info { display: flex; gap: 40px; margin: 0; flex-wrap: wrap; }
.contact-band__info dt { font-family: var(--display); font-style: italic; color: var(--brass); font-size: 16px; }
.contact-band__info dd { margin: 2px 0 0; font-size: 16px; }
.contact-band__info a { text-decoration: none; }
.contact-band__info a:hover { color: var(--blush); }
.contact-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--bg-2); border-top: 1px solid var(--line);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .5);
  opacity: 0; transform: translateY(100%); visibility: hidden;
  transition: opacity .4s var(--ease), transform .45s var(--ease), visibility .45s;
}
.consent__in { max-width: var(--wrap); margin: 0 auto; padding: 22px var(--gutter); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px 40px; align-items: center; }
.consent__main { grid-column: 1; }
.consent__prefs { grid-column: 1 / -1; }
.consent__actions { grid-column: 2; grid-row: 1; }
.consent.is-prefs .consent__actions { grid-column: 1 / -1; grid-row: auto; justify-content: flex-end; }
.consent.is-open { opacity: 1; transform: none; visibility: visible; }
.consent__title { font-family: var(--display); font-size: 22px; margin: 0 0 6px; }
.consent__text { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 62em; }
.consent__text a { color: var(--blush); }
.consent__prefs { margin-top: 4px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 30px; }
.consent__prefs[hidden] { display: none; }
.consent__opt { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.consent__opt b { display: block; font-weight: 500; font-size: 15px; }
.consent__opt small { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; }
.consent__opt input { appearance: none; -webkit-appearance: none; flex: none; width: 42px; height: 24px; border-radius: 99px; background: var(--line); position: relative; cursor: pointer; transition: background .25s var(--ease); margin: 0; }
.consent__opt input::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--text); transition: transform .25s var(--ease); }
.consent__opt input:checked { background: var(--berry); }
.consent__opt input:checked::after { transform: translateX(18px); }
.consent__opt input:disabled { opacity: .55; cursor: not-allowed; }
.consent__actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 10px; }
.consent__btn { flex: 0 0 auto; min-width: 170px; background: var(--berry); color: #fff; border-radius: 10px; }
.consent__btn:hover { background: var(--berry-hi); }
.consent__btn[hidden], .consent__more[hidden] { display: none; }
.consent__more { background: none; border: 0; color: var(--muted); font: inherit; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; padding: 6px 2px; }
.consent__more:hover { color: var(--text); }
.footer__link { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
.footer__link:hover { color: var(--text); }
.prose h3 { font-size: 22px; margin: 28px 0 10px; }
.prose ul { padding-left: 20px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.prose code { font-size: 14px; background: var(--bg-3); padding: 2px 6px; border-radius: 4px; }
.prose .btn { text-decoration: none; }

.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; font-size: 14px; color: var(--muted); }
.footer__in { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.footer .brand .mono { height: 46px; color: var(--text); }
.footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--text); }
.social { display: flex; gap: 12px; }
.social a { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: border-color .3s, color .3s; }
.social a:hover { border-color: var(--blush); color: var(--blush); }
.social svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 36px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }

.callbar { display: none; }

.page-head { padding: 170px 0 60px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; isolation: isolate; }
.page-head::before { content: ""; position: absolute; inset: 0; z-index: -2; background: url("../img/aksamit.webp") center / 520px repeat; }
.page-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14, 10, 12, .9), rgba(14, 10, 12, .8) 50%, var(--bg)); }
.page-head--full { min-height: 80vh; display: flex; align-items: center; }
.page-head__actions { margin-top: 34px; }
.page-head h1 { font-size: clamp(52px, 8.4vw, 112px); }
.page-head p { color: #D9CCC6; max-width: 34em; margin: 22px 0 0; font-size: 18px; }

.menu-nav { position: sticky; top: 76px; z-index: 20; background: rgba(14, 10, 12, .97); border-bottom: 1px solid var(--line); }
.menu-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a { display: block; white-space: nowrap; padding: 18px 14px; text-decoration: none; font-size: 15px; color: var(--muted); border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.menu-nav a:hover, .menu-nav a.is-active { color: var(--text); border-bottom-color: var(--blush); }

.menu-sec { padding: 80px 0 20px; scroll-margin-top: 140px; }
.menu-sec__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.menu-sec h2 { font-size: clamp(34px, 4.2vw, 54px); }
.menu-sec__head p { color: var(--muted); margin: 0; max-width: 28em; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 70px; }
.item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.item__top { display: flex; align-items: baseline; gap: 14px; }
.item h3 { font-size: 24px; }
.item__dots { flex: 1; border-bottom: 1px dotted rgba(243, 236, 230, .25); transform: translateY(-5px); }
.item__price { font-family: var(--display); font-size: 22px; color: var(--blush); white-space: nowrap; }
.item__top { margin-bottom: 6px; }
.item p { color: var(--muted); font-size: 16px; margin: 0; }
.menu-info { margin: 70px 0 0; padding: 26px 30px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); }
.menu-info p { color: var(--muted); font-size: 15px; margin: 0 0 8px; }
.menu-info p:last-child { margin: 0; }
.item__price { text-align: right; line-height: 1.25; }
.menu-cta { margin: 90px 0 40px; padding: 60px var(--gutter); text-align: center; border: 1px solid var(--line); background: var(--bg-2); }
.menu-cta h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 14px; }
.menu-cta p { color: var(--muted); }

.prose { max-width: 760px; padding-top: 70px; padding-bottom: 100px; }
.prose h2 { font-size: 30px; margin: 46px 0 16px; }
.prose p, .prose li { color: #D9CCC6; }
.prose a { color: var(--blush); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.hero .reveal { opacity: 1; transform: none; transition: none; animation: rise 1.1s var(--ease) both; }
.hero .reveal-d1 { animation-delay: .12s; }
.hero .reveal-d2 { animation-delay: .24s; }
.hero .reveal-d3 { animation-delay: .36s; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

@media (max-width: 1099px) {
  .hero { aspect-ratio: auto; min-height: 88vh; min-height: 88svh; }
  .hero__in { padding-top: 120px; padding-bottom: 56px; }
  .hero__mark { display: none; }
}

@media (max-width: 1000px) {
  .week { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .week__day { padding: 18px 10px; }
  .week__name { font-size: 19px; }
  .week__hours { font-size: 14px; white-space: normal; }
  .week__full { display: none; }
  .week__short { display: inline; }
  .week__day.is-today::after { position: static; }
  .quotes { grid-template-columns: 1fr; }
  .quote + .quote { border-left: 0; border-top: 1px solid var(--line); }
}

@media (max-width: 860px) {
  .consent__in { grid-template-columns: 1fr; padding: 18px var(--gutter) calc(14px + env(safe-area-inset-bottom)); }
  .consent__actions { grid-column: 1; grid-row: auto; flex-wrap: wrap; }
  .consent__btn { flex: 1 1 140px; min-width: 0; }
  .consent__prefs { grid-template-columns: 1fr; }
  body.has-consent .callbar { transform: translateY(110%); }
  .showcase { height: 520vh; height: 520svh; }
  .showcase__col { top: auto; width: auto; height: 21svh; flex-direction: row; gap: 12px; left: 0; right: auto; }
  .showcase__col--l { top: 84px; }
  .showcase__col--r { bottom: 92px; }
  .showcase__ph { height: 100%; width: 42vw; border-radius: 16px; }
  .showcase__col--r .showcase__ph { border-radius: 16px; }
  .showcase__center { padding: calc(84px + 21svh) var(--gutter) calc(92px + 21svh); }
  .showcase__label { width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .showcase__item h3 { font-size: clamp(32px, 9vw, 48px); }
  .showcase__tr { font-size: 17px; margin-top: 8px; }
  .showcase__desc { font-size: 15px; margin-top: 10px; }
  .showcase__cta { position: static; margin-top: 18px; padding: 11px 20px; font-size: 14px; }
  body { font-size: 16px; }
  .intro { grid-template-columns: 1fr; }
  .intro__pics { max-width: 520px; }
  .menu-grid { grid-template-columns: 1fr; }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; inset: auto 0 0 0; z-index: 60;
    background: var(--bg); border-top: 1px solid var(--line); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
    transform: translateY(110%); transition: transform .4s var(--ease);
  }
  .callbar.is-on { transform: none; }
  .callbar .btn { padding: 13px 10px; }
  .footer { padding-bottom: 110px; }
}

@media (max-width: 560px) {
  .week { grid-template-columns: 1fr; }
  .week__day { flex-direction: row; justify-content: space-between; align-items: baseline; padding: 14px 16px; }
  .week__day + .week__day { border-left: 0; border-top: 1px solid var(--line); }
  .week__day.is-work::before { width: 2px; height: auto; bottom: 0; right: auto; }
  .week__day.is-today::after { position: static; order: 3; margin-left: 10px; }
  .week__name { font-size: 19px; flex: 1; }
  .week__full { display: inline; }
  .week__short { display: none; }
  .week__hours { font-size: 15px; }
  .contact-band__actions .btn { flex: 1 1 auto; }
  .brand__name { font-size: 18px; }
  .brand .mono { height: 34px; }
  .hero__mark .mono { height: 58px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .quote { padding: 34px 0; }
  .item h3 { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
