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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  font-family: "Teachers", sans-serif;
  color: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.nebula-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(185deg, #1F1C2D 4.51%, #142426 87.92%);
  animation: nebulaMove 25s ease infinite alternate;
}

@keyframes nebulaMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
#bubbleCanvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.branding-bg-overlay {
  position: fixed;
  top: 0;
  left: 15%;
  width: 70%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
@media (max-width: 768px) {
  .branding-bg-overlay {
    left: 5%;
    width: 90%;
  }
}

.branding-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 87px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 500;
}
@media (max-width: 768px) {
  .branding-header {
    height: 60px;
    padding: 0 20px;
  }
}

.header-logo {
  font-family: "Teachers", sans-serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: white;
  line-height: 127px;
}
@media (max-width: 768px) {
  .header-logo {
    font-size: 28px;
    line-height: 60px;
  }
}

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

.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 256px;
  padding: 8px 32px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-family: "Teachers", sans-serif;
  font-size: 18px;
  letter-spacing: 0.07em;
  color: white;
  background: transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.header-pill:hover {
  background: white;
  color: #000;
  border-color: white;
}
@media (max-width: 768px) {
  .header-pill {
    display: none;
  }
}

.hamburger-trigger {
  width: 50px;
  height: 28px;
  cursor: pointer;
  pointer-events: auto;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 768px) {
  .hamburger-trigger {
    width: 23px;
    height: 13px;
  }
}
.hamburger-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 768px) {
  .hamburger-trigger span {
    height: 1px;
  }
}
.hamburger-trigger.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.food-fv {
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 87px 0 120px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 768px) {
  .food-fv {
    padding-top: 60px;
    min-height: 0;
    display: block;
  }
}

#three-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.food-fv__bg-text {
  position: absolute;
  bottom: 50px;
  right: -30px;
  z-index: 5;
  font-family: "Teachers", sans-serif;
  font-size: 150px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: white;
  opacity: 0.12;
  text-align: right;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.food-fv__bg-text span {
  display: block;
}
@media (max-width: 768px) {
  .food-fv__bg-text {
    top: auto;
    bottom: 200px;
    right: 50%;
    transform: translateX(50%);
    font-size: 72px;
    text-align: center;
    opacity: 0.15;
    display: none;
  }
}

.food-fv__inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 90%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 64px 0 40px;
  gap: 60px;
}
@media (max-width: 768px) {
  .food-fv__inner {
    display: block;
    position: relative;
    width: 100%;
    height: 560px;
    margin: 0;
    padding: 12px 0 0;
  }
}

.food-fv__grid {
  flex: 0 1 786px;
  min-width: 0;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .food-fv__grid {
    display: contents;
  }
}

.food-fv__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.food-fv__col--left {
  flex: 0 0 55.4%;
}
.food-fv__col--right {
  flex: 0 0 44.6%;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .food-fv__col {
    display: contents;
  }
}

.food-fv__cell-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .food-fv__cell-row {
    display: contents;
  }
}

.food-fv__cell {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  perspective: 1200px;
}
.food-fv__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .food-fv__cell {
    position: absolute;
    margin: 0;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
}

.food-fv__cell .coin-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 3.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.food-fv__cell .coin-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
}

.food-fv__cell .coin-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.food-fv__cell .coin-back {
  transform: rotateY(180deg);
}
.food-fv__cell .coin-back img {
  transform: scaleX(-1);
}

.food-fv__cell .shine-overlay {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.04) 30%, rgba(255, 255, 255, 0.28) 50%, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 10;
}

