:root {
  color-scheme: light;
  --ink: #121211;
  --graphite: #1d1d1a;
  --graphite-soft: #2a2a25;
  --cream: #f7f0e3;
  --paper: #fffaf0;
  --line: #dfd2bd;
  --muted: #6e675c;
  --red: #a32428;
  --gold: #cfa757;
  --green: #6f9647;
  --shadow: 0 18px 50px rgba(18, 18, 17, 0.12);
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid rgba(18, 18, 17, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.main-nav {
  position: fixed;
  inset: 72px 12px auto;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  color: var(--graphite);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: min(760px, 78svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--graphite);
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url("/public/assets/images/hero-sushi.webp") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.48);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(54px, 12vw, 112px) clamp(18px, 8vw, 96px);
  color: #fff8eb;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 14vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 7vw, 4.2rem);
}

h3 {
  font-size: 1.2rem;
}

.hero__lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 3vw, 1.34rem);
  color: #f1e6d4;
}

.hero__actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.button--primary {
  background: var(--red);
  color: #fffaf0;
}

.button--ghost {
  border-color: rgba(255, 250, 240, 0.58);
  color: #fffaf0;
  background: rgba(18, 18, 17, 0.22);
}

.button--dark {
  background: var(--graphite);
  color: #fffaf0;
}

.section {
  padding: clamp(54px, 9vw, 112px) 0;
  background: var(--paper);
}

.section--intro,
.section--delivery {
  background: var(--cream);
}

.section--contact {
  background: #fdf6e8;
}

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

.intro-grid,
.delivery-grid,
.contact-layout {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
}

.intro-grid p {
  max-width: 760px;
  margin: 0;
  color: var(--graphite-soft);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.menu-card {
  display: grid;
  overflow: hidden;
  background: #fffaf4;
  border: 1px solid rgba(18, 18, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(18, 18, 17, 0.08);
}

.menu-card picture {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--graphite);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.menu-card__type {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
}

.price {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--graphite);
  color: #fffaf0;
  font-weight: 900;
}

.delivery-grid {
  align-items: start;
}

.delivery-grid p {
  margin: 18px 0 0;
  color: var(--graphite-soft);
}

.delivery-panel {
  display: grid;
  gap: 10px;
}

.delivery-panel div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(18, 18, 17, 0.12);
  border-radius: 8px;
  background: var(--paper);
}

.delivery-panel span {
  color: var(--red);
  font-weight: 900;
}

.delivery-panel strong {
  font-size: 1.1rem;
}

.delivery-panel small {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-layout {
  align-items: start;
}

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

.contact-list div,
.hours {
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.52);
}

.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-list a,
.contact-list p {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 750;
}

.hours h3 {
  margin-bottom: 14px;
}

.hours dl {
  display: grid;
  gap: 6px;
  margin: 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(18, 18, 17, 0.1);
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  padding: 36px 0;
  background: var(--graphite);
  color: #fff8eb;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.site-footer p {
  margin: 8px 0 0;
  color: #e6d9c5;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: clamp(46px, 8vw, 86px) 0;
  background: var(--cream);
}

.legal-hero__inner,
.legal-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
}

.legal-content {
  padding: clamp(42px, 7vw, 82px) 0;
}

.legal-content section + section {
  margin-top: 34px;
}

.legal-content h2 {
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--graphite-soft);
}

.legal-content ul {
  padding-left: 1.2rem;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .main-nav a {
    padding: 9px 11px;
  }

  .intro-grid,
  .delivery-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

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

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1120px) {
  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .menu-card__body {
    min-height: 270px;
  }
}

@media (max-width: 420px) {
  .brand span {
    max-width: 14ch;
    line-height: 1.05;
  }

  .button {
    width: 100%;
  }

  .hours dl div {
    display: grid;
    gap: 2px;
  }
}
