:root {
  --ink: #1c303a;
  --navy: #12384a;
  --sea: #8caebb;
  --ivory: #f6f1ea;
  --paper: rgba(246, 241, 234, 0.88);
  --sand: #d8cbb8;
  --white: #ffffff;
  --line: rgba(28, 48, 58, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: "Noto Serif JP", serif;
  background: var(--navy);
}

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

figure {
  margin: 0;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  background-image: url("../images/bg-sea.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: bg-breathe 24s ease-in-out infinite alternate;
}

.site-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(140, 174, 187, 0.16) 42%, rgba(18, 56, 74, 0.2)),
    linear-gradient(0deg, rgba(18, 56, 74, 0.24), rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.3));
  content: "";
}

.brand {
  position: fixed;
  top: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 56px);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  opacity: 0;
  animation: fade-in 1.1s ease 0.2s forwards;
}

.brand__mark {
  position: relative;
  width: 70px;
  height: 48px;
}

.brand__cup {
  position: absolute;
  right: 8px;
  bottom: 6px;
  width: 48px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 46% 46%;
}

.brand__cup::before,
.brand__cup::after {
  position: absolute;
  left: 9px;
  width: 31px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.brand__cup::before {
  top: 8px;
}

.brand__cup::after {
  top: 15px;
}

.brand__handle {
  position: absolute;
  right: -12px;
  top: 9px;
  width: 17px;
  height: 14px;
  border: 1px solid currentColor;
  border-left: 0;
  border-radius: 0 14px 14px 0;
}

.brand__wave {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 46px;
  height: 20px;
  border-top: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(8deg);
}

.brand__moon {
  position: absolute;
  top: 2px;
  left: 32px;
  width: 20px;
  height: 20px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}

.brand__name {
  display: grid;
  gap: 7px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.18em;
}

.brand__name strong {
  font-size: 17px;
  font-weight: 600;
}

.brand__name span {
  font-size: 12px;
  letter-spacing: 0.28em;
}

.footer-note {
  position: fixed;
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 56px);
  z-index: 5;
  display: grid;
  gap: 8px;
  max-width: 240px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 18px rgba(18, 56, 74, 0.34);
}

.footer-note__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.footer-note__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.magazine {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  min-height: 100svh;
  padding: clamp(24px, 4vw, 52px);
}

.panel {
  width: 33%;
  min-width: 430px;
  max-width: 640px;
  height: 88svh;
  margin-left: clamp(120px, 12vw, 230px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(246, 241, 234, 0.18)),
    var(--paper);
  box-shadow: 0 28px 90px rgba(12, 38, 49, 0.3);
  opacity: 0;
  transform: translateY(34px);
  animation: panel-in 1.15s ease 0.5s forwards;
  backdrop-filter: blur(13px) saturate(1.05);
}

