/* ============================================================
   Krispy Bun Bakery & Takeaway — styles
   Theme: red · brown · white   |   Type: Hanken Grotesk (clean, single family)
   ============================================================ */

:root {
  /* surfaces */
  --bg:        oklch(1 0 0);
  --surface:   oklch(0.984 0.006 45);
  --surface-2: oklch(0.964 0.010 46);

  /* ink (brown-black) */
  --ink:   oklch(0.25 0.028 40);
  --ink-2: oklch(0.42 0.028 42);
  --muted: oklch(0.54 0.022 42);
  --line:  oklch(0.905 0.012 48);

  /* brand red */
  --red:        oklch(0.565 0.205 27);   /* bright brand red — fills, accents */
  --red-ink:    oklch(0.505 0.188 27);   /* red on white: buttons (white text), links ≈4.7:1 */
  --red-strong: oklch(0.44 0.165 27);    /* hover / active */
  --red-tint:   oklch(0.965 0.022 30);   /* soft red wash */

  /* brown */
  --brown:   oklch(0.33 0.052 45);       /* dark band */
  --brown-2: oklch(0.265 0.045 42);      /* footer */
  --cream:   oklch(0.955 0.016 66);
  --gold:    oklch(0.74 0.12 68);        /* small accents / stars */

  /* on-dark */
  --on-dark:   oklch(0.960 0.008 60);
  --on-dark-2: oklch(0.815 0.016 55);
  --line-dark: oklch(0.44 0.03 45);

  /* type */
  --f-text: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step-hero: clamp(2.1rem, 1.4rem + 2.9vw, 3.5rem);
  --step-h2:   clamp(1.65rem, 1.3rem + 1.7vw, 2.4rem);
  --step-h3:   clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);

  /* space */
  --wrap: 1180px;
  --gutter: clamp(1.15rem, 0.6rem + 2.4vw, 2.5rem);
  --sec-y: clamp(3.5rem, 2.4rem + 5vw, 6.5rem);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --shadow-sm: 0 1px 2px oklch(0.3 0.02 40 / 0.06), 0 4px 14px oklch(0.3 0.02 40 / 0.05);
  --shadow-md: 0 12px 30px oklch(0.28 0.03 40 / 0.10), 0 2px 6px oklch(0.28 0.03 40 / 0.06);
  --shadow-lg: 0 28px 56px oklch(0.25 0.03 40 / 0.15);

  --z-sticky: 100;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.05rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.015em; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2.5px solid var(--red-ink); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: #fff; padding: 0.6rem 1rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 999;
  transition: top 0.2s var(--ease); text-decoration: none; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font: inherit; font-weight: 600; line-height: 1; text-decoration: none;
  padding: 0.72rem 1.15rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
}
.btn .ico { flex: none; }
.btn-lg { padding: 0.92rem 1.55rem; font-size: 1rem; }

.btn-primary { background: var(--red-ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--red-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); transform: translateY(-2px); }

.btn-wa { background: oklch(0.62 0.14 155); color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover { background: oklch(0.55 0.14 155); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- header / nav ---------- */
.site-head {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: oklch(1 0 0 / 0.85); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-head.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 22px oklch(0.3 0.02 40 / 0.06); }
.head-inner { display: flex; align-items: center; gap: 1.4rem; min-height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand-word { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.02em; }
.brand-word b { color: var(--red-ink); font-weight: 600; }

.nav { display: flex; gap: 1.5rem; font-weight: 500; font-size: 0.96rem; }
.nav a { text-decoration: none; color: var(--ink-2); position: relative; padding: 0.35rem 0; transition: color 0.2s var(--ease); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.head-call span { font-variant-numeric: tabular-nums; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(1.5rem, 1rem + 2.5vw, 3rem); padding-bottom: var(--sec-y); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(1.75rem, 1rem + 4vw, 4rem); align-items: center; }
.hero-copy { max-width: 33rem; }

.hero-status {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 1.5rem;
}
.hero-status .status-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--muted); flex: none; }
.hero-status .status-text { color: var(--ink); }
.hero-status.is-open   .status-dot { background: oklch(0.6 0.17 150); box-shadow: 0 0 0 4px oklch(0.6 0.17 150 / 0.16); animation: pulse 2.6s var(--ease) infinite; }
.hero-status.is-closed .status-dot { background: var(--red); box-shadow: 0 0 0 4px oklch(0.6 0.2 27 / 0.14); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.6 0.17 150 / 0.5); }
  70%  { box-shadow: 0 0 0 8px oklch(0.6 0.17 150 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.6 0.17 150 / 0); }
}

