@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&family=Noto+Serif:wght@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: "Noto Serif", serif;
  --body-font: "Noto 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;
  padding-right: 118px;
  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);
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 640px;
  margin-top: 42px;
  background:
    linear-gradient(90deg, transparent 0 31%, rgb(45 55 44 / 7%) 31.2% 31.4%, transparent 31.6%),
    #f3efe6;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 58px;
}

.about-copy h2,
.about-foundation-copy h2,
.blog-empty-state h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-copy p {
  margin: 24px 0 0;
  color: #4d4942;
  font-size: 16px;
  line-height: 1.85;
}

.about-image {
  min-height: 640px;
}

.about-foundation {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  margin-top: 42px;
  background: #17251c;
  color: #ffffff;
}

.about-foundation-image {
  min-height: 630px;
}

.about-foundation-copy {
  padding: 70px 58px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgb(255 255 255 / 7%) 48.2% 48.4%, transparent 48.6%),
    #17251c;
}

.about-values {
  margin-top: 40px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.about-values article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.about-values span {
  color: #d7b764;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-values p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  line-height: 1.75;
}

.blog-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  padding: 54px;
  border-top: 1px solid rgb(45 55 44 / 20%);
  border-bottom: 1px solid rgb(45 55 44 / 20%);
  background:
    linear-gradient(90deg, transparent 0 33%, rgb(45 55 44 / 7%) 33.2% 33.4%, transparent 33.6% 66%, rgb(45 55 44 / 7%) 66.2% 66.4%, transparent 66.6%),
    #f7f5ef;
}

.blog-empty-state h2 {
  color: #26382d;
}

.blog-empty-state p {
  margin: 20px 0 0;
  color: #5b574f;
}

.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: var(--body-font);
  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-grid.single-location {
  grid-template-columns: 1fr;
  max-width: 920px;
  margin-inline: auto;
}

.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: var(--body-font);
  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;
}

.brand-foundation {
  position: relative;
  margin-top: 42px;
  padding: 78px 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 0 33%, rgb(111 88 64 / 8%) 33.2% 33.4%, transparent 33.6% 66%, rgb(111 88 64 / 8%) 66.2% 66.4%, transparent 66.6%),
    #efe9dc;
}

.foundation-head {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 54px;
  align-items: end;
}

.foundation-head h2,
.audience-copy h2,
.event-head h2,
.content-head h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0.01em;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid rgb(111 88 64 / 22%);
  background: rgb(111 88 64 / 18%);
}

.foundation-panel {
  min-height: 300px;
  padding: 38px;
  background: rgb(255 255 255 / 62%);
}

.foundation-panel span,
.event-large span,
.event-stack span {
  display: block;
  margin-bottom: 18px;
  color: #9b7837;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.foundation-panel h3,
.event-large h3 {
  margin: 0 0 18px;
  color: #233529;
  font-family: var(--title-font);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1;
}

.foundation-panel p,
.audience-copy p,
.audience-list p,
.event-large p,
.event-stack p,
.content-head p {
  margin: 0;
  color: #48443d;
  line-height: 1.75;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 24px;
  border: 1px solid rgb(111 88 64 / 24%);
  background: rgb(255 255 255 / 48%);
}

.value-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid rgb(111 88 64 / 16%);
  color: #24352a;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.value-strip span:last-child {
  border-right: 0;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  margin-top: 42px;
  padding: 74px 72px;
  background: #f8f6f0;
}

.audience-copy,
.audience-list,
.foundation-head > *,
.foundation-panel,
.event-large,
.event-stack article,
.content-head,
.pillar-grid {
  min-width: 0;
}

.audience-copy p,
.content-head p {
  margin-top: 22px;
  font-weight: 600;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgb(111 88 64 / 22%);
}

.audience-list div {
  min-height: 212px;
  padding: 28px;
  border-right: 1px solid rgb(111 88 64 / 16%);
  border-bottom: 1px solid rgb(111 88 64 / 16%);
}

