*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --ink: #2d2c2a;
  --muted: #777571;
  --paper: #fff;
  --rail: 142px;
  --panel: calc((100% - var(--rail)) / 2);
  --line: rgba(45, 44, 42, .52);
  --soft-line: rgba(45, 44, 42, .17);
  --yellow: #e3bd48;
  --blue: #83b5c8;
  --coral: #dc755e;
  --serif: "Shippori Mincho", "Yu Mincho", serif;
  --latin: "Josefin Sans", sans-serif;
  --mono: "DM Mono", monospace;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .03em;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .05em;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

section, [id] {
  scroll-margin-top: 30px;
}

:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 300;
  padding: 8px 13px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.loader {
  display: none;
}

.js .loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: #fff;
  animation: loader-out 1.8s ease forwards;
}

.loader-mark {
  position: relative;
  width: 230px;
  height: 230px;
  display: grid;
  place-content: center;
  text-align: center;
  animation: loader-mark .85s ease .15s both;
}

.loader-mark span {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 1px;
  height: 45px;
  background: var(--ink);
}

.loader-mark span::before, .loader-mark span::after {
  content: "";
  position: absolute;
  left: -7px;
  width: 15px;
  height: 1px;
  background: var(--ink);
}

.loader-mark span::before { top: 12px; }
.loader-mark span::after { top: 27px; }
.loader-mark span:nth-child(1) { transform: translateX(-42px); }
.loader-mark span:nth-child(2) { transform: translateX(-21px) translateY(12px); }
.loader-mark span:nth-child(3) { transform: translateX(0); }

.loader-mark b {
  margin-top: 58px;
  font-family: var(--latin);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: .04em;
}

.loader-mark small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
}

