:root {
  --paper: #f5f4ef;
  --paper-deep: #ebe9e1;
  --ink: #171815;
  --muted: #66675f;
  --line: #d4d2c8;
  --accent: #ca3526;
  --accent-dark: #aa2d20;
  --white: #fffefa;
  --header-height: 72px;
  --radius: 8px;
  --wrap: min(1240px, calc(100% - 40px));
  --shadow: 0 20px 70px rgba(25, 23, 18, .18);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
  --z-action: 20;
  --z-header: 30;
  --z-skip: 60;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 68px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.modal-open { overflow: hidden; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { color: inherit; }

a { color: inherit; }

img { display: block; max-width: 100%; }

p, h1, h2, h3, blockquote, figure, dl, dd { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: var(--wrap); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-height);
  background: rgba(245, 244, 239, .94);
  border-bottom: 1px solid rgba(23, 24, 21, .12);
  backdrop-filter: blur(14px);
  transition: color 220ms var(--ease-out), background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(245, 244, 239, .985);
  border-color: rgba(23, 24, 21, .2);
  box-shadow: 0 6px 14px rgba(23, 24, 21, .08);
}

.nav-shell {
  width: var(--wrap);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand img { display: none; width: 116px; height: auto; transition: filter 220ms var(--ease-out); }

.brand-mobile-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 24, 21, .18);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 4px 8px rgba(23, 24, 21, .14);
}

.brand-mobile-mark strong {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.brand-mobile-name {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(1rem, 5.2vw, 1.45rem);
  letter-spacing: .045em;
  line-height: 1;
}

.desktop-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 6px; }

.social-link,
.icon-button,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 140ms var(--ease-out);
}

.social-link:active,
.icon-button:active,
.menu-toggle:active { transform: scale(.94); }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button .icon { width: 22px; height: 22px; }

.social-link svg { width: 20px; height: 20px; }

.social-link svg path { fill: currentColor; }

.social-link svg rect,
.social-link svg circle:not(.icon-fill) { fill: none; stroke: currentColor; stroke-width: 1.8; }

.social-link svg .icon-fill { fill: currentColor; stroke: none; }

.menu-toggle { position: relative; }

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, top .25s ease;
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 auto;
  padding: 24px 20px 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform-origin: top right;
}

.mobile-panel nav { display: grid; }

.mobile-panel nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.5rem, 7vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.mobile-call {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-dark);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-media {
  z-index: -2;
  transform: translate3d(0, 0, 0) scale(1.035);
  transition: transform 700ms var(--ease-out);
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: 50% 58%;
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 11, 10, .30), rgba(10, 11, 10, .06) 62%);
}

.hero-steam {
  position: absolute;
  z-index: 0;
  top: 11%;
  left: 47%;
  width: clamp(120px, 24vw, 300px);
  height: clamp(180px, 30vw, 360px);
  pointer-events: none;
}

.hero-steam span {
  position: absolute;
  bottom: 0;
  width: 28%;
  height: 66%;
  border-left: 3px solid rgba(255, 254, 250, .62);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0;
}

.hero-steam span:nth-child(1) { left: 8%; }
.hero-steam span:nth-child(2) { left: 38%; height: 88%; }
.hero-steam span:nth-child(3) { left: 68%; height: 72%; }

.hero-scroll-cue {
  position: absolute;
  right: 18px;
  bottom: 28px;
  display: none;
  align-items: center;
  gap: 10px;
  color: rgba(255, 254, 250, .86);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll-cue i {
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 254, 250, .34);
}

.hero-scroll-cue i::after {
  content: '';
  display: block;
  width: 100%;
  height: 55%;
  background: var(--white);
}

.hero-kicker-desktop,
.hero-copy-desktop,
.hero h1 .hero-title-desktop,
.hero .hero-actions-desktop { display: none; }