.audience-list div:nth-child(2n) {
  border-right: 0;
}

.audience-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.audience-list span {
  display: block;
  margin-bottom: 28px;
  color: #9b7837;
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.audience-list strong {
  display: block;
  margin-bottom: 10px;
  color: #24352a;
  font-family: var(--title-font);
  font-size: 30px;
  line-height: 1.05;
}

.event-formats {
  margin-top: 42px;
  padding: 76px 72px;
  background: #24352a;
  color: var(--white);
}

.event-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 54px;
  align-items: end;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgb(255 255 255 / 20%);
  background: rgb(255 255 255 / 14%);
}

.event-large,
.event-stack article {
  background: #1b2a21;
}

.event-large {
  min-height: 410px;
  padding: 44px;
}

.event-large h3,
.event-head h2 {
  color: var(--white);
}

.event-large p,
.event-stack p {
  color: rgb(255 255 255 / 78%);
}

.event-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
}

.event-stack article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 136px;
  padding: 30px;
}

.content-pillars {
  margin-top: 42px;
  padding: 76px 72px 84px;
  background: #f5f1e8;
}

.content-head {
  max-width: 860px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border: 1px solid rgb(111 88 64 / 22%);
}

.pillar-grid span {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgb(111 88 64 / 16%);
  border-bottom: 1px solid rgb(111 88 64 / 16%);
  color: #24352a;
  font-family: var(--title-font);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  text-align: center;
}

.pillar-grid span:nth-child(4n) {
  border-right: 0;
}

.pillar-grid span:nth-last-child(-n + 4) {
  border-bottom: 0;
}

/* B2B homepage: Japanese editorial rhythm, real imagery and restrained motion. */
.home-section {
  --home-border: rgb(45 55 44 / 18%);
  position: relative;
  margin-top: 42px;
  overflow: hidden;
}

.home-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 44px;
  align-items: end;
  padding: 76px 72px 54px;
  border-top: 1px solid var(--home-border);
  background:
    linear-gradient(90deg, transparent 0 24%, rgb(45 55 44 / 7%) 24.1% 24.2%, transparent 24.3% 74%, rgb(45 55 44 / 7%) 74.1% 74.2%, transparent 74.3%),
    #f3efe6;
}

.section-mark {
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 28px;
  background: #9d342b;
}

.home-heading h1,
.philosophy-copy h2,
.foundation-intro h2,
.audience-content h2,
.events-heading h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.home-heading p,
.philosophy-copy > p,
.foundation-intro > p,
.events-heading > p {
  margin: 0;
  color: #48463f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.profile-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  grid-template-rows: 330px 220px;
  gap: 12px;
  padding: 0 72px 12px;
  background: #f3efe6;
}

.home-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8d2c4;
}

.home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.home-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.home-media.reveal::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #f3efe6;
  transform: translateX(0);
  transition: transform 1050ms cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  pointer-events: none;
}

.home-media.reveal.is-visible::after {
  transform: translateX(101%);
}

.home-media figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  background: rgb(19 31 23 / 88%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-main {
  grid-row: 1 / 3;
}

.profile-main img {
  object-position: center;
}

.profile-detail img {
  object-position: center 66%;
}

.profile-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background:
    linear-gradient(90deg, transparent 0 62%, rgb(255 255 255 / 8%) 62.2% 62.4%, transparent 62.6%),
    #1b2a21;
  color: #ffffff;
}

.profile-note strong {
  font-family: var(--title-font);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.2;
}

.profile-note p {
  margin: 14px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 72px 78px;
  background: #f3efe6;
}

.capability-item {
  min-width: 0;
  padding: 34px 28px 26px 0;
  border-top: 1px solid var(--home-border);
}

.capability-item + .capability-item {
  padding-left: 28px;
  border-left: 1px solid var(--home-border);
}

.capability-item > span,
.philosophy-points span,
.experience-flow span,
.audience-rows article > span {
  display: block;
  margin-bottom: 28px;
  color: #9d342b;
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 700;
}

