/* Ember & Olive — restaurant template by ZumaTools (MIT)
   Recolour everything by editing the custom properties below. */
:root {
  --brand: #a63a0d;          /* terracotta */
  --brand-ink: #ffffff;      /* text on brand */
  --accent: #5b6b2f;         /* olive */
  --gold: #d9a441;
  --bg: #fbf5ec;
  --surface: #ffffff;
  --surface-2: #f4eadb;
  --dark: #241510;           /* espresso sections */
  --dark-text: #f6ecdf;
  --text: #2a1a12;
  --muted: #6b5546;
  --line: #e6d8c4;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -25px rgba(60, 25, 5, .35);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
}

*, *::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: 400 1.0625rem/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--brand); text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: 1rem; top: -4rem; background: var(--dark); color: var(--dark-text); padding: .7rem 1rem; border-radius: 8px; z-index: 100; }
.skip:focus { top: 1rem; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.eyebrow { font: 600 .78rem/1 var(--font-body); letter-spacing: .22em; text-transform: uppercase; color: var(--brand); display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 38rem; }
.section { padding: clamp(4.5rem, 10vw, 8rem) 0; }
.section-head { max-width: 40rem; margin-bottom: 3rem; }
.center { text-align: center; margin-inline: auto; }
.center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .95rem 1.6rem; border-radius: 999px; font: 600 .98rem/1 var(--font-body); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 10px 24px -12px var(--brand); }
.btn-primary:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--brand) 88%, black); }
.btn-ghost { border-color: currentColor; color: inherit; }
.btn-ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.dark .btn-ghost:hover, .hero .btn-ghost:hover { background: var(--dark-text); color: var(--dark); border-color: var(--dark-text); }

