:root {
  --ink: #171413;
  --paper: #fbf7f0;
  --muted: #756b61;
  --charcoal: #191817;
  --charcoal-2: #24211f;
  --red: #b6372f;
  --red-dark: #8d241f;
  --rice: #fffaf1;
  --gold: #d5aa62;
  --jade: #2f7563;
  --line: rgba(23, 20, 19, 0.14);
  --shadow: 0 24px 70px rgba(33, 22, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(214, 170, 98, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f8efe2 46%, #181615 46%, #181615 100%);
  font-family: "Instrument Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

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

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

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214, 170, 98, 0.18), transparent 64%);
  pointer-events: none;
  z-index: 20;
  opacity: 0.7;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 999px;
  background: rgba(25, 24, 23, 0.72);
  color: var(--rice);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.brand,
.site-header nav,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(182, 55, 47, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand small {
  color: rgba(255, 250, 241, 0.62);
  font-size: 12px;
}

.site-header nav {
  gap: 8px;
}

.site-header nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 250, 241, 0.76);
  font-size: 14px;
  transition: background 250ms ease, color 250ms ease;
}

.site-header nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.header-action {
  justify-self: end;
  justify-content: center;
  min-width: 76px;
  min-height: 42px;
  border-radius: 999px;
  background: var(--rice);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 168px max(24px, calc((100vw - 1160px) / 2)) 84px;
  overflow: hidden;
  color: var(--rice);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 13, 12, 0.92) 0%, rgba(15, 13, 12, 0.74) 36%, rgba(15, 13, 12, 0.18) 72%),
    linear-gradient(0deg, rgba(15, 13, 12, 0.92), transparent 44%);
}

.hero-content {
  align-self: center;
  width: min(680px, 100%);
  min-width: 0;
}

.eyebrow,
.section-kicker,
.signature-dish span,
.info-tile span {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 650;
  line-height: 0.95;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(58px, 8.4vw, 118px);
  text-wrap: balance;
}

h2 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 82px);
}

.hero-copy {
  max-width: 580px;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 30px rgba(182, 55, 47, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 241, 0.24);
  color: var(--rice);
}

.button.dark {
  border-color: rgba(23, 20, 19, 0.18);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(600px, 100%);
  margin-top: 56px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
}

.status-card {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 70px;
  display: flex;
  gap: 14px;
  align-items: center;
  width: min(330px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(25, 24, 23, 0.76);
  color: var(--rice);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.status-card p {
  margin: 4px 0 0;
  color: rgba(255, 250, 241, 0.64);
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #75d093;
  box-shadow: 0 0 0 0 rgba(117, 208, 147, 0.7);
  animation: pulse 1.6s infinite;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-tile {
  min-height: 142px;
  padding: 26px;
  background: var(--rice);
  transition: transform 260ms ease, background 260ms ease;
}

.info-tile:hover {
  transform: translateY(-5px);
  background: white;
}

.info-tile.accent {
  background: var(--red);
  color: white;
}

.info-tile.accent span,
.info-tile.accent small {
  color: rgba(255, 255, 255, 0.72);
}

.info-tile strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
}

.info-tile small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: end;
}

.story-copy p,
.section-heading p + h2 + p {
  color: var(--muted);
}

.story-copy p {
  max-width: 500px;
  font-size: 19px;
  line-height: 1.7;
}

.feature-image,
.signature-dish,
.review-card,
.visit-panel {
  border-radius: 8px;
  overflow: hidden;
}

.feature-image {
  box-shadow: var(--shadow);
}

.feature-image img {
  aspect-ratio: 1.36;
  object-fit: cover;
}

.menu-section,
.reviews {
  position: relative;
  color: var(--rice);
  background: var(--charcoal);
  box-shadow: 0 0 0 100vmax var(--charcoal);
  clip-path: inset(0 -100vmax);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 36px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.signature-dish {
  background: #28231f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.signature-dish img {
  aspect-ratio: 1.08;
  object-fit: cover;
}

.signature-dish div {
  padding: 24px;
}

.signature-dish h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.signature-dish p {
  color: rgba(255, 250, 241, 0.68);
  line-height: 1.6;
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas:
    "num title"
    "num copy";
  gap: 4px 16px;
  align-content: center;
  min-height: 118px;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.055);
  color: var(--rice);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.menu-item:hover,
.menu-item.active {
  transform: translateX(8px);
  border-color: rgba(213, 170, 98, 0.54);
  background: rgba(182, 55, 47, 0.28);
}

.menu-item span {
  grid-area: num;
  color: var(--gold);
  font-weight: 800;
}

.menu-item strong {
  grid-area: title;
  font-size: clamp(19px, 2vw, 30px);
}

.menu-item small {
  grid-area: copy;
  color: rgba(255, 250, 241, 0.58);
  font-size: 15px;
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(255, 250, 241, 0.1);
  background: var(--red);
  color: white;
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding: 0 28px;
  font-family: "Newsreader", serif;
  font-size: clamp(28px, 4vw, 54px);
  white-space: nowrap;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 280px;
  padding: 26px;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.12);
  transition: transform 240ms ease, background 240ms ease;
}

.review-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 250, 241, 0.12);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-card p {
  margin: 28px 0;
  color: rgba(255, 250, 241, 0.8);
  font-family: "Newsreader", serif;
  font-size: 28px;
  line-height: 1.14;
}