.hero-title { font-size: var(--step-hero); line-height: 1.05; text-wrap: balance; margin-bottom: 1.2rem; }
.hero-title b { color: var(--red-ink); font-weight: 600; }
.hero-lede { color: var(--ink-2); font-size: 1.08rem; line-height: 1.58; max-width: 33rem; margin-bottom: 1.9rem; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.7rem; }
.hero-trust { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; color: var(--muted); flex-wrap: wrap; }
.hero-trust span:last-child { max-width: 27rem; }

.stars { display: inline-flex; gap: 2px; color: var(--gold); flex: none; }
.stars-lg { gap: 3px; margin-bottom: 1.2rem; }

.hero-media { position: relative; }
.ph-hero { aspect-ratio: 4 / 5; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; right: -12px; bottom: -16px;
  background: var(--red-ink); color: #fff; border-radius: 50%;
  width: clamp(96px, 7vw + 54px, 124px); height: clamp(96px, 7vw + 54px, 124px);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-md); border: 4px solid #fff;
}
.hero-badge b { display: block; font-size: clamp(1.4rem, 1.2vw + 1rem, 1.8rem); font-weight: 600; line-height: 1; }
.hero-badge span { display: block; margin-top: 0.15rem; font-size: 0.62rem; letter-spacing: 0.09em; text-transform: uppercase; opacity: 0.9; }

/* ---------- image slots (graceful) ---------- */
.ph {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--r-md);
  background: linear-gradient(150deg, var(--surface), var(--surface-2)); isolation: isolate;
}
.ph img { width: 100%; height: 100%; object-fit: cover; z-index: 1; position: relative; transition: transform 0.6s var(--ease); }
.ph::after {
  content: var(--label, "photo"); position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; color: var(--muted); padding: 1rem; text-align: center;
}
.ph.is-empty img { display: none; }

/* ---------- section scaffold ---------- */
.section { padding-block: var(--sec-y); }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.25rem 2.5rem; margin-bottom: clamp(2rem, 1.4rem + 2.4vw, 3.25rem); }
.section-title { font-size: var(--step-h2); text-wrap: balance; }
.section-title b { color: var(--red-ink); font-weight: 600; }
.section-note { color: var(--ink-2); max-width: 38ch; font-size: 1.02rem; text-wrap: pretty; }
.kicker { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--red-ink); margin-bottom: 0.6rem; }

/* ---------- favourites grid (asymmetric, real photos) ---------- */
.fav-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 0.5rem + 1.6vw, 1.6rem); }
.fav { display: flex; flex-direction: column; }
.fav .ph { width: 100%; transition: box-shadow 0.4s var(--ease); }
.fav:hover .ph { box-shadow: var(--shadow-md); }
.fav:hover .ph img { transform: scale(1.045); }
.fav-a { grid-column: span 7; } .fav-a .ph { aspect-ratio: 16 / 11; }
.fav-b { grid-column: span 5; } .fav-b .ph { aspect-ratio: 4 / 5; }
.fav-c { grid-column: span 5; } .fav-c .ph { aspect-ratio: 4 / 5; }
.fav-d { grid-column: span 7; } .fav-d .ph { aspect-ratio: 16 / 11; }
.fav-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem); }
.fav-body { padding-top: 1rem; max-width: 46ch; }
.fav-name { font-size: var(--step-h3); margin-bottom: 0.35rem; }
.fav-desc { color: var(--ink-2); font-size: 0.96rem; text-wrap: pretty; }