/* Header */
.topbar { background: var(--dark); color: color-mix(in srgb, var(--dark-text) 80%, transparent); font-size: .85rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; flex-wrap: wrap; }
.topbar a { color: inherit; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--text); font: 600 1.45rem/1 var(--font-display); letter-spacing: -.01em; }
.logo svg { width: 34px; height: 34px; color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 500; font-size: .98rem; position: relative; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--brand); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.nav-links a:not(.btn):hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links .btn { color: var(--brand-ink); padding: .75rem 1.25rem; }
.menu-toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: 12px; width: 46px; height: 46px; cursor: pointer; color: var(--text); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { background: var(--dark); color: var(--dark-text); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(60% 70% at 85% 40%, color-mix(in srgb, var(--brand) 55%, transparent), transparent 70%),
  radial-gradient(40% 50% at 10% 100%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 70%); opacity: .75; }
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.hero .eyebrow { color: var(--gold); }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero p.lead { color: color-mix(in srgb, var(--dark-text) 82%, transparent); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 2rem 0 2.5rem; }
.hero-meta { display: flex; gap: 2.5rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.5rem; }
.hero-meta strong { display: block; font: 500 1.8rem/1 var(--font-display); color: var(--dark-text); }
.hero-meta span { font-size: .85rem; color: color-mix(in srgb, var(--dark-text) 70%, transparent); }
.hero-art { position: relative; aspect-ratio: 1; max-width: 560px; justify-self: center; width: 100%; }
.hero-art img { width: 100%; filter: drop-shadow(0 40px 60px rgba(0,0,0,.45)); animation: spin 90s linear infinite; }
.hero-badge { position: absolute; left: -4%; bottom: 8%; background: var(--bg); color: var(--text); border-radius: 16px; padding: .9rem 1.1rem; box-shadow: var(--shadow); display: flex; gap: .8rem; align-items: center; font-size: .9rem; max-width: 240px; }
.hero-badge b { font-family: var(--font-display); font-size: 1.05rem; display: block; }
.hero-badge .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.stamp { position: absolute; right: 2%; top: 4%; width: 120px; height: 120px; color: var(--gold); animation: spin 30s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Marquee strip */
.strip { background: var(--brand); color: var(--brand-ink); overflow: hidden; white-space: nowrap; font: italic 400 1.4rem/1 var(--font-display); }
.strip div { display: inline-flex; gap: 2.5rem; padding: 1.1rem 0; animation: marquee 40s linear infinite; }
.strip span::after { content: "✦"; margin-left: 2.5rem; font-style: normal; font-size: .9rem; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Story */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.story-art { position: relative; }
.story-art .frame { border-radius: 240px 240px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--surface-2); box-shadow: var(--shadow); }
.story-art .frame img { width: 100%; height: 100%; object-fit: cover; }
.story-art .small { position: absolute; right: -6%; bottom: -8%; width: 44%; border-radius: 50%; overflow: hidden; border: 8px solid var(--bg); box-shadow: var(--shadow); }
.signature { font: italic 400 1.6rem/1 var(--font-display); color: var(--brand); margin-top: 1.5rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.values div { border-top: 2px solid var(--brand); padding-top: .9rem; }
.values b { font-family: var(--font-display); font-size: 1.1rem; display: block; }
.values span { font-size: .92rem; color: var(--muted); }

/* Signature dishes */
.dishes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.dish { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.dish div { padding: 1.2rem 1.3rem 1.4rem; }
.dish h3 { font-size: 1.2rem; display: flex; justify-content: space-between; gap: .5rem; margin-bottom: .35rem; }
.dish h3 span { color: var(--brand); font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.dish p { color: var(--muted); font-size: .93rem; margin: 0; }

/* Dark section */
.dark { background: var(--dark); color: var(--dark-text); }
.dark .eyebrow { color: var(--gold); }
.dark .lead { color: color-mix(in srgb, var(--dark-text) 78%, transparent); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(4), .gallery figure:nth-child(5), .gallery figure:nth-child(6) { grid-column: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption { position: absolute; left: .8rem; bottom: .8rem; background: rgba(20,10,5,.72); color: #fff; font-size: .8rem; padding: .35rem .7rem; border-radius: 999px; backdrop-filter: blur(4px); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; margin: 0; }
.quote .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; }
.quote blockquote { margin: 0 0 1.2rem; font: 400 1.18rem/1.5 var(--font-display); }
.quote figcaption { font-size: .9rem; color: var(--muted); }
.quote figcaption b { color: var(--text); display: block; }

/* Reservation */
.reserve { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.hours { list-style: none; padding: 0; margin: 2rem 0 0; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px dashed rgba(255,255,255,.2); }
.hours li span:last-child { font-weight: 600; }
.hours .closed { opacity: .6; }
.hours .today { color: var(--gold); }
.form-card { background: var(--bg); color: var(--text); border-radius: calc(var(--radius) + 6px); padding: clamp(1.5rem, 4vw, 2.75rem); box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.form-card h3 { font-size: 1.7rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .85rem; font-weight: 600; }
.field input, .field select, .field textarea { font: inherit; font-size: 1rem; padding: .8rem .95rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--surface); color: var(--text); width: 100%; min-width: 0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent); }
.form-note { font-size: .85rem; color: var(--muted); margin: .8rem 0 0; }
.form-msg { margin-top: 1rem; padding: .9rem 1rem; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--accent) 14%, var(--surface)); color: var(--text); border-left: 4px solid var(--accent); }
.form-msg[hidden] { display: none; }

/* Visit / map */
.visit { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1.5rem; }
.map { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 380px; background: var(--surface-2); border: 1px solid var(--line); }
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; }
.map-pin .card { background: var(--surface); padding: .75rem 1rem; border-radius: 12px; box-shadow: var(--shadow); font-size: .9rem; text-align: center; white-space: nowrap; }
.map-pin .card b { font-family: var(--font-display); display: block; font-size: 1.05rem; }
.map-pin .pin { width: 22px; height: 22px; background: var(--brand); border: 4px solid var(--surface); border-radius: 50%; margin-top: .5rem; box-shadow: 0 0 0 8px color-mix(in srgb, var(--brand) 25%, transparent); }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.info-card h3 { font-size: 1rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: .14em; color: var(--brand); margin: 0 0 .3rem; }
.info-card p { margin: 0; }

/* CTA */
.cta { background: var(--brand); color: var(--brand-ink); border-radius: calc(var(--radius) + 10px); padding: clamp(2.5rem, 6vw, 4.5rem); display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(255,255,255,.08); }
.cta h2 { margin: 0; }
.cta .btn { background: var(--bg); color: var(--text); position: relative; z-index: 1; }

/* Footer */
.site-footer { background: var(--dark); color: color-mix(in srgb, var(--dark-text) 75%, transparent); padding: 4.5rem 0 2rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.site-footer .logo { color: var(--dark-text); }
.site-footer h2 { font: 600 .8rem/1 var(--font-body); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--dark-text); text-decoration: underline; }
.news { display: flex; gap: .5rem; margin-top: .8rem; }
.news input { flex: 1; min-width: 0; padding: .8rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: var(--dark-text); font: inherit; }
.news input::placeholder { color: color-mix(in srgb, var(--dark-text) 60%, transparent); }
.news .btn { padding: .8rem 1.2rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }

/* Menu page */
.page-hero { background: var(--dark); color: var(--dark-text); text-align: center; padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 50% 0%, color-mix(in srgb, var(--brand) 50%, transparent), transparent 70%); }
.page-hero > * { position: relative; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero .lead { color: color-mix(in srgb, var(--dark-text) 80%, transparent); margin-inline: auto; }
.menu-tabs { position: sticky; top: 76px; z-index: 20; background: var(--bg); border-bottom: 1px solid var(--line); }
.menu-tabs .wrap { display: flex; gap: .5rem; overflow-x: auto; padding: .9rem 0; scrollbar-width: none; }
.menu-tabs a { flex: none; padding: .55rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); text-decoration: none; color: var(--text); font-weight: 600; font-size: .92rem; }
.menu-tabs a:hover, .menu-tabs a.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.legend { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; margin-top: 2rem; font-size: .9rem; }
.legend span { display: inline-flex; align-items: center; gap: .45rem; }
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin: 0 0 1rem; }
.filters button { font: 600 .88rem/1 var(--font-body); padding: .6rem 1rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--text); cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }
.menu-cat { padding: 4rem 0 1rem; scroll-margin-top: 150px; }
.menu-cat-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; border-bottom: 2px solid var(--text); padding-bottom: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.menu-cat-head h2 { margin: 0; }
.menu-cat-head p { margin: 0; color: var(--muted); max-width: 26rem; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 4rem; list-style: none; padding: 0; margin: 0; }
.menu-item { padding: 1.3rem 0; border-bottom: 1px dashed var(--line); }
.menu-item[hidden] { display: none; }
.mi-top { display: flex; align-items: baseline; gap: .6rem; }
.mi-top h3 { font-size: 1.22rem; margin: 0; }
.mi-top .dots { flex: 1; border-bottom: 2px dotted color-mix(in srgb, var(--muted) 50%, transparent); transform: translateY(-4px); min-width: 1rem; }
.mi-top .price { font-weight: 700; color: var(--brand); font-variant-numeric: tabular-nums; }
.menu-item p { margin: .35rem 0 .5rem; color: var(--muted); font-size: .95rem; }
.tags { display: flex; gap: .35rem; flex-wrap: wrap; }
.tag { font: 700 .68rem/1 var(--font-body); letter-spacing: .06em; padding: .32rem .5rem; border-radius: 6px; text-transform: uppercase; }
.tag-v { background: #e3efd3; color: #33501a; }
.tag-vg { background: #d3ecd9; color: #14532d; }
.tag-gf { background: #fbead0; color: #7a4a06; }
.tag-df { background: #dde9f6; color: #1d3f66; }
.tag-sp { background: #fbdcd4; color: #8f1d0a; }
.tag-new { background: var(--brand); color: var(--brand-ink); }
.menu-feature { display: grid; grid-template-columns: 180px 1fr; gap: 1.5rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; margin: 2rem 0 0; }
.menu-feature img { border-radius: 12px; aspect-ratio: 1; object-fit: cover; }
.menu-feature h3 { margin-bottom: .3rem; }
.menu-feature p { margin: 0; color: var(--muted); }
.menu-note { font-size: .9rem; color: var(--muted); text-align: center; margin: 3rem auto 0; max-width: 40rem; }
.no-results { text-align: center; color: var(--muted); padding: 2rem 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1020px) {
  .dishes { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .visit, .reserve { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-links { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: .5rem 1.25rem 1.25rem; display: none; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links li a:not(.btn) { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 1rem; width: 100%; }
  .no-js .nav-links { display: flex; position: static; box-shadow: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { max-width: 420px; }
  .story { grid-template-columns: 1fr; }
  .story-art { max-width: 460px; margin-inline: auto 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery figure:nth-child(4), .gallery figure:nth-child(5) { grid-column: span 1; }
  .menu-list { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .topbar .hide-sm { display: none; }
  .dishes { grid-template-columns: 1fr; }
  .dish { display: grid; grid-template-columns: 120px 1fr; align-items: center; }
  .dish img { height: 100%; }
  .dish div { padding: 1rem; }
  .values { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
  .stamp { width: 90px; height: 90px; }
  .hero-meta { gap: 1.5rem; }
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature img { max-width: 200px; }
  .map-pin .card { white-space: normal; width: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