.food-fv__cell .shine-overlay.animate-shine {
  animation: foodShineSweep 3.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes foodShineSweep {
  0% {
    left: -150%;
  }
  50% {
    left: 50%;
  }
  100% {
    left: 150%;
  }
}
.food-fv__cell--top-l {
  aspect-ratio: 429/329;
}
@media (max-width: 768px) {
  .food-fv__cell--top-l {
    left: 0;
    top: 15px;
    width: 50%;
    aspect-ratio: 858/658;
  }
}

.food-fv__cell--top-r {
  aspect-ratio: 345/350;
}
@media (max-width: 768px) {
  .food-fv__cell--top-r {
    right: 11%;
    top: 78px;
    width: 36%;
    aspect-ratio: 690/700;
  }
}

.food-fv__cell--bl-1 {
  flex: 0 0 51.3%;
  aspect-ratio: 220/205;
}
@media (max-width: 768px) {
  .food-fv__cell--bl-1 {
    right: 0;
    top: 232px;
    width: 45%;
    aspect-ratio: 440/410;
  }
}

.food-fv__cell--bl-2 {
  flex: 0 0 45.9%;
  aspect-ratio: 197/205;
}
@media (max-width: 768px) {
  .food-fv__cell--bl-2 {
    left: 29%;
    top: 176px;
    width: 21%;
    aspect-ratio: 440/410;
  }
}

.food-fv__cell--br-1 {
  flex: 0 0 44.6%;
  aspect-ratio: 154/184;
}
@media (max-width: 768px) {
  .food-fv__cell--br-1 {
    right: 4%;
    top: 412px;
    width: 18%;
    aspect-ratio: 308/368;
  }
}

.food-fv__cell--br-2 {
  flex: 0 0 51.9%;
  aspect-ratio: 179/184;
}
@media (max-width: 768px) {
  .food-fv__cell--br-2 {
    left: 4%;
    top: 374px;
    width: 25%;
    aspect-ratio: 358/368;
  }
}

.food-fv__text {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 80px;
  padding-right: 40px;
  position: relative;
  z-index: 11;
}
@media (max-width: 768px) {
  .food-fv__text {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 270px;
    padding: 0;
    align-items: flex-start;
    text-align: left;
    z-index: 11;
  }
}

.food-fv__lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #f0f0f0;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .food-fv__lead {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }
}

.food-fv__lead-line {
  margin: 0;
}
@media (max-width: 768px) {
  .food-fv__lead-line + .food-fv__lead-line {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-top: 16px;
    margin-left: 4em;
    padding-left: 0;
    line-height: 1.1;
    letter-spacing: 0.08em;
  }
}

.food-fv__lead-break {
  display: none;
}
@media (max-width: 768px) {
  .food-fv__lead-break {
    display: block;
  }
}

.food-fv__divider {
  width: 80px;
  height: 1px;
  background: #c5a059;
  margin: 24px 0;
}
@media (max-width: 768px) {
  .food-fv__divider {
    width: 56px;
    margin: 18px 0;
    align-self: flex-start;
    display: none;
  }
}

.food-fv__sub {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #f0f0f0;
  white-space: nowrap;
}
.food-fv__sub p {
  margin: 0;
}
@media (max-width: 768px) {
  .food-fv__sub {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    white-space: normal;
    align-self: center;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    margin-top: 30px;
  }
}

.food-fv__frame {
  position: absolute;
  background: #c5a059;
  z-index: 6;
  pointer-events: none;
}
.food-fv__frame--top {
  top: 80px;
  right: -30px;
  width: 22%;
  height: 1px;
}
.food-fv__frame--bottom {
  bottom: 8px;
  left: -30px;
  width: 22%;
  height: 1px;
}
.food-fv__frame--left {
  bottom: -30px;
  left: 2px;
  width: 1px;
  height: 80px;
}
.food-fv__frame--right {
  top: 50px;
  right: 2px;
  width: 1px;
  height: 180px;
}
@media (max-width: 768px) {
  .food-fv__frame--top {
    top: 40px;
    right: 10px;
    width: 22%;
  }
  .food-fv__frame--left {
    display: none;
  }
  .food-fv__frame--right {
    top: 20px;
    right: 30px;
    height: 124px;
  }
  .food-fv__frame--bottom {
    bottom: -40px;
    left: 0px;
    width: 40%;
    height: 1px;
  }
}

.content-area {
  position: relative;
  z-index: 20;
  max-width: 1070px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content-area {
    width: 90%;
    max-width: 320px;
  }
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 15;
  pointer-events: none;
}

.content-inner {
  position: relative;
  z-index: 20;
  max-width: 1070px;
  margin: 0 auto;
  padding: 0 85px;
}
@media (max-width: 768px) {
  .content-inner {
    padding: 0 20px;
    max-width: 100%;
  }
}

.section-hero {
  text-align: center;
  padding: 160px 0 60px;
  position: relative;
}
@media (max-width: 768px) {
  .section-hero {
    padding: 80px 0;
  }
}
.section-hero .section-title__en {
  display: none;
}
@media (max-width: 768px) {
  .section-hero .section-title__en {
    display: block;
    font-family: "Teachers", sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    color: white;
    opacity: 0.2;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 72px;
  }
}

.section-hero__ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: 0.01em;
  margin-top: -30px;
  position: relative;
}
@media (max-width: 768px) {
  .section-hero__ja {
    font-size: 24px;
    margin-top: -5px;
  }
}

.food-intro {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.85;
  color: white;
  max-width: 580px;
  margin: 60px auto 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .food-intro {
    font-size: 14px;
    line-height: 1.85;
    margin: 24px 0 40px;
  }
  .food-intro br {
    display: none;
  }
}

