@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@600;700&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
  --brown: #6e5840;
  --brown-dark: #584632;
  --paper: #e8e6e6;
  --white: #ffffff;
  --ink: #070707;
  --ink-soft: #14110f;
  --wash: rgb(255 255 255 / 18%);
  --muted: #777777;
  --site-width: 1294px;
  --header-height: 94px;
  --title-font: "Cormorant Infant", Georgia, serif;
  --body-font: "Work Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-frame {
  width: min(calc(100% - 70px), var(--site-width));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--brown);
  box-shadow: 0 0 5px rgb(0 0 0 / 70%);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1184px, calc(100% - 70px));
  height: 100%;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 118px;
}

.brand img {
  width: 118px;
  height: 82px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 0;
  min-width: 0;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 47px;
  padding: 0 17px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  transition: color 260ms ease, transform 260ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #cccccc;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.nav-link.is-active::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 50%;
  width: 99px;
  height: 4px;
  transform: translateX(-50%);
  background: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 17px;
  bottom: 6px;
  left: 17px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 88%) 18%, rgb(255 255 255 / 72%) 70%, transparent);
  transform: scaleX(0) skewX(-14deg);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1) skewX(-14deg);
}

.has-dropdown > .nav-link:not(.is-active)::before {
  display: none;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 240px;
  padding: 10px 0;
  overflow: hidden;
  border-top: 1px solid rgb(255 255 255 / 22%);
  background: linear-gradient(180deg, #765f45, var(--brown-dark));
  box-shadow: 0 18px 34px rgb(0 0 0 / 26%);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  transform: translateY(-6px);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown a {
  position: relative;
  display: block;
  padding: 10px 18px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 18px;
  transition: color 220ms ease, padding-left 260ms ease;
}

.dropdown a:hover {
  color: #cccccc;
  padding-left: 24px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.socials img,
.footer-socials img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hero {
  position: relative;
  height: 502px;
  margin-top: var(--header-height);
  overflow: hidden;
  box-shadow: 0 1px 5px rgb(0 0 0 / 55%);
  isolation: isolate;
}

.page-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 340px;
  margin-top: var(--header-height);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: var(--white);
  text-align: center;
  box-shadow: 0 1px 5px rgb(0 0 0 / 45%);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 48%), rgb(0 0 0 / 28%), rgb(0 0 0 / 48%));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0 20%, var(--wash) 20.2% 20.6%, transparent 20.8% 48%, var(--wash) 48.2% 48.6%, transparent 48.8% 78%, var(--wash) 78.2% 78.6%, transparent 78.8%),
    linear-gradient(180deg, transparent, rgb(255 255 255 / 8%), transparent);
  opacity: 0.48;
  pointer-events: none;
  transform: translateX(-6%);
  animation: shoji-breath 7s ease-in-out infinite alternate;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 4px rgb(0 0 0 / 55%);
}

.content-section {
  margin-top: 42px;
  padding: 74px 58px;
  background: var(--paper);
}

.menu-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-tile,
.article-card,
.restaurant-card {
  overflow: hidden;
  background: var(--white);
}

.menu-tile img,
.article-card img,
.restaurant-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.menu-tile:hover img,
.article-card:hover img,
.restaurant-card:hover img {
  transform: scale(1.032);
  filter: saturate(0.92) brightness(0.94);
}

.menu-tile span,
.article-card div,
.restaurant-card div {
  display: block;
  padding: 24px;
}

.menu-tile span {
  color: var(--brown);
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.menu-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.menu-detail img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.menu-detail article {
  padding: 38px;
  background: var(--white);
}

.menu-detail h2,
.page-copy h2,
.invoice-panel h2 {
  margin: 0 0 22px;
  color: var(--brown);
  font-family: var(--title-font);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.menu-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d4cf;
}

.restaurant-grid,
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.restaurant-card h2,
.article-card h2 {
  margin: 0 0 12px;
  color: var(--brown);
  font-family: var(--title-font);
  font-size: 30px;
  line-height: 1.1;
}

.restaurant-card p,
.article-card p,
.page-copy p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.75;
}