.capability-item h2 {
  margin: 0 0 14px;
  color: #23372a;
  font-family: var(--title-font);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
}

.capability-item p,
.philosophy-points p,
.foundation-values p,
.audience-rows p,
.event-showcase p {
  margin: 0;
  color: #555149;
  font-size: 14px;
  line-height: 1.8;
}

.home-philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  background: #17251c;
  color: #ffffff;
}

.philosophy-image {
  min-height: 690px;
}

.philosophy-copy {
  padding: 74px 58px 52px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgb(255 255 255 / 7%) 48.2% 48.4%, transparent 48.6%),
    #17251c;
}

.philosophy-copy h2 {
  color: #ffffff;
}

.philosophy-copy > p {
  margin-top: 28px;
  color: rgb(255 255 255 / 74%);
}

.philosophy-points {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.philosophy-points div {
  display: grid;
  grid-template-columns: 48px 0.7fr 1.3fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.philosophy-points span {
  margin: 0;
  color: #d7b764;
}

.philosophy-points strong {
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 1.35;
}

.philosophy-points p {
  color: rgb(255 255 255 / 68%);
}

.experience-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  list-style: none;
}

.experience-flow li {
  min-height: 112px;
  padding: 22px 28px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.experience-flow li:last-child {
  border-right: 0;
}

.experience-flow span {
  margin-bottom: 10px;
  color: #d7b764;
}

.experience-flow strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-foundation {
  padding: 76px 72px 78px;
  background:
    linear-gradient(90deg, transparent 0 32%, rgb(45 55 44 / 7%) 32.1% 32.2%, transparent 32.3% 68%, rgb(45 55 44 / 7%) 68.1% 68.2%, transparent 68.3%),
    #f7f5ef;
}

.foundation-intro {
  display: grid;
  grid-template-columns: 0.45fr 1.15fr 0.8fr;
  gap: 42px;
  align-items: end;
}

.transformation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 12px;
  margin-top: 48px;
}

.transformation-grid .home-media {
  height: 380px;
}

.transformation-before img {
  object-position: center 46%;
}

.transformation-grid figcaption {
  right: auto;
  left: 0;
  max-width: 360px;
  letter-spacing: 0;
  text-transform: none;
}

.transformation-grid figcaption span {
  display: block;
  margin-bottom: 2px;
  color: #d7b764;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.foundation-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.foundation-values article {
  padding: 34px 44px 38px 0;
}

.foundation-values article + article {
  padding-left: 44px;
  border-left: 1px solid var(--home-border);
}

.foundation-values span,
.event-showcase article span {
  display: block;
  margin-bottom: 14px;
  color: #9d342b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foundation-values h3 {
  margin: 0 0 14px;
  color: #26382d;
  font-family: var(--title-font);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.18;
}

.home-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  background: #ece9e0;
}

.audience-photo-wrap {
  position: relative;
  min-height: 720px;
  padding: 44px 0 44px 44px;
}

.audience-photo-wrap .home-media {
  height: 100%;
}

.audience-photo-wrap img {
  object-position: center;
}

.audience-caption {
  position: absolute;
  right: -34px;
  bottom: 76px;
  z-index: 3;
  width: 250px;
  margin: 0;
  padding: 24px;
  background: #9d342b;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 1.55;
}

.audience-content {
  padding: 72px 64px 64px 76px;
}

.audience-rows {
  margin-top: 44px;
  border-top: 1px solid var(--home-border);
}

.audience-rows article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--home-border);
}

.audience-rows article > span {
  margin: 0;
}

.audience-rows h3 {
  margin: 0 0 8px;
  color: #26382d;
  font-family: var(--title-font);
  font-size: 25px;
  line-height: 1.1;
}

.home-events {
  padding: 76px 72px 82px;
  background: #f7f5ef;
}

.events-heading {
  display: grid;
  grid-template-columns: 0.38fr 1.12fr 0.7fr;
  gap: 42px;
  align-items: end;
}

.event-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 12px;
  margin-top: 46px;
}