.brand-section {
  position: relative;
  padding: 100px 0 100px;
}
@media (max-width: 768px) {
  .brand-section {
    padding: 50px 0 50px;
  }
}

.food-section {
  display: flex;
  position: relative;
  gap: 0 40px;
  margin-top: 200px;
}
@media (min-width: 769px) {
  .food-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
  }
  .food-section--text-left {
    grid-template-areas: "head visual" "text visual";
  }
  .food-section--image-left {
    grid-template-areas: "visual head" "visual text";
  }
  .food-section#sec-02 .food-section--text-left {
    padding-left: 280px;
  }
  .food-section#sec-04 {
    padding-bottom: 200px;
  }
  .food-section#sec-04 .food-section--text-left {
    padding-left: 400px;
  }
}
@media (max-width: 768px) {
  .food-section {
    flex-direction: column;
    gap: 24px 0;
    margin-top: 120px;
  }
}

.food-section__head {
  grid-area: head;
  align-self: end;
  margin-bottom: 28px;
  min-width: 0;
}
@media (max-width: 768px) {
  .food-section__head {
    align-self: start;
    margin-bottom: 0;
  }
}

.food-section__text-block {
  grid-area: text;
  align-self: start;
  min-width: 0;
  max-width: 504px;
  word-break: break-word;
}
@media (min-width: 769px) {
  .food-section--image-left .food-section__text-block {
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .food-section__text-block {
    max-width: 100%;
  }
}

.food-section__num {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  line-height: 1;
  color: #c5a059;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .food-section__num {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.food-section__heading {
  font-family: "Zen Old Mincho", serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: white;
  word-break: keep-all;
  overflow-wrap: normal;
}
.food-section__heading span {
  display: block;
}
@media (max-width: 768px) {
  .food-section__heading {
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
  }
}

.food-section__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  color: white;
}
.food-section__text + .food-section__text {
  margin-top: 20px;
}
.food-section__text--quote {
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .food-section__text {
    font-size: 14px;
    line-height: 1.85;
  }
  .food-section__text + .food-section__text {
    margin-top: 14px;
  }
  .food-section__text--quote {
    font-size: 15px;
    margin-top: 18px;
    border: 1px #c5a059 solid;
    padding: 5px;
    text-align: center;
  }
}

.food-section__visual {
  grid-area: visual;
  align-self: center;
  z-index: 1;
}
@media (min-width: 769px) {
  .food-section__visual {
    position: absolute;
  }
  .food-section__visual.food-section__visual-01 {
    width: 645px;
    right: -200px;
    top: -80px;
  }
  .food-section__visual.food-section__visual-02 {
    width: 460px;
    left: -230px;
    top: 2px;
  }
  .food-section__visual.food-section__visual-03 {
    width: 560px;
    right: 0px;
    top: -8px;
  }
  .food-section__visual.food-section__visual-04 {
    width: 724px;
    left: -380px;
    top: -30px;
  }
  .food-section__visual--right {
    justify-self: end;
    margin-right: -260px;
  }
  .food-section__visual--left {
    justify-self: start;
    margin-left: -140px;
  }
  .food-section__visual--bleed {
    width: 620px;
    margin-left: -260px;
  }
}
@media (max-width: 768px) {
  .food-section__visual {
    position: static;
    inset: auto;
    margin: 0 auto;
    align-self: center;
  }
  .food-section__visual.food-section__visual-01 {
    width: 392px;
  }
  .food-section__visual.food-section__visual-03 {
    position: relative;
    width: 450px;
    left: -170px;
  }
  .food-section__visual.food-section__visual-04 {
    width: 404px;
  }
}

.food-section__circle {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  padding: 5px;
  border: 1px solid rgba(197, 160, 89, 0.85);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .food-section__circle {
    padding: 5px;
    border-width: 1.5px;
  }
}
.food-section__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.food-closing {
  position: relative;
  padding: 120px 0 180px;
  text-align: left;
  overflow: hidden;
}
@media (max-width: 768px) {
  .food-closing {
    padding: 60px 0 280px;
  }
}

.food_container {
  position: relative;
  overflow: hidden;
}

.food-closing__circle {
  position: absolute;
  left: 50%;
  bottom: -850px;
  width: 1190px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #c5a059;
  transform: translateX(-50%);
  z-index: 21;
  pointer-events: none;
}
@media (max-width: 768px) {
  .food-closing__circle {
    width: 220%;
    bottom: -14.4%;
    border-color: #c5a059;
  }
}

.food-closing__title {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: white;
  margin-bottom: 40px;
}
.food-closing__title span {
  display: block;
}
@media (max-width: 768px) {
  .food-closing__title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}