.invoice-panel,
.page-copy {
  max-width: 760px;
  margin-inline: auto;
  padding: 42px;
  background: var(--white);
}

.invoice-form {
  display: grid;
  gap: 14px;
}

.invoice-form label {
  display: grid;
  gap: 7px;
  color: #575757;
}

.invoice-form input,
.invoice-form textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  padding: 13px 14px;
  outline: none;
}

.invoice-form button {
  width: 150px;
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  background: var(--brown);
  color: var(--white);
  cursor: pointer;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #070503;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1700ms ease, transform 8200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-slide img {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.hero-slide-bg {
  inset: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  filter: blur(18px) brightness(0.74) saturate(0.94);
  object-fit: cover;
  transform: scale(1.05);
}

.hero-slide-main {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.015);
  animation: yugen-zoom 8.2s ease-out both;
}

.hero-panel {
  position: absolute;
  top: 100px;
  left: 50%;
  width: min(720px, 56%);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  background:
    linear-gradient(90deg, rgb(0 0 0 / 36%), rgb(0 0 0 / 48%), rgb(0 0 0 / 36%)),
    repeating-linear-gradient(90deg, transparent 0 72px, rgb(255 255 255 / 6%) 73px 74px);
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 2px rgb(0 0 0 / 70%);
  box-shadow: inset 0 0 36px rgb(0 0 0 / 16%);
  isolation: isolate;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 22%), transparent);
  transform: translateX(-120%);
  pointer-events: none;
}

.hero-panel.is-visible::before {
  animation: shoji-pass 1200ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.hero-panel.reveal {
  transform: translate(-50%, 34px);
}

.hero-panel.reveal.is-visible {
  transform: translate(-50%, 0);
}

.hero-panel p,
.hero-panel h1,
.hero-panel strong {
  position: relative;
  z-index: 2;
}

.hero-panel p {
  margin: 0 0 8px;
  font-family: var(--body-font);
  font-size: clamp(20px, 2.1vw, 33px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24em;
}

.hero-panel h1 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(60px, 6vw, 83px);
  font-weight: 700;
  line-height: 0.95;
}

.hero-panel strong {
  margin-top: 26px;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 700;
  letter-spacing: 0.09em;
}

.section-kicker {
  display: block;
  margin-bottom: 16px;
  color: #8f6f31;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.b2b-profile {
  position: relative;
  margin-top: 42px;
  padding: 78px 72px 84px;
  overflow: hidden;
  border-top: 1px solid #d8c9aa;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0%) 0 24%, rgb(111 88 64 / 8%) 24.2% 24.4%, transparent 24.6% 49%, rgb(111 88 64 / 8%) 49.2% 49.4%, transparent 49.6% 74%, rgb(111 88 64 / 8%) 74.2% 74.4%, transparent 74.6%),
    #f5f1e8;
}

.b2b-profile::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgb(111 88 64 / 18%);
  pointer-events: none;
}

.b2b-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: end;
}

.b2b-intro > *,
.brand-direction > *,
.b2b-card,
.journey-steps li,
.brand-proof div {
  min-width: 0;
}

.b2b-intro h1,
.brand-direction-copy h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.b2b-intro p,
.brand-direction-copy p {
  margin: 0;
  color: #3a352d;
  font-family: var(--body-font);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.b2b-descriptor {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border: 1px solid rgb(111 88 64 / 22%);
  background: rgb(255 255 255 / 54%);
}

.b2b-descriptor span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid rgb(111 88 64 / 18%);
  color: #314232;
  font-family: var(--title-font);
  font-size: clamp(23px, 2.4vw, 35px);
  font-weight: 700;
}

.b2b-descriptor span:last-child {
  border-right: 0;
}

.b2b-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  border: 1px solid rgb(111 88 64 / 22%);
  background: rgb(111 88 64 / 16%);
}