.event-showcase article {
  position: relative;
  overflow: hidden;
  background: #1a2920;
  color: #ffffff;
}

.event-feature {
  grid-row: span 2;
  min-height: 650px;
}

.event-card {
  min-height: 319px;
}

.event-showcase figure {
  position: absolute;
  inset: 0;
}

.event-showcase figure::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgb(8 17 11 / 88%) 100%);
}

.event-showcase article > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.event-feature > div {
  padding: 44px;
}

.event-showcase article span {
  color: #e4c778;
}

.event-showcase h3 {
  margin: 0 0 12px;
  font-family: var(--title-font);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.08;
}

.event-showcase p {
  max-width: 600px;
  color: rgb(255 255 255 / 78%);
}

.events-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 430px);
  margin: 34px 0 0 auto;
  padding: 16px 0;
  border-top: 1px solid #26382d;
  border-bottom: 1px solid #26382d;
  color: #26382d;
  font-weight: 700;
  transition: color 260ms ease, padding 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.events-cta:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: #9d342b;
}

.events-cta span {
  font-size: 22px;
}

.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: var(--title-font);
  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: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.read-more {
  width: max-content;
  margin: 44px auto 0;
  font-family: var(--body-font);
  font-size: 17px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 42px;
  overflow: hidden;
  border-top: 1px solid rgb(215 183 100 / 36%);
  background: #15231a;
  color: #ffffff;
}

.reservation-hero {
  background-position: center 47%;
}

.reservation-page {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
}

.reservation-page .booking-form {
  grid-column: 2;
  grid-row: 1;
  min-height: 800px;
}

.reservation-visual {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 800px;
  margin: 0;
  overflow: hidden;
  background: #38291f;
}

.reservation-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgb(24 17 12 / 48%) 100%);
  pointer-events: none;
}

.reservation-visual img {
  width: 100%;
  height: 100%;
  min-height: 800px;
  object-fit: cover;
  object-position: center;
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reservation-visual:hover img {
  transform: scale(1.025);
}

.reservation-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  left: 32px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 22%, rgb(255 255 255 / 6%) 22.1% 22.2%, transparent 22.3% 78%, rgb(255 255 255 / 6%) 78.1% 78.2%, transparent 78.3%),
    linear-gradient(180deg, rgb(255 255 255 / 3%), transparent 42%);
  pointer-events: none;
}

