:root {
  --ink: #15120f;
  --paper: #f7f2e7;
  --rice: #fffaf0;
  --nori: #0b2722;
  --wasabi: #b8d87a;
  --coral: #f06b4f;
  --charcoal: rgba(10, 12, 10, 0.78);
  --line: rgba(21, 18, 15, 0.16);
  --shadow: 0 24px 70px rgba(12, 16, 14, 0.2);
  --header-height: 76px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 58px);
  color: var(--rice);
  background: linear-gradient(180deg, rgba(8, 13, 10, 0.72), rgba(8, 13, 10, 0));
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  text-transform: uppercase;
}

.brand-mark-image {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.96;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--rice);
  color: var(--nori);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 28px) clamp(18px, 5vw, 72px) 168px;
  color: var(--rice);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 1600ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 74% 20%, rgba(184, 216, 122, 0.18), transparent 24%),
    linear-gradient(90deg, rgba(4, 10, 8, 0.94) 0%, rgba(4, 10, 8, 0.7) 40%, rgba(4, 10, 8, 0.14) 76%),
    linear-gradient(0deg, rgba(4, 10, 8, 0.9), rgba(4, 10, 8, 0.1) 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  animation: riseIn 800ms cubic-bezier(0.2, 0.7, 0.2, 1) 100ms both;
}

.hero-logo-mark {
  position: absolute;
  z-index: 1;
  top: 112px;
  right: clamp(-60px, 5vw, 90px);
  width: clamp(260px, 34vw, 480px);
  filter: invert(1);
  opacity: 0.13;
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 18px;
  color: var(--wasabi);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 10.5rem);
  line-height: 0.84;
  font-weight: 500;
  color: var(--rice);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 460px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2.1vw, 1.5rem);
  line-height: 1.38;
  color: rgba(255, 250, 240, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-action {
  background: var(--wasabi);
  color: var(--nori);
}

.secondary-action {
  border: 1px solid rgba(255, 250, 240, 0.5);
  color: var(--rice);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.secondary-action:hover {
  background: rgba(255, 250, 240, 0.12);
  border-color: rgba(255, 250, 240, 0.78);
}

.hero-price {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 5vw, 72px);
  top: 28%;
  display: grid;
  gap: 3px;
  min-width: 156px;
  padding-left: 20px;
  border-left: 2px solid var(--coral);
  animation: riseIn 900ms cubic-bezier(0.2, 0.7, 0.2, 1) 340ms both;
}

.hero-price span,
.hero-price small {
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-price strong {
  color: var(--rice);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.hero-menu-strip {
  position: absolute;
  z-index: 4;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  animation: fadeIn 650ms ease 420ms both;
}

.hero-dish {
  min-height: 104px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background: rgba(11, 39, 34, 0.72);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.hero-dish:hover {
  transform: translateY(-4px);
  background: rgba(11, 39, 34, 0.88);
  border-color: rgba(184, 216, 122, 0.66);
}

.hero-dish img {
  width: 92px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-dish span {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.hero-dish strong,
.hero-dish small {
  overflow-wrap: anywhere;
}

.hero-dish strong {
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  line-height: 1.15;
}

.hero-dish small {
  color: var(--wasabi);
  font-size: 0.95rem;
  font-weight: 900;
}

.intro-band,
.menu-section,
.experience,
.order-section {
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 8vw, 110px);
  align-items: end;
  background: var(--nori);
  color: var(--rice);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.intro-band.is-visible,
.experience.is-visible,
.order-inner.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-band h2,
.section-heading h2,
.experience-copy h2,
.order-inner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 5.3rem);
  line-height: 0.98;
  font-weight: 500;
}

.intro-logo {
  width: min(340px, 82vw);
  margin: 0 0 28px;
  filter: invert(1);
  opacity: 0.94;
}

.intro-band p,
.experience-copy p,
.order-inner p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.7;
}

.menu-section {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading h2 {
  max-width: 620px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.menu-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--rice);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease var(--delay), transform 650ms ease var(--delay);
}

.menu-image {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  background: #d8d0c4;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.menu-item:hover .menu-image img {
  transform: scale(1.08);
}

.menu-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(11, 39, 34, 0.82);
  color: var(--rice);
  font-size: 0.76rem;
  font-weight: 800;
}

.menu-info {
  min-height: 226px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 22px;
}

.menu-info h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.1;
}

.menu-info p {
  margin: 12px 0 0;
  color: rgba(21, 18, 15, 0.68);
  font-size: 0.96rem;
  line-height: 1.55;
}

.menu-info strong {
  color: var(--coral);
  font-size: 1.55rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background: var(--rice);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.experience-image {
  overflow: hidden;
  min-height: 620px;
  border-radius: 8px;
}

.experience-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.experience-copy {
  max-width: 610px;
}

.experience-copy h2,
.order-inner h2 {
  color: var(--nori);
}

.experience-copy p {
  margin-top: 24px;
  color: rgba(21, 18, 15, 0.7);
}

.pairing-list {
  display: grid;
  gap: 0;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pairing-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.order-section {
  background:
    linear-gradient(90deg, rgba(11, 39, 34, 0.95), rgba(11, 39, 34, 0.68)),
    url("./assets/hero-sushi.jpg") center/cover;
  color: var(--rice);
}

.order-inner {
  width: min(720px, 100%);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.order-inner h2 {
  color: var(--rice);
}

.order-inner p {
  max-width: 560px;
  margin-top: 24px;
}

.primary-action.large {
  min-height: 56px;
  margin-top: 34px;
  padding: 0 30px;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.76);
  font-weight: 800;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .hero {
    padding-bottom: 232px;
  }

  .hero-price {
    top: auto;
    right: auto;
    left: clamp(18px, 5vw, 72px);
    bottom: 166px;
  }

  .hero-menu-strip,
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-dish {
    min-height: 92px;
  }

  .intro-band,
  .experience {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .brand-lockup span:last-child {
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 18px) 16px 296px;
  }

  .hero h1 {
    max-width: 7ch;
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  .hero-logo-mark {
    top: 92px;
    right: -86px;
    width: 250px;
    opacity: 0.11;
  }

  .hero-copy {
    max-width: 320px;
  }

  .hero-price {
    left: 16px;
    bottom: 238px;
  }

  .hero-menu-strip {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    max-height: 208px;
    overflow: auto;
    padding-right: 4px;
    scrollbar-width: thin;
  }

  .hero-dish {
    grid-template-columns: 82px 1fr;
    min-height: 92px;
  }

  .hero-dish img {
    width: 82px;
    height: 72px;
  }

  .intro-band,
  .menu-section,
  .experience,
  .order-section {
    padding: 64px 16px;
  }

  .section-heading {
    display: block;
  }

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

  .menu-info {
    min-height: auto;
  }

  .experience-image,
  .experience-image img {
    min-height: 420px;
  }

  .contact-line {
    display: grid;
  }
}

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