.b2b-card {
  min-height: 282px;
  padding: 30px 24px 28px;
  background: rgb(255 255 255 / 72%);
  transition: background 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.b2b-card:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.b2b-card > span {
  display: block;
  margin-bottom: 34px;
  color: #9b7837;
  font-family: var(--title-font);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.b2b-card h2 {
  margin: 0 0 16px;
  color: #24352a;
  font-family: var(--title-font);
  font-size: 31px;
  line-height: 1.02;
}

.b2b-card p {
  margin: 0;
  color: #4e4a43;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: break-word;
}

.brand-direction {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  margin-top: 42px;
  padding: 74px 72px;
  overflow: hidden;
  background: #17231b;
  color: var(--white);
}

.brand-direction::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 18%, rgb(255 255 255 / 7%) 18.2% 18.4%, transparent 18.6% 50%, rgb(255 255 255 / 7%) 50.2% 50.4%, transparent 50.6% 82%, rgb(255 255 255 / 7%) 82.2% 82.4%, transparent 82.6%),
    linear-gradient(180deg, rgb(255 255 255 / 5%), transparent 40%);
  pointer-events: none;
}

.brand-direction-copy,
.journey-steps,
.brand-proof {
  position: relative;
  z-index: 1;
}

.brand-direction-copy p {
  margin-top: 24px;
  color: rgb(255 255 255 / 78%);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-self: end;
  margin: 0;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 22%);
  list-style: none;
}

.journey-steps li {
  min-height: 150px;
  padding: 24px 18px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.journey-steps li:last-child {
  border-right: 0;
}

.journey-steps span {
  display: block;
  margin-bottom: 32px;
  color: #d5b56b;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 700;
}

.journey-steps strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.brand-proof div {
  padding: 28px 28px 0 0;
}

.brand-proof span {
  display: block;
  margin-bottom: 10px;
  color: #d5b56b;
  font-family: var(--title-font);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
}

.brand-proof p {
  margin: 0;
  color: rgb(255 255 255 / 76%);
  line-height: 1.75;
  overflow-wrap: break-word;
}

.anniversary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 850px;
  overflow: hidden;
  background: var(--paper);
}

.anniversary-photo {
  min-height: 850px;
  overflow: hidden;
}

.anniversary-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.anniversary-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px 86px;
  background: var(--paper);
  color: #050505;
}

.red-dot {
  width: 26px;
  height: 26px;
  margin: 0 auto 24px;
}

.ten-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 66px;
}

.ten-mark > span {
  font-size: clamp(70px, 7vw, 112px);
  font-weight: 700;
  line-height: 0.75;
}

.ten-mark em {
  display: block;
  margin-bottom: 8px;
  font-family: "Brush Script MT", "Cormorant Infant", cursive;
  font-size: 45px;
  line-height: 0.75;
  letter-spacing: 0.16em;
}