.hero-corner-mark {
  position: absolute;
  z-index: 1;
  top: calc(var(--header-height) + 52px);
  right: 18px;
  width: clamp(136px, 39vw, 166px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  filter: drop-shadow(0 5px 20px rgba(0, 0, 0, .2));
  pointer-events: none;
}

.hero-corner-mark svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-corner-mark circle {
  fill: rgba(8, 9, 8, .08);
  stroke: currentColor;
  stroke-width: 1;
}

.hero-corner-mark text {
  fill: currentColor;
  font: 700 11px Arial, Helvetica, sans-serif;
  letter-spacing: 3px;
}

.hero-corner-core {
  width: 54%;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border-block: 1px solid rgba(255, 254, 250, .8);
}

.hero-corner-core strong {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 400;
  line-height: .9;
}

.hero-corner-core span {
  margin-top: 7px;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-content { padding-top: calc(var(--header-height) + 72px); padding-bottom: 88px; }

.eyebrow,
.section-index,
.detail-label,
.footer-label {
  color: var(--accent);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--white); }

.hero h1 {
  margin-top: 14px;
  max-width: 12ch;
  font-size: clamp(3.15rem, 13vw, 6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .88;
  text-wrap: balance;
}

.hero h1 span { display: block; }

.hero-copy {
  max-width: 32rem;
  margin-top: 20px;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 700;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:active { transform: scale(.96); }

.button-primary { background: var(--accent); color: var(--white); }

.button-ghost { border-color: rgba(255, 255, 255, .68); color: var(--white); background: rgba(255, 255, 255, .06); }

.button-dark { background: var(--ink); color: var(--white); }

.button-light { background: var(--white); color: var(--ink); }

.button-outline-light {
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
  background: transparent;
}


.at-a-glance { background: var(--ink); color: var(--white); }

.glance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glance-item {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 22px 14px 22px 0;
  border-bottom: 1px solid #40413d;
  text-decoration: none;
}

.glance-item:nth-child(odd) { border-right: 1px solid #40413d; }
.glance-item:nth-child(even) { padding-left: 14px; }
.glance-item:nth-last-child(-n + 2) { border-bottom: 0; }

.glance-item > span,
.glance-item strong,
.glance-item > span > span { display: block; }

.glance-item strong {
  font-size: clamp(1.05rem, 4.5vw, 1.42rem);
  line-height: 1.1;
  text-wrap: balance;
}

.glance-item > span > span { margin-top: 5px; color: #b8bab3; font-size: .76rem; }
.glance-icon { width: 20px; height: 20px; color: #ff7561; }

.brand-ribbon {
  overflow: hidden;
  border-bottom: 1px solid rgba(23, 24, 21, .18);
  background: var(--accent);
  color: var(--white);
}

.brand-ribbon-track {
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
}

.brand-ribbon p {
  flex: 0 0 auto;
  padding: 13px 0 12px;
  font-size: clamp(.82rem, 2vw, 1.05rem);
  font-weight: 900;
  letter-spacing: .07em;
  white-space: nowrap;
}

.section { padding: 88px 0; }

.section h2,
.table-story h2,
.visit-section h2,
.dialog-card h2,
.menu-board-shell h2 {
  margin-top: 12px;
  max-width: 15ch;
  font-size: clamp(2.35rem, 9vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  text-wrap: balance;
}

.about-grid { display: grid; gap: 42px; }

.about-lead {
  max-width: 45rem;
  margin-top: 30px;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}

.snapshot-note,
.menu-source,
.section-aside,
.form-note { color: var(--muted); font-size: .87rem; }

.snapshot-note { margin-top: 14px; }

.section-copy,
.about-figure { min-width: 0; }

.about-notes {
  display: grid;
  margin-top: 30px;
  border-block: 1px solid var(--line);
}

.about-notes p { padding: 18px 0; }
.about-notes p + p { border-top: 1px solid var(--line); }
.about-notes strong,
.about-notes span { display: block; }
.about-notes strong { font-size: 1.02rem; }
.about-notes span { margin-top: 4px; color: var(--muted); font-size: .88rem; }
.about-section .text-link { margin-top: 26px; }

.about-figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }

.about-figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 82%;
  padding: 15px 18px;
  background: var(--accent);
  color: var(--white);
  font-size: .78rem;
}

.about-figure figcaption span { display: block; margin-bottom: 2px; font-size: 1rem; font-weight: 900; }

.menu-section { position: relative; overflow: clip; background: var(--paper-deep); }
.menu-section > .wrap { position: relative; z-index: 1; }

.menu-ambient {
  position: absolute;
  top: 70px;
  right: -110px;
  width: clamp(260px, 38vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(202, 53, 38, .28);
  border-radius: 50%;
  pointer-events: none;
}

.menu-ambient span,
.menu-ambient i {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(202, 53, 38, .23);
  border-radius: 50%;
}

.menu-ambient span:nth-child(2) { inset: 31%; border-color: rgba(23, 24, 21, .16); }

.menu-ambient i {
  inset: 6% auto auto 48%;
  width: 18px;
  height: 18px;
  border: 0;
  background: var(--accent);
}

.section-heading,
.reviews-heading,
.visit-heading { display: grid; gap: 22px; align-items: end; }

.section-aside { max-width: 24rem; }

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.menu-intro { display: grid; gap: 28px; }
.menu-intro h2 { max-width: 15ch; font-size: clamp(2.7rem, 7vw, 5rem); }
.menu-intro-copy { max-width: 40rem; margin-top: 22px; font-size: clamp(1rem, 2vw, 1.18rem); }
.menu-tools { display: grid; align-content: end; justify-items: start; gap: 14px; }
.menu-tools p { max-width: 22rem; color: var(--muted); font-size: .82rem; }

.menu-jump {
  position: sticky;
  top: var(--header-height);
  z-index: var(--z-action);
  display: flex;
  gap: 28px;
  margin-top: 38px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(235, 233, 225, .96);
  scrollbar-width: none;
}

.menu-jump::-webkit-scrollbar { display: none; }

.menu-jump a {
  flex: 0 0 auto;
  padding: 15px 0 13px;
  border-bottom: 3px solid transparent;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none;
}

.menu-jump a:focus-visible { border-color: var(--accent); color: var(--accent-dark); }
.menu-jump a[aria-current="true"] { border-color: var(--accent); color: var(--accent-dark); }

.menu-chapters {
  display: grid;
  gap: 44px;
  margin-top: 64px;
}

.menu-chapter {
  display: grid;
  gap: 30px;
  padding: 0 0 42px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 58px);
}

.menu-image-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.menu-image-frame figcaption {
  display: none;
}

.menu-chapter-copy { align-self: start; min-width: 0; }
.menu-count { color: var(--accent-dark); font-size: .78rem; font-weight: 900; }
.menu-chapter h3 { margin-top: 7px; font-size: clamp(2.25rem, 7vw, 4rem); letter-spacing: -.035em; line-height: .94; }

.menu-card-copy {
  max-width: 34rem;
  min-height: 3.25em;
  margin-top: 14px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.dish-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: .93rem;
}

.dish-list span { min-width: 0; }
.dish-list strong { white-space: nowrap; font-size: .82rem; }
.dish-list small { color: var(--accent-dark); font-weight: 900; }

.menu-foot { display: grid; gap: 18px; margin-top: 38px; color: var(--muted); font-size: .88rem; }
.menu-foot .text-link { color: var(--ink); }

.table-story { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.table-story-media,
.table-story-media picture { min-height: 310px; overflow: hidden; }
.table-story-media picture { display: block; width: 100%; height: 100%; }
.table-story-media img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; object-position: 50% 50%; transform: scale(1.04); }
.table-story-copy { position: relative; overflow: hidden; padding: 58px 20px 112px; background: var(--accent); isolation: isolate; }
.table-story-copy > *:not(.table-story-ghost) { position: relative; z-index: 2; }
.table-story-copy::after {
  content: '';
  position: absolute;
  z-index: 1;
  inset: -40% -70%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, .16) 50%, transparent 58%);
  pointer-events: none;
  transform: translate3d(-48%, 0, 0);
}
.table-story-ghost {
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: -8%;
  color: rgba(255, 255, 255, .09);
  font-size: clamp(7rem, 26vw, 15rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .75;
  pointer-events: none;
}
.table-story-copy > p:first-child { font-size: .78rem; font-weight: 900; letter-spacing: .08em; }
.table-story-copy h2 { max-width: 10ch; font-size: clamp(2.7rem, 11vw, 4.6rem); }
.table-story-copy > p:not(:first-child) { max-width: 35rem; margin-top: 22px; }
.table-story-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 30px; }
.text-link-light { color: var(--white); }

.gallery-section { padding-bottom: 104px; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 38px; }

.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.gallery-frame {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.gallery-open-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 24, 21, .82);
  color: var(--white);
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.gallery-open-icon .icon { width: 18px; height: 18px; }

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:nth-child(1) .gallery-image { object-position: 50% 55%; }
.gallery-item:nth-child(2) .gallery-image { object-position: 50% 64%; }
.gallery-item:nth-child(3) .gallery-image { object-position: 52% 58%; }
.gallery-item:nth-child(4) .gallery-image { object-position: 50% 52%; }
.gallery-item:nth-child(5) .gallery-image { object-position: 50% 50%; }
.gallery-item:nth-child(6) .gallery-image { object-position: 50% 52%; }

.gallery-caption { display: block; margin-top: 9px; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.reviews-section { background: var(--ink); color: var(--white); }
.reviews-intro { max-width: 34rem; margin-top: 22px; color: #b9bbb4; }

.rating-summary { display: flex; align-items: flex-end; gap: 14px; }
.rating-summary strong { font-size: clamp(4.2rem, 15vw, 7rem); line-height: .76; letter-spacing: -.04em; }
.rating-summary span { display: grid; gap: 3px; color: #b7b8b1; font-size: .82rem; }
.rating-summary b { color: #ff7561; font-size: .8rem; letter-spacing: .08em; }

.review-grid { display: grid; gap: 42px; margin-top: 44px; }

.review-card { display: flex; min-height: 100%; flex-direction: column; padding-top: 18px; border-top: 1px solid #4a4c46; }

.review-meta { display: flex; align-items: center; gap: 12px; }
.review-meta img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-meta div { display: grid; }
.review-meta span { color: #ff7561; font-size: .8rem; letter-spacing: .08em; }

.review-card blockquote { margin: 26px 0 34px; font-size: clamp(1.08rem, 2.5vw, 1.38rem); line-height: 1.46; }
.review-featured blockquote { font-size: clamp(1.45rem, 4.7vw, 2.7rem); line-height: 1.24; letter-spacing: -.025em; }
.review-card a { width: fit-content; margin-top: auto; color: #dadbd6; font-size: .82rem; font-weight: 800; text-underline-offset: 4px; }

.visit-section { padding: 0; background: var(--paper); }
.visit-layout { width: 100%; margin-inline: 0; display: grid; gap: 0; }
.visit-panel { min-width: 0; padding: 72px 20px 78px; background: var(--paper-deep); }
.visit-panel-intro h2 {
  max-width: 8ch;
  font-size: clamp(3.8rem, 15vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .9;
  text-wrap: balance;
}

.visit-address {
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.visit-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.visit-meta-block { min-width: 0; }
.detail-label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.detail-label .icon { width: 16px; height: 16px; color: var(--accent); }
.visit-meta-block > p:not(.detail-label) { margin-top: 17px; line-height: 1.55; }
.phone-link { display: inline-block; margin-top: 17px; font-size: 1.05rem; font-weight: 900; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.visit-note { display: flex; align-items: flex-start; gap: 10px; max-width: 34rem; margin-top: 32px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.visit-note .icon { flex: 0 0 16px; width: 16px; height: 16px; margin-top: 3px; color: var(--accent); }

.visit-panel-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 38px; }
.visit-panel-actions .button { min-height: 58px; border-radius: 4px; padding-inline: 24px; }
.visit-call { display: inline-flex; align-items: center; gap: 9px; padding: 8px 0; border-bottom: 1px solid currentColor; font-weight: 900; text-decoration: none; }
.visit-call .icon { width: 17px; height: 17px; }

.map-wrap { width: 100%; min-width: 0; margin: 0; overflow: hidden; background: #d8dee4; }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; }

.site-footer { padding: 70px 0 28px; background: #dedcd3; }
.footer-grid { display: grid; gap: 38px; }
.footer-brand img { width: 156px; height: auto; }
.footer-brand p { margin-top: 15px; color: var(--muted); }
.footer-label { margin-bottom: 10px; color: var(--muted); }
.footer-grid a { font-weight: 800; }
.footer-shortcuts { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 10px; }
.footer-shortcuts a { font-size: .82rem; text-underline-offset: 4px; }
.footer-socials { display: flex; margin: 10px 0 0 -12px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(23, 24, 21, .2); color: var(--muted); font-size: .8rem; }
.back-to-top { display: inline-flex; align-items: center; gap: 7px; }
.back-to-top .icon { width: 15px; height: 15px; }

.mobile-action-bar {
  position: fixed;
  z-index: var(--z-action);
  inset: auto 0 0;
  height: 68px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-action-bar a,
.mobile-action-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.mobile-action-bar button { background: var(--accent); color: var(--white); }
.mobile-action-bar a:last-child { border-right: 0; }
.mobile-action-bar .icon { width: 19px; height: 19px; }
.mobile-action-bar .mobile-action-copy { display: grid; gap: 2px; text-align: left; }
.mobile-action-bar span,
.mobile-action-bar strong { display: block; line-height: 1.1; }
.mobile-action-bar span { font-size: .66rem; font-weight: 700; }
.mobile-action-bar strong { font-size: .8rem; }

dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
}

dialog::backdrop { background: rgba(11, 12, 10, .76); backdrop-filter: blur(8px); }

.booking-dialog,
.menu-board-dialog {
  width: min(720px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-card { position: relative; padding: 30px 20px; }
.dialog-card h2 { max-width: 13ch; font-size: clamp(2.1rem, 9vw, 3.8rem); }
.dialog-close { position: absolute; top: 14px; right: 14px; font-size: 1.7rem; }
.dialog-intro { margin-top: 18px; color: var(--muted); }

.booking-form { display: grid; gap: 15px; margin-top: 26px; }
.field-row { display: grid; gap: 15px; }
.booking-form label { display: grid; gap: 6px; font-size: .82rem; font-weight: 800; }
.booking-form label span { color: var(--muted); font-weight: 400; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #bbb9b0;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 12px;
}
.booking-form textarea { resize: vertical; }
.form-submit { width: 100%; margin-top: 4px; }

.call-confirmation { margin-top: 28px; padding: 22px; border-top: 5px solid var(--accent); background: var(--paper-deep); }
.call-confirmation p + p { margin-top: 8px; }
.call-confirmation .button { margin-top: 20px; }
.call-confirmation .text-link { display: block; margin-top: 18px; }

.menu-board-shell { padding: 24px 16px 18px; }
.dialog-toolbar { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.menu-board-shell h2 { font-size: 2.4rem; }
.menu-board-shell > p { margin-top: 10px; color: var(--muted); font-size: .85rem; }
.menu-board-shell > img { width: 100%; height: auto; margin-top: 20px; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  overflow: hidden;
  background: rgba(8, 9, 8, .98);
  color: var(--white);
}

.lightbox::backdrop { background: rgba(8, 9, 8, .98); }
.lightbox-stage { position: relative; width: 100%; height: 100%; display: grid; place-items: center; padding: 68px 16px 78px; }
.lightbox figure { display: grid; place-items: center; max-width: min(100%, 1000px); max-height: 100%; }
.lightbox figure img { max-width: 100%; max-height: calc(100dvh - 170px); object-fit: contain; }
.lightbox figcaption { margin-top: 12px; color: #c7c8c2; font-size: .85rem; }
.lightbox .icon-button { position: absolute; z-index: 2; color: var(--white); background: rgba(255, 255, 255, .08); font-size: 1.4rem; }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 14px; bottom: 18px; }
.lightbox-next { right: 14px; bottom: 18px; }

.js .reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out);
  transition-delay: var(--reveal-delay);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.gallery-item:nth-child(2),
.review-card:nth-child(2) { --reveal-delay: 60ms; }
.gallery-item:nth-child(3),
.review-card:nth-child(3) { --reveal-delay: 120ms; }
.gallery-item:nth-child(4) { --reveal-delay: 40ms; }
.gallery-item:nth-child(5) { --reveal-delay: 100ms; }
.gallery-item:nth-child(6) { --reveal-delay: 160ms; }

@keyframes hero-breathe {
  0%, 100% { transform: scale(1.015); }
  50% { transform: scale(1.055); }
}

@keyframes steam-rise {
  0% { opacity: 0; transform: translate3d(0, 22%, 0) scaleX(.72) rotate(-5deg); }
  20% { opacity: .72; }
  70% { opacity: .38; }
  100% { opacity: 0; transform: translate3d(24px, -68%, 0) scaleX(1.08) rotate(10deg); }
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: translateY(-100%) scaleY(.35); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(100%) scaleY(.65); }
}

@keyframes ribbon-flow {
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes orbit-clockwise {
  to { transform: rotate(360deg); }
}

@keyframes table-pan {
  0%, 100% { transform: scale(1.04) translate3d(-1.2%, 0, 0); }
  50% { transform: scale(1.09) translate3d(1.2%, -1%, 0); }
}

@keyframes light-sweep {
  0%, 28% { transform: translate3d(-48%, 0, 0); opacity: 0; }
  42% { opacity: 1; }
  64%, 100% { transform: translate3d(48%, 0, 0); opacity: 0; }
}

@keyframes ghost-drift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .76; }
  50% { transform: translate3d(-14px, -8px, 0); opacity: 1; }
}

@keyframes gallery-drift-a {
  0%, 100% { transform: scale(1.015) translate3d(0, 0, 0); }
  50% { transform: scale(1.055) translate3d(-.8%, -.7%, 0); }
}

@keyframes gallery-drift-b {
  0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1.06) translate3d(.8%, -.5%, 0); }
}

@keyframes star-glow {
  0%, 100% { opacity: .78; text-shadow: 0 0 0 rgba(255, 117, 97, 0); }
  50% { opacity: 1; text-shadow: 0 0 12px rgba(255, 117, 97, .72); }
}

@keyframes mobile-menu-in {
  from { opacity: 0; transform: translate3d(0, -12px, 0) scale(.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes dialog-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image { animation: hero-breathe 15s var(--ease-in-out) infinite; }
  .hero-corner-mark svg { animation: orbit-clockwise 28s linear infinite; }
  .hero-steam span { animation: steam-rise 5.4s var(--ease-in-out) infinite; }
  .hero-steam span:nth-child(2) { animation-delay: -1.8s; animation-duration: 6.2s; }
  .hero-steam span:nth-child(3) { animation-delay: -3.4s; animation-duration: 5.8s; }
  .hero-scroll-cue i::after { animation: scroll-pulse 2.2s var(--ease-in-out) infinite; }
  .brand-ribbon-track { animation: ribbon-flow 22s linear infinite; }
  .menu-ambient { animation: orbit-clockwise 24s linear infinite; }
  .menu-ambient span:nth-child(2) { animation: ghost-drift 6s var(--ease-in-out) infinite; }
  .table-story-media img { animation: table-pan 18s var(--ease-in-out) infinite; }
  .table-story-copy::after { animation: light-sweep 7.6s linear infinite; }
  .table-story-ghost { animation: ghost-drift 8s var(--ease-in-out) infinite; }
  .gallery-item:nth-child(1) .gallery-image,
  .gallery-item:nth-child(5) .gallery-image { animation: gallery-drift-a 13s var(--ease-in-out) infinite; }
  .gallery-item:nth-child(3) .gallery-image { animation: gallery-drift-b 15s var(--ease-in-out) infinite; }
  .rating-summary b { animation: star-glow 2.8s var(--ease-in-out) infinite; }
  .visit-orbit { animation: orbit-clockwise 19s linear infinite; }
  .mobile-panel:not([hidden]) { animation: mobile-menu-in 220ms var(--ease-drawer); }
  dialog[open] { animation: dialog-in 240ms var(--ease-out); }
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover,
  .icon-button:hover,
  .menu-toggle:hover { background: var(--paper-deep); color: var(--accent); }
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: var(--accent-dark); }
  .button-ghost:hover { background: var(--white); color: var(--ink); }
  .button-dark:hover { background: var(--accent); }
  .button-light:hover { background: var(--ink); color: var(--white); }
  .button-outline-light:hover { background: var(--white); color: var(--ink); }
  a.glance-item:hover strong { color: #ff7561; }
  .text-link:hover { color: var(--accent-dark); }
  .text-link-light:hover { color: var(--ink); }
  .menu-jump a:hover { border-color: var(--accent); color: var(--accent-dark); }
  .gallery-open-icon { opacity: 0; transform: translate3d(0, 6px, 0); }
  .gallery-item:hover .gallery-open-icon,
  .gallery-item:focus-visible .gallery-open-icon { opacity: 1; transform: translate3d(0, 0, 0); }
  .gallery-item:hover .gallery-image { animation: none; transform: scale(1.045) rotate(.4deg); filter: saturate(1.08); }
  .glance-item { transition: color 180ms ease, transform 220ms var(--ease-out); }
  a.glance-item:hover { transform: translate3d(0, -4px, 0); }
  .menu-image-frame { transition: transform 320ms var(--ease-out); }
  .menu-chapter:hover .menu-image-frame { transform: rotate(-.65deg) scale(1.008); }
  .menu-chapter:nth-child(even):hover .menu-image-frame { transform: rotate(.65deg) scale(1.008); }
}

@media (min-width: 560px) {
  :root { --wrap: min(1240px, calc(100% - 64px)); }
  .table-story-copy { padding-inline: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .dialog-card { padding: 42px; }
  .menu-board-shell { padding: 30px; }
}

@media (min-width: 760px) {
  .section { padding: 120px 0; }
  .glance-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .glance-item,
  .glance-item:nth-child(even) { padding: 28px 24px; border-right: 1px solid #40413d; border-bottom: 0; }
  .glance-item:first-child { padding-left: 0; }
  .glance-item:last-child { padding-right: 0; border-right: 0; }
  .about-grid { grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
  .about-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-notes p { padding-right: 22px; }
  .about-notes p + p { padding-left: 22px; border-top: 0; border-left: 1px solid var(--line); }
  .section-heading,
  .reviews-heading,
  .visit-heading { grid-template-columns: 1fr auto; }
  .menu-intro { grid-template-columns: minmax(0, 1.4fr) minmax(240px, .6fr); align-items: end; gap: 60px; }
  .menu-tools { justify-items: end; text-align: right; }
  .menu-foot { grid-template-columns: 1fr auto; align-items: center; }
  .table-story { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); min-height: 650px; }
  .table-story-media,
  .table-story-media img { min-height: 650px; }
  .table-story-copy { display: grid; align-content: center; padding: 70px clamp(42px, 5vw, 88px); }
  .review-grid { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .75fr); grid-template-rows: repeat(2, auto); gap: 30px 54px; }
  .review-featured { grid-row: 1 / span 2; padding-right: 48px; border-right: 1px solid #4a4c46; }
  .visit-grid { grid-template-columns: 1fr; gap: 70px; align-items: start; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .map-wrap iframe { height: 540px; }
  .lightbox-prev { left: 28px; top: 50%; bottom: auto; transform: translateY(-50%); }
  .lightbox-next { right: 28px; top: 50%; bottom: auto; transform: translateY(-50%); }
}

@media (max-width: 899px) {
  .header-actions { gap: 2px; }
  .social-link,
  .menu-toggle { width: 40px; height: 40px; }
  .site-header:not(.is-scrolled) {
    color: var(--white);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .site-header:not(.is-scrolled) .brand-mobile-name { color: var(--white); }
  .brand-mobile-mark,
  .brand-mobile-name { display: none; }
  .brand img {
    display: block;
    width: 132px;
    height: auto;
  }
  .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
  .mobile-panel { color: var(--ink); }
  .hero-overlay {
    background:
      linear-gradient(to top, rgba(8, 9, 8, .74) 0%, rgba(8, 9, 8, .12) 50%, rgba(8, 9, 8, .34) 100%),
      linear-gradient(90deg, rgba(8, 9, 8, .22), transparent 54%);
  }
  .hero-content {
    padding-top: clamp(260px, 42vh, 390px);
    padding-bottom: clamp(78px, 13vh, 126px);
  }
  .hero h1 {
    max-width: none;
    margin-top: 14px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(4.2rem, 19vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .82;
  }
  .hero-copy {
    max-width: 22rem;
    margin-top: 20px;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.5;
    text-wrap: balance;
  }
  .hero .hero-actions-mobile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  .hero-actions-mobile .button {
    min-width: 0;
    min-height: 58px;
    justify-content: space-between;
    gap: 10px;
    padding: 14px;
    border-radius: 0;
    font-size: .9rem;
  }
  .hero-actions-mobile .button .icon { width: 19px; height: 19px; }
  .hero-steam { top: 16%; left: 40%; }
  .mobile-action-bar {
    transition: transform 260ms var(--ease-out), opacity 180ms ease;
  }
  body.hero-active .mobile-action-bar {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    pointer-events: none;
  }
}

@media (min-width: 900px) {
  :root { --header-height: 84px; }
  body { padding-bottom: 0; }
  .brand img { display: block; width: 132px; }
  .brand-mobile-mark,
  .brand-mobile-name { display: none; }
  .desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-item:nth-child(3n + 2) { margin-top: 58px; }
  .desktop-nav a { position: relative; font-size: .82rem; font-weight: 800; text-decoration: none; }
  .desktop-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--accent); transition: right .22s ease; }
  .desktop-nav a:hover::after { right: 0; }
  .menu-toggle { display: none; }
  .mobile-action-bar { display: none; }
  .site-header:not(.is-scrolled) {
    color: var(--white);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
  .site-header:not(.is-scrolled) .desktop-nav a::after { background: var(--white); }
  .hero { min-height: max(720px, 100svh); }
  .hero-image { object-position: 50% 47%; }
  .hero-overlay {
    background:
      linear-gradient(to top, rgba(8, 9, 8, .72) 0%, rgba(8, 9, 8, .16) 51%, rgba(8, 9, 8, .34) 100%),
      linear-gradient(90deg, rgba(8, 9, 8, .28), transparent 42%, rgba(8, 9, 8, .14));
  }
  .hero-content {
    min-height: max(720px, 100svh);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, .58fr);
    grid-template-rows: auto auto;
    align-content: end;
    column-gap: clamp(34px, 6vw, 88px);
    padding-top: calc(var(--header-height) + 150px);
    padding-bottom: clamp(58px, 7.5vh, 88px);
  }
  .hero-kicker-mobile,
  .hero-copy-mobile,
  .hero h1 .hero-title-mobile,
  .hero .hero-actions-mobile { display: none; }
  .hero-kicker-desktop {
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    margin-top: 18px;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(4.8rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .78;
  }
  .hero h1 .hero-title-desktop { display: block; }
  .hero-side {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    min-width: 0;
  }
  .hero-copy-desktop {
    display: block;
    max-width: 25rem;
    margin: 0;
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    font-weight: 700;
    line-height: 1.5;
    text-wrap: balance;
  }
  .hero .hero-actions-desktop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }
  .hero-actions-desktop .button {
    min-width: 0;
    min-height: 60px;
    justify-content: space-between;
    gap: 18px;
    padding: 15px 22px;
    border-radius: 0;
    font-size: .9rem;
  }
  .hero-actions-desktop .button span:last-child { font-size: 1.35rem; font-weight: 400; }
  .hero-corner-mark {
    top: calc(var(--header-height) + 20px);
    right: max(32px, calc((100vw - 1240px) / 2));
    width: clamp(136px, 13vw, 184px);
  }
  .hero-steam { top: 8%; left: 42%; }
}

@media (max-width: 599px) {
  .hero-media { transform: translate3d(clamp(3px, 1.6vw, 6px), 0, 0) scale(1.035); }
}

@media (min-width: 1200px) {
  .section { padding: 144px 0; }
  .about-grid { gap: 120px; }
  .visit-lead { padding-block: 124px 72px; }
  .gallery-grid { gap: 24px; }
  .review-grid { gap: 38px 72px; }
}

@media (min-width: 760px) {
  .menu-section { padding-block: clamp(78px, 8vw, 112px); }
  .menu-jump { display: none; }

  .menu-chapters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 20px;
    margin-top: 52px;
  }

  .menu-chapter {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    border-bottom: 0;
  }

  .menu-chapter-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .menu-card-copy { min-height: 3.2em; }
  .dish-list { margin-top: auto; }
}

@media (min-width: 1100px) {
  .menu-section { padding-top: clamp(24px, 3vw, 44px); }
  .menu-intro h2 { font-size: clamp(3.2rem, 4.5vw, 4.8rem); }

  .menu-chapters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 36px;
  }

  .menu-chapter h3 { font-size: clamp(2rem, 2.8vw, 2.8rem); }
  .menu-card-copy { font-size: .9rem; }
}

@media (min-width: 980px) {
  .visit-layout { grid-template-columns: minmax(340px, 38%) minmax(0, 62%); }
  .visit-panel {
    min-height: clamp(600px, 52vw, 760px);
    display: flex;
    flex-direction: column;
    padding: clamp(72px, 7vw, 112px) clamp(32px, 4.8vw, 96px);
  }
  .visit-panel-intro h2 {
    max-width: 10ch;
    font-size: clamp(3.8rem, 5.8vw, 6.2rem);
  }
  .visit-address { margin-top: 38px; }
  .visit-meta { gap: 30px; margin-top: 60px; padding-top: 34px; }
  .visit-panel-actions { margin-top: auto; padding-top: 56px; }
  .map-wrap { min-height: clamp(600px, 52vw, 760px); }
  .map-wrap iframe { height: 100%; min-height: clamp(600px, 52vw, 760px); }
}

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