.visit {
  padding: 112px 16px 28px;
  background:
    linear-gradient(rgba(255, 250, 241, 0.78), rgba(255, 250, 241, 0.9)),
    url("assets/hero-sushi-platter.png") center/cover fixed;
}

.visit-panel {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  background: var(--rice);
  box-shadow: var(--shadow);
}

.visit-panel dl {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  background: var(--line);
}

.visit-panel dl div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 18px 0;
  background: var(--rice);
}

.visit-panel dt {
  color: var(--muted);
  font-weight: 800;
}

.visit-panel dd {
  margin: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px max(16px, calc((100vw - 1160px) / 2));
  background: var(--charcoal);
  color: rgba(255, 250, 241, 0.58);
  font-size: 14px;
}

footer span,
footer a {
  max-width: 100%;
}

footer a {
  transition: color 200ms ease;
}

footer a:hover {
  color: var(--rice);
}

[data-reveal],
.reveal-line {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

[data-reveal].visible,
.reveal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-line:nth-child(2) {
  transition-delay: 100ms;
}

.reveal-line:nth-child(3) {
  transition-delay: 200ms;
}

.reveal-line:nth-child(4) {
  transition-delay: 300ms;
}

.hero .reveal-line {
  opacity: 0;
  transform: translateY(18px);
  animation: heroRise 720ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

.hero .reveal-line:nth-child(2) {
  animation-delay: 100ms;
}

.hero .reveal-line:nth-child(3) {
  animation-delay: 200ms;
}

.hero .reveal-line:nth-child(4) {
  animation-delay: 300ms;
}

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

@keyframes heroRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(117, 208, 147, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(117, 208, 147, 0);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    left: 16px;
    right: 16px;
    width: auto;
    border-radius: 8px;
    transform: none;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 940px;
    padding-top: 128px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(15, 13, 12, 0.9) 0%, rgba(15, 13, 12, 0.72) 48%, rgba(15, 13, 12, 0.95) 100%),
      linear-gradient(90deg, rgba(15, 13, 12, 0.8), transparent);
  }

  .hero-stats,
  .quick-info,
  .story-grid,
  .menu-layout,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .section {
    padding: 72px 0;
  }

  .menu-item:hover,
  .menu-item.active {
    transform: translateY(-4px);
  }

  .visit-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-width: 66px;
  }

  .site-header {
    left: 16px;
    right: auto;
    width: min(358px, calc(100% - 32px));
  }

  .hero {
    min-height: 880px;
    padding-inline: 16px;
  }

  .hero-content {
    width: min(358px, 100%);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.6vw, 45px);
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .button {
    width: 100%;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