.booking-intro {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 76px 56px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.booking-intro .section-kicker {
  color: #d7b764;
}

.booking-intro h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.booking-intro > p {
  margin: 26px 0 0;
  color: rgb(255 255 255 / 70%);
  line-height: 1.85;
}

.booking-details {
  margin: 44px 0 0;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.booking-details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.booking-details dt,
.booking-details dd {
  margin: 0;
}

.booking-details dt {
  color: #d7b764;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-details dd {
  color: rgb(255 255 255 / 78%);
  font-size: 13px;
}

.booking-form {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 72px 64px 76px;
  background:
    linear-gradient(90deg, transparent 0 49%, rgb(38 56 45 / 6%) 49.1% 49.2%, transparent 49.3%),
    #f7f3ea;
  color: #24352a;
}

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

.form-head h2 {
  margin: 5px 0 0;
  color: #24352a;
  font-family: var(--title-font);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.form-kicker {
  color: #9b7837;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 1px solid rgb(38 56 45 / 20%);
  border-radius: 0;
  background: transparent;
  color: #667068;
  font-size: 11px;
}

.lang-switch span {
  min-width: 38px;
  padding: 8px 10px;
  text-align: center;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
}

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

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

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

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

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

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

.booking-form label,
.note-field {
  position: static;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.booking-form label span,
.note-field span {
  position: static;
  color: #667068;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: auto;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgb(38 56 45 / 32%);
  border-radius: 0;
  background: transparent;
  color: #24352a;
  outline: none;
  transition: border-color 220ms ease, background 220ms ease;
}

.booking-form input,
.booking-form select {
  height: 44px;
  padding: 6px 2px 10px;
}

.booking-form textarea {
  min-height: 112px;
  padding: 12px 2px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #9b7837;
  box-shadow: inset 0 -1px 0 #9b7837;
}

.booking-empty {
  display: flex;
  align-items: center;
  min-height: 78px;
  margin-top: 26px;
  border-top: 1px solid rgb(38 56 45 / 12%);
  border-bottom: 1px solid rgb(38 56 45 / 12%);
  color: #7a817b;
  text-align: left;
}

.booking-empty span {
  display: none;
}

.booking-empty p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.note-field {
  margin-top: 28px;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  margin: 34px 0 0;
  border: 1px solid #24352a;
  border-radius: 0;
  background: #24352a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.submit-btn:hover {
  border-color: #9b7837;
  background: #9b7837;
  color: #ffffff;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  min-height: 18px;
  margin: 12px 0 0;
  color: #6e5840;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.booking-form.is-submitted .form-status {
  color: #1b3b2b;
  font-weight: 600;
}

.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 {
  margin-top: 32px;
  overflow: hidden;
  border-top: 1px solid rgb(215 183 100 / 42%);
  background: var(--brown);
  color: var(--white);
  text-align: left;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  background: var(--brown);
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 34px 38px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.footer-brand-logo {
  width: 84px;
  height: 66px;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left center;
}

.footer-eyebrow,
.footer-data > span {
  display: block;
  color: #d7b764;
  font-family: var(--body-font);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-brand-panel h2 {
  max-width: 390px;
  margin: 10px 0 0;
  font-family: var(--title-font);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

.footer-intro {
  max-width: 390px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 12px;
  line-height: 1.6;
}

.footer-booking-link {
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid rgb(215 183 100 / 72%);
  color: #f1d58b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease;
}

.footer-booking-link:hover {
  background: #d7b764;
  color: var(--brown-dark);
}

.footer-information {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px 38px 20px;
}

.footer-info-row {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.3fr;
  gap: 26px;
}

.footer-data {
  min-width: 0;
  padding-top: 13px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.footer-data > span {
  margin-bottom: 12px;
}

.footer-data > a:not(.footer-map-link),
.footer-data > strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.footer-data p {
  margin: 0;
  color: rgb(255 255 255 / 66%);
  font-size: 12px;
  line-height: 1.55;
}

.footer-contact-list {
  display: grid;
  gap: 7px;
}

.footer-email {
  color: rgb(255 255 255 / 68%);
  font-size: 11px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color 220ms ease;
}

.footer-channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
}

.footer-channel-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgb(242 213 137 / 54%);
  color: #f2d589;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 220ms ease, border-color 220ms ease;
}

.footer-email:hover,
.footer-channel-links a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.footer-map-link,
.location-map-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease;
}

.footer-map-link {
  margin-top: 9px;
  color: #f2d589;
}

.footer-map-frame {
  display: block;
  width: 100%;
  height: 96px;
  margin-top: 10px;
  border: 1px solid rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 10%);
  filter: saturate(0.86) contrast(0.96);
}

.location-map-link {
  margin-top: 18px;
  color: #8f6f31;
}

.footer-map-link:hover {
  color: #ffffff;
  border-color: #ffffff;
}

.location-map-link:hover {
  color: #9d342b;
  border-color: #9d342b;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgb(255 255 255 / 16%);
}

.footer-bottom p {
  margin: 0;
  color: rgb(255 255 255 / 45%);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a {
  color: rgb(255 255 255 / 68%);
  font-size: 10px;
  transition: color 220ms ease;
}

.footer-links a:hover {
  color: #f2d589;
}

.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) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 24px;
    align-items: center;
    padding: 28px 34px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .footer-brand-logo {
    grid-row: 1 / span 4;
    margin-bottom: 0;
  }

  .footer-brand-panel h2,
  .footer-intro,
  .footer-booking-link {
    grid-column: 2;
  }

  .footer-booking-link {
    justify-self: start;
  }

  .footer-information {
    padding: 30px 34px 18px;
  }

  .booking-intro {
    padding-right: 42px;
    padding-left: 42px;
  }

  .booking-form {
    padding-right: 42px;
    padding-left: 42px;
  }

  .about-overview,
  .about-foundation {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-foundation-image {
    min-height: 520px;
  }

  .home-heading {
    grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1fr);
    padding-right: 42px;
    padding-left: 42px;
  }

  .home-heading > p {
    grid-column: 2;
  }

  .profile-visuals {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    padding-right: 42px;
    padding-left: 42px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 42px;
    padding-left: 42px;
  }

  .capability-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .home-philosophy {
    grid-template-columns: 1fr;
  }

  .philosophy-image {
    min-height: 560px;
  }

  .philosophy-copy {
    padding-right: 42px;
    padding-left: 42px;
  }

  .home-foundation,
  .home-events {
    padding-right: 42px;
    padding-left: 42px;
  }

  .foundation-intro,
  .events-heading {
    grid-template-columns: 1fr 1.45fr;
  }

  .foundation-intro > p,
  .events-heading > p {
    grid-column: 2;
  }

  .home-audience {
    grid-template-columns: 1fr;
  }

  .audience-photo-wrap {
    min-height: 580px;
    padding-right: 44px;
  }

  .audience-caption {
    right: 10px;
  }

  .audience-content {
    padding: 62px 42px;
  }

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

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-right: 0;
    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,
  .brand-foundation,
  .audience-section,
  .event-formats,
  .content-pillars {
    padding-right: 42px;
    padding-left: 42px;
  }

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

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

  .foundation-head,
  .audience-section,
  .event-head,
  .event-layout {
    grid-template-columns: 1fr;
  }

  .value-strip,
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip span:nth-child(3n),
  .pillar-grid span:nth-child(3n) {
    border-right: 0;
  }

  .value-strip span:nth-child(-n + 3),
  .pillar-grid span:nth-child(-n + 6) {
    border-bottom: 1px solid rgb(111 88 64 / 16%);
  }

  .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;
  }

  .about-overview,
  .about-foundation {
    margin-top: 24px;
  }

  .about-copy,
  .about-foundation-copy {
    padding: 46px 22px;
  }

  .about-copy h2,
  .about-foundation-copy h2,
  .blog-empty-state h2 {
    font-size: 38px;
  }

  .about-image,
  .about-foundation-image {
    min-height: 360px;
  }

  .about-values article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blog-empty-state {
    min-height: 300px;
    padding: 38px 22px;
  }

  .home-section {
    margin-top: 24px;
  }

  .home-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 46px 22px 38px;
  }

  .home-heading > p {
    grid-column: auto;
  }

  .home-heading h1,
  .philosophy-copy h2,
  .foundation-intro h2,
  .audience-content h2,
  .events-heading h2 {
    font-size: 40px;
  }

  .home-heading p,
  .philosophy-copy > p,
  .foundation-intro > p,
  .events-heading > p {
    font-size: 15px;
  }

  .section-mark {
    margin-top: 18px;
  }

  .profile-visuals {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 0 22px 10px;
  }

  .profile-main {
    grid-row: auto;
    height: 350px;
  }

  .profile-detail {
    height: 230px;
  }

  .profile-note {
    min-height: 170px;
    padding: 26px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    padding: 0 22px 48px;
  }

  .capability-item,
  .capability-item + .capability-item {
    padding: 28px 0;
    border-left: 0;
  }

  .philosophy-image {
    min-height: 370px;
  }

  .philosophy-copy {
    padding: 46px 22px 42px;
  }

  .philosophy-points div {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .philosophy-points p {
    grid-column: 2;
  }

  .experience-flow {
    grid-template-columns: 1fr;
  }

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

  .experience-flow li:last-child {
    border-bottom: 0;
  }

  .home-foundation,
  .home-events {
    padding: 48px 22px;
  }

  .foundation-intro,
  .events-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foundation-intro > p,
  .events-heading > p {
    grid-column: auto;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .transformation-grid .home-media {
    height: 280px;
  }

  .foundation-values {
    grid-template-columns: 1fr;
  }

  .foundation-values article,
  .foundation-values article + article {
    padding: 28px 0;
    border-left: 0;
  }

  .foundation-values article + article {
    border-top: 1px solid var(--home-border);
  }

  .audience-photo-wrap {
    min-height: 450px;
    padding: 22px 0 0 22px;
  }

  .audience-caption {
    right: 12px;
    bottom: 22px;
    width: min(250px, calc(100% - 46px));
    padding: 20px;
    font-size: 16px;
  }

  .audience-content {
    padding: 48px 22px;
  }

  .audience-rows article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .event-showcase {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .event-feature {
    grid-row: auto;
    min-height: 500px;
  }

  .event-card {
    min-height: 310px;
  }

  .event-feature > div,
  .event-showcase article > div {
    padding: 26px;
  }

  .events-cta {
    margin-top: 28px;
  }

  .b2b-profile,
  .brand-direction,
  .brand-foundation,
  .audience-section,
  .event-formats,
  .content-pillars {
    margin-top: 24px;
    padding: 48px 22px;
  }

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

  .b2b-intro,
  .brand-direction,
  .foundation-head,
  .audience-section,
  .event-head,
  .event-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .b2b-intro h1,
  .brand-direction-copy h2,
  .foundation-head h2,
  .audience-copy h2,
  .event-head h2,
  .content-head h2 {
    font-size: 42px;
  }

  .b2b-intro p,
  .brand-direction-copy p,
  .audience-copy p,
  .content-head 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,
  .foundation-grid,
  .audience-list,
  .value-strip,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .b2b-card,
  .foundation-panel,
  .event-large,
  .audience-list div {
    min-height: auto;
  }

  .foundation-panel,
  .event-large,
  .event-stack article,
  .audience-list div {
    padding: 28px 24px;
  }

  .value-strip span,
  .pillar-grid span,
  .audience-list div,
  .audience-list div:nth-child(2n),
  .audience-list div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgb(111 88 64 / 16%);
  }

  .value-strip span:last-child,
  .pillar-grid span:last-child,
  .audience-list div:last-child {
    border-bottom: 0;
  }

  .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 {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .reservation-page .booking-form {
    grid-column: 1;
    grid-row: 2;
    min-height: auto;
  }

  .reservation-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 430px;
  }

  .reservation-visual img {
    min-height: 430px;
    object-position: center 42%;
  }

  .reservation-visual figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .booking-intro {
    padding: 48px 22px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }

  .booking-intro h2 {
    font-size: 38px;
  }

  .booking-details {
    margin-top: 32px;
  }

  .booking-form {
    width: 100%;
    margin-top: 0;
    padding: 48px 22px 52px;
  }

  .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 label:nth-child(4),
  .form-grid label:nth-child(5),
  .form-grid label:nth-child(6),
  .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 {
    padding: 0;
  }

  .footer-brand-panel {
    display: flex;
    padding: 24px 20px;
  }

  .footer-brand-logo {
    width: 70px;
    height: 54px;
    margin-bottom: 10px;
  }

  .footer-brand-panel h2 {
    font-size: 22px;
  }

  .footer-intro {
    margin-top: 9px;
    font-size: 11px;
  }

  .footer-booking-link {
    margin-top: 14px;
  }

  .footer-information {
    padding: 20px 20px 16px;
  }

  .footer-info-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
  }

  .footer-data {
    padding: 14px 0 16px;
  }

  .footer-data:last-child {
    grid-column: 1 / -1;
  }

  .footer-data > span {
    margin-bottom: 10px;
  }

  .footer-contact-list {
    gap: 6px;
  }

  .footer-email {
    font-size: 10px;
  }

  .footer-channel-links {
    gap: 5px 9px;
  }

  .footer-map-frame {
    height: 118px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .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;
  }
}