@keyframes loader-mark {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes loader-out {
  0%, 68% { opacity: 1; visibility: visible; }
  99% { opacity: 0; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.mobile-header, .mobile-menu {
  display: none;
}

.wordmark {
  display: inline-grid;
  line-height: 1.1;
}

.wordmark span {
  font-family: var(--latin);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -.03em;
}

.wordmark small {
  margin-top: 3px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.visual-panel {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1;
  width: var(--panel);
  height: 100svh;
  overflow: hidden;
  background: #ebe7e0;
}

.visual-slides, .visual-slide {
  position: absolute;
  inset: 0;
}

.visual-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.visual-slide.is-active {
  opacity: 1;
}

.visual-slide img {
  height: 100%;
  object-fit: cover;
}

.visual-slide:nth-child(2) img { object-position: 56% center; }
.visual-slide:nth-child(3) img { object-position: center; }
.visual-slide:nth-child(4) img { object-position: 56% center; }

.visual-wash {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.visual-brand {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
  place-content: center;
  justify-items: center;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .22);
}

.visual-brand b {
  margin-top: 17px;
  font-family: var(--latin);
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
}

.visual-brand small {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
}

.bean-lines {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.bean-lines i {
  position: relative;
  width: 2px;
  height: 76px;
  display: block;
  background: currentColor;
}

.bean-lines i::before, .bean-lines i::after {
  content: "";
  position: absolute;
  left: -8px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.bean-lines i::before { top: 20px; }
.bean-lines i::after { top: 49px; }
.bean-lines i:nth-child(2), .bean-lines i:nth-child(4) { transform: translateY(12px); }

.visual-top {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: var(--latin);
  font-size: 10px;
  writing-mode: vertical-rl;
  text-shadow: 0 1px 7px rgba(0, 0, 0, .4);
}

.content-panel {
  position: relative;
  z-index: 2;
  width: var(--panel);
  margin-left: var(--panel);
  padding: 20px 40px 0;
  background: #fff;
}

.brand-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.brand-symbol {
  height: 118px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand-symbol i {
  position: relative;
  width: 2px;
  height: 96px;
  display: block;
  background: var(--ink);
}

.brand-symbol i::before, .brand-symbol i::after {
  content: "";
  position: absolute;
  left: -10px;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.brand-symbol i::before { top: 26px; }
.brand-symbol i::after { top: 63px; }
.brand-symbol i:nth-child(2), .brand-symbol i:nth-child(4) { transform: translateY(17px); }

.brand-stage h1 {
  margin-top: 24px;
  font-family: var(--latin);
  font-size: clamp(38px, 3.4vw, 53px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.02em;
}

.brand-stage > p {
  margin-top: 11px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
}

.brand-stage > small {
  position: absolute;
  right: 0;
  bottom: 28px;
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: .08em;
}

.content-block {
  padding: 85px 60px;
}

.intro {
  padding-top: 65px;
}

.kicker {
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .13em;
}

.intro h2, .feature-copy h2, .menu-section h2, .shop-section h2, .reserve-section h2 {
  margin-top: 20px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.75;
}

.intro > p:last-of-type, .feature-copy > p:last-child, .menu-note, .shop-section > p, .reserve-section > p {
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2.2;
}

.news-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 20px;
  margin-top: 62px;
  padding: 13px;
  border: 1px solid var(--soft-line);
  box-shadow: 0 4px 10px rgba(45, 44, 42, .1);
}

.news-card figure {
  overflow: hidden;
}

.news-card img {
  height: 100%;
  object-fit: cover;
}

.news-card div {
  display: grid;
  align-content: center;
}

.news-card time, .news-card a {
  font-family: var(--mono);
  font-size: 8px;
}

.news-card h3 {
  margin: 6px 0;
  font-size: 12px;
}

.news-card a {
  width: fit-content;
  border-bottom: 1px solid var(--ink);
}

.feature-section {
  padding: 100px 0;
}

.feature-photo {
  position: relative;
  aspect-ratio: 7 / 8;
  overflow: hidden;
  background: #eee;
}

.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .08);
}

.feature-photo img {
  height: 100%;
  object-fit: cover;
}

.feature-photo figcaption, .shop-main figcaption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--latin);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: .08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .22);
}

.feature-copy {
  padding: 58px 60px 0;
}

.feature-copy > p:last-child {
  max-width: 39em;
}

.mood-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 52px 60px 0;
  border-block: 1px solid var(--soft-line);
}

.mood-list article {
  min-width: 0;
  display: grid;
  justify-items: center;
  padding: 20px 5px;
}

.mood-list article + article {
  border-left: 1px solid var(--soft-line);
}

.dot {
  width: 9px;
  height: 9px;
  margin-bottom: 9px;
  border-radius: 50%;
}

.dot-yellow { background: var(--yellow); }
.dot-blue { background: var(--blue); }
.dot-coral { background: var(--coral); }

.mood-list b, .mood-list small {
  font-family: var(--latin);
  font-weight: 300;
  white-space: nowrap;
}

.mood-list b { font-size: 13px; }
.mood-list small { margin-top: 2px; font-size: 7px; }

.dish-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 54px 60px 0;
}

.dish-grid article {
  min-width: 0;
}

.dish-grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.dish-grid span {
  display: block;
  margin-top: 13px;
  font-family: var(--mono);
  font-size: 7px;
}

.dish-grid h3 {
  margin-top: 3px;
  font-size: 12px;
}

.dish-grid b {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
}

.line-menu {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.feature-section > .line-menu {
  margin-inline: 60px;
}

.line-menu div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--soft-line);
}

.line-menu dt, .line-menu dd {
  font-size: 11px;
}

.line-menu dd {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 9px;
}

.wide-note {
  margin: 55px 60px 0;
}

.wide-note img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wide-note figcaption, .owner-detail figcaption {
  padding-top: 13px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.space-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 55px 60px 0;
}

.space-pair figure {
  position: relative;
  min-width: 0;
}

.space-pair img {
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.space-pair figcaption {
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 7px;
}

.owner-detail {
  margin: 55px 60px 0;
}

.owner-detail img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-section {
  margin-top: 70px;
  padding-top: 115px;
  padding-bottom: 115px;
  border-block: 1px solid var(--soft-line);
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 58px;
}

.menu-columns h3 {
  font-family: var(--latin);
  font-size: 23px;
  font-weight: 300;
  letter-spacing: .05em;
}

.menu-columns section > small {
  font-family: var(--mono);
  font-size: 7px;
}

.menu-columns .line-menu {
  margin-top: 20px;
}

.menu-note {
  font-size: 10px;
}

.shop-section {
  padding-top: 100px;
  padding-inline: 60px;
}

.shop-main {
  position: relative;
  aspect-ratio: 7 / 8;
  margin: 0 -60px 70px;
  overflow: hidden;
}

.shop-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, .09);
}