.ten-mark strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.anniversary-copy p {
  max-width: 500px;
  margin: 0 auto 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.read-more {
  width: max-content;
  margin: 44px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-band {
  position: relative;
  min-height: auto;
  margin-top: 42px;
  padding: 56px 0 72px;
  overflow: hidden;
  background: var(--brown);
}

.booking-form {
  position: relative;
  z-index: 2;
  width: min(600px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgb(36 28 21 / 16%);
  transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms ease;
}

.booking-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgb(36 28 21 / 20%);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.form-head h2 {
  margin: 0;
  color: #1b2430;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 5px;
  background: #efefef;
  color: #4e5968;
  font-size: 12px;
}

.lang-switch span {
  padding: 3px 7px;
  border-radius: 4px;
}

.lang-switch .selected {
  color: var(--white);
  background: #f42124;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 10px;
}

.form-grid label:nth-child(1),
.form-grid label:nth-child(2) {
  grid-column: span 1.5;
}

.form-grid label:nth-child(1) {
  grid-column: 1 / span 1;
}

.form-grid label:nth-child(2) {
  grid-column: 2 / span 2;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.booking-form label,
.note-field {
  position: relative;
  display: block;
}

.booking-form label span,
.note-field span {
  position: absolute;
  top: 15px;
  left: 18px;
  z-index: 1;
  color: #767676;
  font-size: 14px;
  pointer-events: none;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  background: var(--white);
  color: #1d2630;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.booking-form input,
.booking-form select {
  height: 58px;
  padding: 23px 18px 7px;
}

.booking-form textarea {
  min-height: 59px;
  padding: 26px 18px 10px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 2px rgb(110 88 64 / 14%), inset 0 -2px 0 rgb(110 88 64 / 28%);
}

.booking-empty {
  display: grid;
  place-items: center;
  min-height: 148px;
  color: #c7c7c7;
  text-align: center;
}

.booking-empty span {
  width: 18px;
  height: 14px;
  margin-top: 20px;
  border-radius: 3px;
  background: #d4d4d4;
}

.booking-empty p {
  margin: 0;
  font-size: 14px;
}

.note-field {
  margin-top: 0;
}

.submit-btn {
  display: block;
  width: 128px;
  height: 48px;
  margin: 56px auto 0;
  border: 0;
  border-radius: 4px 4px 0 0;
  background: #f4f4f4;
  color: #9a9a9a;
  cursor: pointer;
  transition: background 260ms ease, color 260ms ease, transform 260ms ease;
}

.submit-btn:hover {
  background: #e7e1da;
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.sushi-bowl {
  position: absolute;
  right: 120px;
  bottom: -10px;
  z-index: 3;
  width: 335px;
  pointer-events: none;
  animation: quiet-float 5.8s ease-in-out infinite;
}

.gallery-section {
  position: relative;
  margin-top: 42px;
  padding: 84px 58px 100px;
  overflow: hidden;
  background: var(--paper);
}

.gallery-brush {
  position: absolute;
  top: 38px;
  left: 118px;
  width: 260px;
  opacity: 0.82;
  pointer-events: none;
}

.section-title {
  position: relative;
  z-index: 1;
  margin: 0 0 56px;
  color: var(--brown);
  font-family: var(--title-font);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.28em;
  text-align: center;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  grid-column: span 3;
  grid-row: span 2;
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 4;
}

.gallery-item.large {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-item.tall {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: brightness(0.9) saturate(0.9);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 280px;
  margin-top: 42px;
  padding: 58px 64px 42px;
  background: var(--brown);
  color: var(--white);
  text-align: center;
}

.footer-col {
  padding: 0 45px;
}

.footer-col + .footer-col {
  border-left: 1px solid rgb(255 255 255 / 66%);
}

.footer-col h2 {
  margin: 0 0 24px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.footer-col p {
  margin: 0 0 18px;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.footer-socials {
  justify-content: center;
  margin-top: 20px;
}

.copyright {
  margin: 12px 0 18px;
  color: #cfcfcf;
  font-size: 11px;
  text-align: center;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgb(0 0 0 / 82%);
  animation: ink-fade 260ms ease both;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-panel {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(1020px, 100%);
}

.lightbox-panel img {
  max-height: 80vh;
  width: auto;
  object-fit: contain;
  box-shadow: 0 16px 50px rgb(0 0 0 / 35%);
  animation: shoji-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lightbox-panel button {
  min-width: 96px;
  min-height: 38px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 2px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.lightbox-panel button:hover {
  background: var(--white);
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  clip-path: inset(0 0 12% 0);
  filter: saturate(0.92);
  transition:
    opacity 820ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 940ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
  filter: saturate(1);
}

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

@keyframes yugen-zoom {
  from {
    transform: scale(1.07) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
}

@keyframes shoji-pass {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes shoji-breath {
  from {
    transform: translateX(-5%);
    opacity: 0.34;
  }
  to {
    transform: translateX(5%);
    opacity: 0.5;
  }
}

@keyframes quiet-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ink-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shoji-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
    clip-path: inset(7% 0 7% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    width: calc(100% - 28px);
    gap: 14px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    padding: 0 11px;
    font-size: 16px;
  }

  .socials {
    gap: 6px;
  }

  .site-frame {
    width: min(calc(100% - 24px), var(--site-width));
  }

  .b2b-profile,
  .brand-direction {
    padding-right: 42px;
    padding-left: 42px;
  }

  .b2b-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-direction {
    grid-template-columns: 1fr;
  }

  .journey-steps {
    align-self: stretch;
  }

  .anniversary-copy {
    padding: 54px 56px;
  }

  .sushi-bowl {
    right: 35px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    gap: 10px;
  }

  .brand,
  .brand img {
    width: 82px;
    height: 64px;
  }

  .main-nav {
    flex: 1 1 auto;
  }

  .nav-link {
    height: 38px;
    font-size: 14px;
  }

  .socials {
    display: none;
  }

  .site-frame {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .nav-link.is-active::before {
    top: -9px;
    width: 64px;
    height: 3px;
  }

  .dropdown {
    display: none;
  }

  .hero {
    height: 360px;
  }

  .b2b-profile,
  .brand-direction {
    margin-top: 24px;
    padding: 48px 22px;
  }

  .b2b-profile::before {
    inset: 12px;
  }

  .b2b-intro,
  .brand-direction {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .b2b-intro h1,
  .brand-direction-copy h2 {
    font-size: 42px;
  }

  .b2b-intro p,
  .brand-direction-copy p {
    font-size: 16px;
  }

  .b2b-descriptor {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .b2b-descriptor span {
    min-height: 62px;
    font-size: 24px;
  }

  .b2b-descriptor span:nth-child(2) {
    border-right: 0;
  }

  .b2b-descriptor span:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(111 88 64 / 18%);
  }

  .b2b-grid,
  .journey-steps,
  .brand-proof {
    grid-template-columns: 1fr;
  }

  .b2b-card {
    min-height: auto;
  }

  .journey-steps li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .journey-steps li:last-child {
    border-bottom: 0;
  }

  .journey-steps span {
    margin-bottom: 10px;
  }

  .brand-proof div {
    padding: 22px 0 0;
  }

  .hero-panel {
    top: 66px;
    width: calc(100% - 70px);
    min-height: 220px;
  }

  .hero-panel p {
    font-size: 17px;
    letter-spacing: 0.18em;
  }

  .hero-panel h1 {
    font-size: 55px;
  }

  .hero-panel strong {
    font-size: 15px;
  }

  .anniversary {
    grid-template-columns: 1fr;
  }

  .anniversary-photo,
  .anniversary-copy {
    min-height: auto;
  }

  .anniversary-photo {
    height: 520px;
  }

  .anniversary-copy {
    padding: 54px 28px 70px;
  }

  .ten-mark {
    margin-bottom: 38px;
    gap: 14px;
  }

  .ten-mark strong {
    font-size: 13px;
  }

  .anniversary-copy p {
    font-size: 15px;
  }

  .booking-band {
    min-height: auto;
    padding: 34px 0 44px;
  }

  .booking-form {
    margin-top: 0;
  }

  .form-head h2 {
    font-size: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid label:nth-child(1),
  .form-grid label:nth-child(2),
  .form-grid .wide {
    grid-column: 1 / -1;
  }

  .sushi-bowl {
    right: 0;
    bottom: -18px;
    width: 250px;
  }

  .gallery-section {
    padding: 64px 18px 76px;
  }

  .section-title {
    margin-bottom: 36px;
    font-size: 26px;
    letter-spacing: 0.16em;
  }

  .gallery-brush {
    left: 24px;
    width: 190px;
  }

  .gallery-grid {
    grid-auto-rows: 140px;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.large,
  .gallery-item.tall {
    grid-column: span 6;
    grid-row: span 2;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 24px;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col + .footer-col {
    padding-top: 32px;
    border-top: 1px solid rgb(255 255 255 / 50%);
    border-left: 0;
  }

  .page-hero {
    height: 250px;
  }

  .content-section {
    padding: 44px 18px;
  }

  .menu-overview,
  .menu-detail,
  .restaurant-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .menu-detail img {
    min-height: 320px;
  }

  .menu-detail article,
  .invoice-panel,
  .page-copy {
    padding: 26px;
  }

  .menu-list li {
    display: grid;
  }
}