.food-closing__text {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 21px;
  line-height: 1.85;
  color: white;
  max-width: 480px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .food-closing__text {
    font-size: 14px;
    line-height: 1.85;
    margin-left: 0;
  }
}

.site-footer {
  position: relative;
  z-index: 30;
  background: #000;
  padding: 70px 0 110px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 42px 0 64px;
  }
}

.footer-pills {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-pills {
    gap: 16px;
  }
}
.footer-pills .footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 255px;
  height: 57px;
  border: 1px solid white;
  border-radius: 55px;
  font-family: "Teachers", sans-serif;
  font-size: 25px;
  letter-spacing: 0.07em;
  color: white;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.footer-pills .footer-pill:hover {
  background: white;
  color: #000;
}
@media (max-width: 768px) {
  .footer-pills .footer-pill {
    width: 136px;
    height: 40px;
    font-size: 14px;
    gap: 6px;
  }
}
.footer-pills .footer-pill__arrow {
  display: block;
  width: 40px;
  height: auto;
  flex-shrink: 0;
  transition: filter 0.3s;
  position: relative;
  top: 2px;
}
@media (max-width: 768px) {
  .footer-pills .footer-pill__arrow {
    width: 27px;
  }
}
.footer-pills .footer-pill:hover .footer-pill__arrow {
  filter: invert(1);
}
.footer-pills .footer-pill__text {
  display: block;
  line-height: 1;
}

.footer-sitemap {
  max-width: 1270px;
  margin: 0 auto;
  padding: 90px 120px 0;
}
@media (max-width: 768px) {
  .footer-sitemap {
    padding: 56px 25px 0;
  }
}

.footer-sitemap__logo {
  display: inline-block;
  font-family: "Teachers", sans-serif;
  font-size: 55px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1;
  color: white;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .footer-sitemap__logo {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.footer-sitemap__list {
  list-style: none;
}
.footer-sitemap__list li a {
  display: inline-block;
  font-family: "Teachers", sans-serif;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0.07em;
  color: #d9d9d9;
  transition: color 0.3s;
}
.footer-sitemap__list li a:hover {
  color: white;
}
@media (max-width: 768px) {
  .footer-sitemap__list li a {
    font-size: 12px;
    line-height: 23px;
    letter-spacing: 0.07em;
  }
}

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: #050517;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 98px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (max-width: 768px) {
  .nav-menu {
    justify-content: flex-start;
    padding: 72px 32px 120px 45px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.nav-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu__list {
  list-style: none;
}

.nav-menu__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.nav-menu.is-open .nav-menu__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-menu.is-open .nav-menu__item:nth-child(1) {
  transition-delay: 0.06s;
}
.nav-menu.is-open .nav-menu__item:nth-child(2) {
  transition-delay: 0.12s;
}
.nav-menu.is-open .nav-menu__item:nth-child(3) {
  transition-delay: 0.18s;
}
.nav-menu.is-open .nav-menu__item:nth-child(4) {
  transition-delay: 0.24s;
}
.nav-menu.is-open .nav-menu__item:nth-child(5) {
  transition-delay: 0.3s;
}
.nav-menu.is-open .nav-menu__item:nth-child(6) {
  transition-delay: 0.36s;
}
.nav-menu.is-open .nav-menu__item:nth-child(7) {
  transition-delay: 0.42s;
}
.nav-menu.is-open .nav-menu__item:nth-child(8) {
  transition-delay: 0.48s;
}

.nav-menu__link {
  display: inline-block;
  font-family: "Teachers", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 75px;
  letter-spacing: 0.07em;
  color: #d9d9d9;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .nav-menu__link {
    font-size: 22px;
    line-height: 46px;
  }
}
.nav-menu__link:hover {
  opacity: 0.5;
}

.nav-menu__close {
  position: absolute;
  bottom: 60px;
  left: 98px;
  width: 139px;
  height: 50px;
  background: transparent;
  border: 1px solid white;
  border-radius: 57px;
  color: #d9d9d9;
  font-family: "Teachers", sans-serif;
  font-size: 21px;
  letter-spacing: 0.07em;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  .nav-menu__close {
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
  }
}
.nav-menu__close:hover {
  background: white;
  color: black;
}

.nav-menu {
  z-index: 600;
}

body {
  cursor: crosshair;
}

.ripple-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.ripple-ring {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1.5px solid rgba(218, 165, 32, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-out 1.3s cubic-bezier(0.15, 0.5, 0.4, 1) forwards;
}

@keyframes ripple-out {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    border-width: 3px;
  }
  100% {
    transform: translate(-50%, -50%) scale(7);
    opacity: 0;
    border-width: 0.1px;
  }
}

/*# sourceMappingURL=food.css.map */