.shop-main img {
  height: 100%;
  object-fit: cover;
}

.shop-data {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.shop-data div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--soft-line);
}

.shop-data dt, .shop-data dd {
  font-size: 10px;
}

.shop-data dt {
  font-family: var(--mono);
}

.address-lines {
  display: grid;
  gap: 4px;
}

.access-map {
  margin-top: 42px;
}

.access-map img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.outline-button {
  width: min(100%, 240px);
  min-height: 52px;
  display: grid;
  place-items: center;
  margin: 40px auto 0;
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .08em;
  border: 1px solid var(--ink);
  transition: color .3s ease, background .3s ease;
}

.outline-button:hover {
  color: #fff;
  background: var(--ink);
}

.reserve-section {
  margin: 60px -40px 0;
  padding: 115px 100px;
  text-align: center;
  background: #f7f5f0;
}

.phone-button {
  width: 100%;
  display: grid;
  margin-top: 47px;
  padding: 25px 18px;
  background: #fff;
  border: 1px solid var(--ink);
  transition: color .3s ease, background .3s ease;
}

.phone-button:hover {
  color: #fff;
  background: var(--ink);
}

.phone-button small {
  font-family: var(--mono);
  font-size: 8px;
}

.phone-button b {
  font-family: var(--latin);
  font-size: clamp(23px, 2.3vw, 34px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: .03em;
}

.reserve-section > small {
  display: block;
  margin-top: 23px;
  color: var(--muted);
  font-size: 8px;
}

.content-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 70px 20px 55px;
}

.content-footer p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  text-align: right;
}

.side-rail {
  position: fixed;
  top: 20px;
  right: 0;
  bottom: 12px;
  z-index: 20;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px 28px;
  background: #fff;
  border-left: 1px solid var(--line);
}

.rail-logo span {
  font-size: 17px;
}

.rail-logo small {
  font-size: 5px;
}

.side-rail nav {
  display: grid;
  gap: 14px;
  margin-top: 47px;
}

.side-rail nav a {
  position: relative;
  width: fit-content;
  font-family: var(--latin);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: .07em;
  transition: opacity .25s ease;
}

.side-rail nav a:hover {
  opacity: .45;
}

.side-rail nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .2s ease;
}

.side-rail nav a.is-current::before {
  opacity: 1;
}

.side-rail nav a:nth-child(3)::before, .side-rail nav a:nth-child(4)::before { background: var(--blue); }
.side-rail nav a:nth-child(5)::before, .side-rail nav a:nth-child(9)::before { background: var(--coral); }

.rail-meta {
  display: grid;
  gap: 8px;
  margin-top: 33px;
  font-family: var(--latin);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .05em;
}

.rail-meta span {
  font-family: var(--latin);
}

.rail-meta span:last-child {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
}

.rail-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  align-self: flex-end;
  font-family: var(--latin);
  font-size: 9px;
  writing-mode: vertical-rl;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .reveal {
  transition: opacity .5s ease, transform .5s ease;
}

@media (max-width: 1100px) and (min-width: 901px) {
  :root {
    --rail: 120px;
  }

  .content-panel {
    padding-inline: 28px;
  }

  .content-block, .feature-copy {
    padding-inline: 38px;
  }

  .mood-list, .dish-grid, .feature-section > .line-menu, .wide-note, .space-pair, .owner-detail {
    margin-inline: 38px;
  }

  .shop-section {
    padding-inline: 38px;
  }

  .shop-main {
    margin-inline: -38px;
  }

  .reserve-section {
    margin-inline: -28px;
    padding-inline: 60px;
  }

  .side-rail {
    padding-inline: 24px 14px;
  }
}