/* ---------- menu ---------- */
.menu { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.back-link { display: inline-flex; align-items: center; gap: 0.35rem; text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--ink-2); margin-bottom: 1.5rem; transition: color 0.2s var(--ease), gap 0.2s var(--ease); }
.back-link:hover { color: var(--red-ink); gap: 0.55rem; }
.menu-head-left { display: flex; align-items: center; gap: clamp(0.9rem, 0.5rem + 1.2vw, 1.4rem); }
.menu-logo { flex: none; width: clamp(84px, 6vw + 56px, 120px); height: auto; border-radius: 50%; box-shadow: var(--shadow-sm); }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 0.8rem + 2vw, 2.75rem) clamp(1.75rem, 1rem + 2.5vw, 3.5rem);
  align-items: start;
}
.menu-cat { break-inside: avoid; }
.menu-cat-wide { grid-column: 1 / -1; }
.menu-cat h3 {
  font-size: 1.15rem; color: var(--red-ink);
  padding-bottom: 0.55rem; margin-bottom: 0.6rem; border-bottom: 2px solid var(--red);
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem;
}
.menu-cat h3 .cat-note { font-size: 0.72rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; text-transform: uppercase; }
.mrow { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.42rem 0; }
.mrow + .mrow { border-top: 1px dashed var(--line); }
.mname { color: var(--ink); font-weight: 500; }
.mname small { display: block; font-weight: 400; font-size: 0.82rem; color: var(--muted); margin-top: 1px; }
.mlead { flex: 1; align-self: center; height: 1px; border-bottom: 1px dotted var(--line); min-width: 12px; }
.mprice { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* gatsby half/full */
.gatsby { display: grid; grid-template-columns: 1fr; }
.gatsby .grow { display: grid; grid-template-columns: 1fr 4.5rem 4.5rem; align-items: baseline; gap: 0.5rem; padding: 0.42rem 0; }
.gatsby .grow + .grow { border-top: 1px dashed var(--line); }
.gatsby .ghead { color: var(--muted); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; padding-bottom: 0.2rem; }
.gatsby .ghead span:not(:first-child), .gatsby .grow .mprice { text-align: right; }
@media (min-width: 560px) { .menu-cat-wide .gatsby { grid-template-columns: 1fr 1fr; column-gap: clamp(1.75rem, 1rem + 2.5vw, 3.5rem); } .menu-cat-wide .gatsby .ghead-row-2 { display: none; } }

.menu-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.5rem; margin-top: clamp(2rem, 1.4rem + 2vw, 3rem); padding-top: 1.5rem; border-top: 1px solid var(--line); }
.menu-foot p { color: var(--ink-2); flex: 1 1 240px; }
.menu-foot-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- reviews (brown band) ---------- */
.loved {
  background: var(--brown); color: var(--on-dark); padding-block: var(--sec-y);
  background-image:
    radial-gradient(75% 120% at 88% 0%, oklch(0.4 0.06 40 / 0.55), transparent 55%),
    radial-gradient(70% 100% at 0% 100%, oklch(0.32 0.09 28 / 0.5), transparent 50%);
}
.loved-kicker { font-size: clamp(1.35rem, 1.05rem + 1.3vw, 1.9rem); color: var(--on-dark); margin-bottom: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); max-width: 22ch; }
.loved-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(1.5rem, 0.8rem + 2.4vw, 3.5rem); }
.quote { margin: 0; }
.quote blockquote { margin: 0; }
.quote blockquote p { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.5rem); line-height: 1.4; font-weight: 500; color: var(--on-dark); text-wrap: pretty; }
.quote blockquote em { font-style: normal; color: var(--gold); }
.quote figcaption { margin-top: 1.35rem; padding-top: 1rem; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 0.15rem; }
.quote-name { font-weight: 600; color: var(--on-dark); }
.quote-meta { font-size: 0.85rem; color: var(--on-dark-2); }