.panel__scroller {
  display: grid;
  gap: 120px;
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: none;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.panel__scroller::-webkit-scrollbar {
  display: none;
}

.section {
  position: relative;
  display: grid;
  align-content: start;
  height: 88svh;
  padding: clamp(42px, 5.2vh, 64px) clamp(34px, 4vw, 56px);
}

.section__meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 clamp(14px, 2.2vh, 22px);
  color: rgba(28, 48, 58, 0.72);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section__meta::after {
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
  order: -1;
}

.section__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(29px, 2.5vw, 39px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.section__text {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(28, 48, 58, 0.72);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.cafe-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cafe-signals__item {
  padding: 7px;
  border: 1px solid rgba(28, 48, 58, 0.2);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(28, 48, 58, 0.78);
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.13em;
}

.section__image {
  position: relative;
  margin: clamp(18px, 3vh, 28px) calc(clamp(34px, 4vw, 56px) * -1) 0;
  min-height: 180px;
  overflow: hidden;
  background: var(--sand);
}

.section__image--large {
  min-height: 240px;
}

.section__image img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.view-scenes {
  margin-top: clamp(20px, 3vh, 30px);
}

.view-scenes__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.view-scenes__tab {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(28, 48, 58, 0.18);
  background: rgba(255, 255, 255, 0.26);
  color: rgba(28, 48, 58, 0.62);
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.view-scenes__tab.is-active {
  border-color: rgba(18, 56, 74, 0.48);
  background: rgba(18, 56, 74, 0.08);
  color: var(--navy);
}

.view-scenes__visual {
  position: relative;
  min-height: clamp(240px, 35svh, 360px);
  margin: 0 calc(clamp(34px, 4vw, 56px) * -1);
  overflow: hidden;
  background: var(--sand);
}

.view-scenes__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(3px);
  transform: translateY(18px) scale(1.025);
  transition:
    opacity 0.95s ease,
    filter 0.95s ease,
    transform 0.95s ease;
}

.view-scenes__image.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.view-scenes__caption {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(28, 48, 58, 0.66);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.view-scenes__caption.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.concept-visual {
  isolation: isolate;
}

.concept-visual__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(24px) scale(1.03);
  transition:
    opacity 1.15s ease,
    filter 1.15s ease,
    transform 1.15s ease;
}

.concept-visual__image.is-active {
  z-index: 1;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.menu-list,
.time-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.menu-list__item,
.time-list__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.menu-list__image,
.time-list__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.menu-list__image img,
.time-list__image img {
  height: 100%;
  object-fit: cover;
}

.menu-list__title,
.time-list__title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.menu-list__note,
.time-list__note {
  display: block;
  margin-top: 4px;
  color: rgba(28, 48, 58, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.time-swiper {
  position: relative;
  width: 100%;
  min-height: clamp(330px, 45svh, 430px);
  margin: clamp(22px, 3.2vh, 34px) 0 0;
  overflow: hidden;
  background: rgba(216, 203, 184, 0.42);
}

.time-swiper__slide {
  position: relative;
  display: grid;
  min-height: clamp(330px, 45svh, 430px);
}

.time-swiper__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--sand);
}

.time-swiper__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 56, 74, 0.04), rgba(18, 56, 74, 0.34));
  content: "";
}

.time-swiper__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.time-swiper__text {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 78%;
  padding: 0 0 clamp(32px, 4vh, 44px) clamp(24px, 3vw, 36px);
  color: var(--white);
  text-shadow: 0 2px 18px rgba(18, 56, 74, 0.22);
}

.time-swiper__label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.time-swiper__note {
  margin: 6px 0 0;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.time-swiper__pagination.swiper-pagination {
  right: clamp(20px, 2.6vw, 32px);
  bottom: 20px;
  left: auto;
  display: flex;
  width: auto;
  gap: 8px;
}

.time-swiper .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  opacity: 1;
}

.time-swiper .swiper-pagination-bullet-active {
  background: var(--white);
  transform: scale(1.28);
}

.time-swiper__button.swiper-button-prev,
.time-swiper__button.swiper-button-next {
  top: auto;
  right: clamp(20px, 2.6vw, 32px);
  bottom: 42px;
  left: auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: var(--white);
  opacity: 0.82;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.time-swiper__button.swiper-button-prev {
  right: calc(clamp(20px, 2.6vw, 32px) + 38px);
}

.time-swiper__button::after {
  font-size: 10px;
  font-weight: 700;
}

.time-swiper__button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.section--menu {
  align-content: start;
  height: auto;
  min-height: 107svh;
  overflow: visible;
}

.menu-intro {
  padding: 0;
}

.menu-gallery {
  display: grid;
  gap: 24px;
  margin: 28px 0 0;
  padding: 0;
  overflow: visible;
}

.menu-gallery__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  opacity: 1;
}

.menu-gallery__image {
  aspect-ratio: 4 / 3;
  min-height: 180px;
  overflow: hidden;
  background: var(--sand);
}

.menu-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-gallery__text {
  display: grid;
  gap: 4px;
}

.menu-gallery__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.menu-gallery__note {
  color: rgba(28, 48, 58, 0.66);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.menu-gallery__price {
  color: rgba(18, 56, 74, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.access {
  display: grid;
  gap: 13px;
  margin-top: 24px;
  color: rgba(28, 48, 58, 0.76);
  font-size: 14px;
  line-height: 1.9;
}

.access__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.access__term {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.map {
  position: relative;
  min-height: clamp(240px, 34svh, 360px);
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(28, 48, 58, 0.14);
  background: rgba(216, 203, 184, 0.28);
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: saturate(0.82) contrast(0.94);
}

.section--open-days {
  height: auto;
  min-height: 88svh;
}

.open-days__calendar {
  margin: clamp(20px, 3vh, 30px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(28, 48, 58, 0.12);
  background: rgba(255, 255, 255, 0.3);
}

.open-days__calendar img {
  width: 100%;
  height: auto;
}

.section--follow {
  height: 70svh;
  padding: clamp(42px, 5.2vh, 64px) clamp(34px, 4vw, 56px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    #0f2530;
  color: var(--white);
}

.follow {
  display: grid;
  align-content: center;
  height: 100%;
  min-height: 0;
}

.section__meta--dark,
.section__title--dark,
.section__text--dark {
  color: rgba(255, 255, 255, 0.9);
}

.section__meta--dark {
  color: rgba(255, 255, 255, 0.66);
}

.section__text--dark {
  color: rgba(255, 255, 255, 0.68);
}

.follow__line {
  width: 100%;
  height: 1px;
  margin: clamp(26px, 4vh, 42px) 0;
  background: rgba(255, 255, 255, 0.28);
}

.follow__body {
  display: grid;
  justify-items: end;
  gap: 20px;
}

.follow__label {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.follow__links {
  display: flex;
  gap: 18px;
}

.follow__link {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.follow__link:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.follow__icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.side-nav {
  position: fixed;
  top: 50%;
  right: clamp(28px, 5vw, 72px);
  z-index: 5;
  display: grid;
  align-items: center;
  min-height: 520px;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(-50%);
  animation: nav-in 1s ease 0.8s forwards;
}

.side-nav__wave {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 6px;
  width: 24px;
  height: calc(100% - 32px);
  overflow: visible;
  color: rgba(255, 255, 255, 0.64);
}

.side-nav__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-nav__button {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
  min-width: 190px;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  text-shadow: 0 2px 18px rgba(18, 56, 74, 0.45);
}

.side-nav__dot {
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: width 0.45s ease, height 0.45s ease, background 0.45s ease, color 0.45s ease;
}

.side-nav__button.is-active {
  color: var(--white);
}

.side-nav__button.is-active .side-nav__dot {
  width: 17px;
  height: 17px;
  background: var(--white);
}

.side-nav__index,
.side-nav__label,
.side-nav__caption {
  display: block;
}

.side-nav__index,
.side-nav__label {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.18em;
}

.side-nav__index {
  font-size: 15px;
}

.side-nav__label {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.side-nav__caption {
  margin-top: 3px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.mobile-dots {
  display: none;
}

@media (max-width: 1099px) {
  .side-nav {
    display: none;
  }

  .mobile-dots {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 8;
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(18, 56, 74, 0.42);
    backdrop-filter: blur(12px);
  }

  .mobile-dots__button {
    width: 8px;
    height: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
  }

  .mobile-dots__button.is-active {
    background: var(--white);
    transform: scale(1.35);
  }
}

@keyframes bg-breathe {
  to {
    transform: scale(1.045);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes panel-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nav-in {
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  body {
    overflow: auto;
  }

  .page {
    overflow: visible;
  }

  .site-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: none;
  }

  .brand {
    position: absolute;
    top: 24px;
    left: 22px;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(18, 56, 74, 0.38);
  }

  .brand__mark {
    width: 54px;
    height: 40px;
  }

  .brand__cup {
    width: 39px;
    height: 27px;
  }

  .brand__wave {
    width: 34px;
  }

  .brand__name strong {
    font-size: 15px;
  }

  .brand__name span {
    font-size: 10px;
  }

  .footer-note {
    position: absolute;
    top: 46svh;
    bottom: auto;
    left: 22px;
  }

  .magazine {
    display: block;
    min-height: auto;
    padding: 73svh 18px 90px;
  }

  .panel {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    margin-left: 0;
    border-radius: 20px;
  }

  .panel__scroller {
    gap: 120px;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .section {
    height: auto;
    min-height: auto;
    padding: 46px 24px;
    scroll-snap-align: none;
  }

  .section__title {
    font-size: clamp(30px, 9vw, 40px);
  }

  #time .section__title {
    font-size: clamp(26px, 7.4vw, 36px);
    letter-spacing: 0.06em;
  }

  .section__image,
  .section__image--large,
  .view-scenes__visual {
    min-height: 260px;
    margin-right: -24px;
    margin-left: -24px;
  }

  .view-scenes__tab {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .menu-list__item,
  .access__row {
    grid-template-columns: 1fr;
  }

  .section--open-days {
    min-height: auto;
  }

  .section--follow {
    min-height: 540px;
    padding: 54px 24px;
  }

  .follow__body {
    justify-items: start;
  }

  .follow__link {
    width: 52px;
    height: 52px;
  }

  .time-list__image {
    max-width: 170px;
  }

  .time-swiper,
  .time-swiper__slide {
    min-height: 330px;
  }

  .time-swiper__text {
    max-width: 86%;
    padding: 0 22px 36px;
  }

  .time-swiper__label {
    font-size: 30px;
  }

  .time-swiper__button.swiper-button-prev,
  .time-swiper__button.swiper-button-next {
    display: none;
  }

  .section--menu {
    min-height: auto;
    overflow: visible;
  }

  .menu-intro {
    position: static;
    padding-bottom: 0;
    background: transparent;
  }

  .menu-gallery {
    height: auto;
    min-height: 0;
    margin-right: 0;
    padding-right: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .menu-gallery__item {
    grid-template-columns: 1fr;
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .menu-gallery__image {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .brand,
  .panel,
  .side-nav,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