@media (max-width: 900px) {
  :root {
    --rail: 0px;
    --panel: 100vw;
  }

  section, [id] {
    scroll-margin-top: 60px;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(45, 44, 42, .08);
  }

  .mobile-header .wordmark span {
    font-size: 20px;
  }

  .mobile-header .wordmark small {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .mobile-menu summary {
    width: 60px;
    height: 60px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary i {
    width: 21px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform .35s ease, opacity .25s ease;
  }

  .mobile-menu[open] summary i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mobile-menu[open] summary i:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-drawer {
    position: fixed;
    inset: 60px 0 0;
    z-index: 110;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 38px 40px 100px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .4s ease;
    overflow-y: auto;
  }

  .mobile-menu[open] .mobile-drawer {
    transform: translateX(0);
  }

  .mobile-drawer a {
    padding: 12px 0;
    font-family: var(--latin);
    font-size: 19px;
    font-weight: 300;
    letter-spacing: .07em;
    border-bottom: 1px solid var(--soft-line);
  }

  .visual-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100svh;
  }

  .visual-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(25, 25, 25, .08);
  }

  .visual-brand {
    display: grid;
  }

  .visual-top {
    bottom: 23px;
  }

  .content-panel {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }

  .brand-stage {
    position: absolute;
    width: 1px;
    height: 1px;
    aspect-ratio: auto;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .side-rail {
    display: none;
  }

  .content-block {
    padding: 80px 40px;
  }

  .intro {
    padding-top: 72px;
  }

  .intro h2, .feature-copy h2, .menu-section h2, .shop-section h2, .reserve-section h2 {
    margin-top: 17px;
    font-size: clamp(22px, 6.5vw, 28px);
    line-height: 1.8;
  }

  .intro > p:last-of-type, .feature-copy > p:last-child, .menu-note, .shop-section > p, .reserve-section > p {
    font-size: 11px;
    line-height: 2.15;
  }

  .news-card {
    grid-template-columns: 105px 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .feature-section {
    padding: 100px 0;
  }

  .feature-photo {
    aspect-ratio: 8 / 9;
  }

  .feature-photo figcaption, .shop-main figcaption {
    font-size: clamp(43px, 13vw, 55px);
  }

  .feature-copy {
    padding: 46px 40px 0;
  }

  .mood-list, .dish-grid, .feature-section > .line-menu, .wide-note, .space-pair, .owner-detail {
    margin-inline: 40px;
  }

  .mood-list {
    margin-top: 45px;
  }

  .mood-list b {
    font-size: 11px;
  }

  .mood-list small {
    font-size: 6px;
  }

  .dish-grid, .wide-note, .space-pair, .owner-detail {
    margin-top: 47px;
  }

  .dish-grid h3 {
    font-size: 11px;
  }

  .menu-section {
    margin-top: 20px;
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .menu-columns {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 48px;
  }

  .shop-section {
    padding: 100px 40px;
  }

  .shop-main {
    aspect-ratio: 8 / 9;
    margin: 0 -40px 64px;
  }

  .reserve-section {
    margin: 30px 0 0;
    padding: 95px 40px 115px;
  }

  .content-footer {
    padding: 65px 20px 105px;
  }

  .js .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--ink);
    transition: opacity .25s ease, transform .25s ease;
  }

  .mobile-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  .mobile-cta a {
    min-height: 52px;
    display: grid;
    place-items: center;
    font-family: var(--latin);
    font-size: 11px;
    letter-spacing: .09em;
  }

  .mobile-cta a + a {
    color: #fff;
    background: var(--ink);
  }
}

@media (max-width: 430px) {
  .content-block, .feature-copy, .shop-section, .reserve-section {
    padding-inline: 28px;
  }

  .mood-list, .dish-grid, .feature-section > .line-menu, .wide-note, .space-pair, .owner-detail {
    margin-inline: 28px;
  }

  .shop-main {
    margin-inline: -28px;
  }

  .news-card {
    grid-template-columns: 88px 1fr;
  }

  .mood-list article {
    padding-inline: 2px;
  }

  .mood-list b {
    font-size: 10px;
  }

  .space-pair figcaption {
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js .loader {
    display: none;
  }

  .motion-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