/* ---------- visit + hours ---------- */
.visit-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.visit-media .ph { aspect-ratio: 4 / 5; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.visit-info .section-title { margin-bottom: 1rem; }
.visit-info .section-note { margin-bottom: 1.75rem; }

.detail-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.75rem; }
.detail-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.detail-ico { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--red-tint); color: var(--red-ink); }
.detail-label { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; margin-bottom: 0.15rem; }
.detail-value { font-size: 1.02rem; color: var(--ink); text-decoration: none; font-weight: 500; }
a.detail-value:hover { color: var(--red-ink); text-decoration: underline; text-underline-offset: 3px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.75rem; }

.socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 0.45rem; text-decoration: none;
  font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
  padding: 0.5rem 0.85rem; border: 1px solid var(--line); border-radius: 999px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.social:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }
.social svg { flex: none; }

.hours-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem, 1rem + 1.4vw, 2rem); box-shadow: var(--shadow-sm); }
.hours-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.hours-title { font-size: 1.25rem; }
.hours-status { font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 999px; white-space: nowrap; }
.hours-status.is-open   { color: oklch(0.4 0.11 150); background: oklch(0.945 0.055 150); }
.hours-status.is-closed { color: var(--red-strong); background: var(--red-tint); }

.hours-list { border-top: 1px solid var(--line); }
.hours-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 0.68rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 8px; }
.hours-list .d { font-weight: 600; color: var(--ink); }
.hours-list .t { color: var(--ink-2); text-align: right; font-variant-numeric: tabular-nums; font-size: 0.94rem; }
.hours-list li.is-closed .t { color: var(--muted); }
.hours-list li.is-today { background: var(--red-tint); padding-inline: 0.8rem; margin-inline: -0.3rem; }
.hours-list li.is-today .d { color: var(--red-ink); }
.hours-list li.is-today .d::after {
  content: "Today"; margin-left: 0.5rem; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
  color: #fff; background: var(--red-ink); padding: 0.12rem 0.4rem; border-radius: 5px; vertical-align: middle;
}
.hours-foot { margin-top: 1rem; font-size: 0.88rem; color: var(--muted); text-wrap: pretty; }

/* ---------- footer ---------- */
.site-foot { background: var(--brown-2); color: var(--on-dark-2); padding-top: clamp(3rem, 2rem + 3vw, 4.5rem); padding-bottom: 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.foot-brand { display: flex; flex-direction: column; gap: 0.9rem; }
.foot-logo { display: flex; align-items: center; gap: 0.9rem; }
.foot-logo img { width: 84px; height: 84px; border-radius: 50%; box-shadow: 0 0 0 4px oklch(1 0 0 / 0.06); }
.foot-word { color: var(--on-dark); font-size: 1.3rem; font-weight: 600; letter-spacing: -0.02em; }
.foot-tag { color: var(--on-dark-2); max-width: 32ch; }
.foot-h { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; margin-bottom: 0.7rem; }
.foot-col a { display: inline-block; color: var(--on-dark); text-decoration: none; line-height: 1.6; }
.foot-col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot-sub { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--on-dark-2); }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; padding-top: 1.5rem; font-size: 0.85rem; color: var(--on-dark-2); }

/* ---------- reveal motion ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: none; order: 2; }
  .hero-media { order: 1; max-width: 27rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-media { max-width: 26rem; order: 2; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .head-call span { display: none; }
  .head-call { padding: 0.65rem; }
  .fav-a, .fav-b, .fav-c, .fav-d { grid-column: 1 / -1; }
  .fav-a .ph, .fav-b .ph, .fav-c .ph, .fav-d .ph { aspect-ratio: 16 / 11; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .gatsby .grow, .gatsby .ghead { grid-template-columns: 1fr 3.4rem 3.4rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-base { justify-content: flex-start; }
}

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