:root {
  --ink: #16110f;
  --smoke: #2c2a28;
  --paper: #f4efe5;
  --bone: #fff8eb;
  --gold: #c9982f;
  --red: #b92922;
  --green: #4a6d4c;
  --line: rgba(22, 17, 15, 0.15);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.7;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--bone);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(22, 17, 15, 0.92);
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 58px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.42));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: -4px;
  color: rgba(255, 248, 235, 0.72);
  font-size: 0.68rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  color: #ffd978;
}

.nav-call {
  padding: 8px 14px;
  border: 1px solid rgba(255, 248, 235, 0.38);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 130px clamp(20px, 7vw, 96px) 80px;
  color: var(--bone);
  background: #130f0d;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% 50%;
  filter: saturate(1.06) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.94) 0%, rgba(12, 10, 9, 0.70) 38%, rgba(12, 10, 9, 0.16) 72%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-logo {
  display: block;
  width: clamp(170px, 24vw, 330px);
  max-height: 190px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 22px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.72));
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5.8vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 248, 235, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  gap: 9px;
  border: 1px solid transparent;
  font-weight: 900;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary {
  background: var(--red);
  color: var(--bone);
  box-shadow: 0 12px 32px rgba(185, 41, 34, 0.35);
}

.ghost {
  border-color: rgba(255, 248, 235, 0.42);
  color: var(--bone);
}

.ghost.dark {
  border-color: rgba(22, 17, 15, 0.28);
  color: var(--ink);
}

.today-panel {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 36px;
  z-index: 2;
  width: min(310px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 248, 235, 0.22);
  background: rgba(22, 17, 15, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.today-panel span,
.today-panel small {
  display: block;
  color: rgba(255, 248, 235, 0.68);
}

.today-panel strong {
  display: block;
  margin: 4px 0;
  font-size: 1.14rem;
}

.band {
  background: var(--ink);
  color: var(--bone);
}

.brand-strip {
  display: flex;
  gap: 1px;
  overflow: hidden;
  background: #0d0a09;
  color: var(--bone);
  border-top: 1px solid rgba(255, 248, 235, 0.12);
  border-bottom: 1px solid rgba(255, 248, 235, 0.12);
}

.brand-strip span {
  flex: 1 0 auto;
  min-width: 170px;
  padding: 14px 22px;
  background: #181210;
  color: rgba(255, 248, 235, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
}

.intro-item {
  padding: clamp(24px, 4vw, 46px);
  background: #211a17;
}

.intro-item span {
  color: var(--gold);
  font-weight: 900;
}

.intro-item h2 {
  margin: 14px 0 8px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.intro-item p {
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.74);
}

.signature,
.menu,
.perspective,
.access,
.closing {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 96px);
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.signature h2,
.menu h2,
.access h2,
.closing h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.signature p {
  max-width: 640px;
  font-size: 1.08rem;
}

.signature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.flavor-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signature-visual {
  display: grid;
  gap: 14px;
}

.signature-visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 18px 56px rgba(22, 17, 15, 0.14);
}

.flavor-board div,
.menu-card,
.hours {
  border: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.62);
  box-shadow: 0 18px 56px rgba(22, 17, 15, 0.08);
}

.flavor-board div {
  min-height: 150px;
  padding: 22px;
}

.flavor-board strong {
  display: block;
  color: var(--red);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1;
}

.flavor-board span {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.menu {
  background:
    linear-gradient(135deg, rgba(185, 41, 34, 0.16), transparent 34%),
    var(--ink);
}

.perspective {
  background:
    linear-gradient(135deg, rgba(201, 152, 47, 0.12), transparent 42%),
    #211a17;
}

.perspective-panel {
  margin: 0;
}

.perspective-panel h2 {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--bone);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.08;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.perspective-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 235, 0.14);
  background: rgba(255, 248, 235, 0.08);
}

.perspective-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.perspective-grid h3 {
  margin: 52px 0 12px;
  color: var(--bone);
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  line-height: 1.24;
}

.perspective-grid p {
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.7);
  font-size: 0.95rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.section-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.74);
  font-size: 1.04rem;
}

.menu-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid rgba(255, 248, 235, 0.16);
  background: rgba(255, 248, 235, 0.16);
}

.menu-feature-row div {
  padding: 20px;
  background: rgba(18, 15, 13, 0.9);
}

.menu-feature-row span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.menu-feature-row strong {
  display: block;
  margin-top: 8px;
  color: var(--bone);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.menu-card {
  min-height: 320px;
  padding: 24px;
  background: #fff8eb;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card.with-photo {
  padding: 0;
  overflow: hidden;
  background: #120f0d;
  color: var(--bone);
  position: relative;
}

.menu-card.with-photo span,
.menu-card.with-photo h3,
.menu-card.with-photo p {
  position: relative;
  z-index: 1;
  margin-left: 22px;
  margin-right: 22px;
}

.menu-card.with-photo span {
  order: 1;
  margin-top: 22px;
}

.menu-card.with-photo img {
  display: block;
  order: 2;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: auto;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.05);
}

.menu-grid .menu-card:first-child img {
  transform: scale(1.14);
  transform-origin: 62% 52%;
}

.menu-card-large {
  grid-column: span 2;
  min-height: 520px;
}

.menu-card-large img {
  aspect-ratio: 16 / 9;
}

.menu-card-large h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.menu-card.with-photo h3,
.menu-card.with-photo p {
  order: 1;
}

.menu-card.with-photo h3 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.menu-card.with-photo p {
  margin-bottom: 22px;
  color: rgba(255, 248, 235, 0.75);
}

.menu-card.featured {
  background: #120f0d;
  color: var(--bone);
}

.menu-card span {
  align-self: flex-start;
  padding: 4px 9px;
  background: rgba(74, 109, 76, 0.14);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
}

.menu-card.featured span {
  background: rgba(185, 41, 34, 0.9);
  color: #ffe5a0;
}

.menu-card h3 {
  margin: auto 0 10px;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.18;
}

.menu-card p,
.note {
  margin-bottom: 0;
}

.note {
  margin-top: 22px;
  color: rgba(255, 248, 235, 0.68);
  font-size: 0.92rem;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.branch-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.62);
  box-shadow: 0 18px 56px rgba(22, 17, 15, 0.08);
}

.branch-heading {
  margin-bottom: 24px;
}

.branch-heading span {
  color: var(--gold);
  font-weight: 900;
}

.branch-heading h3 {
  margin: 10px 0 8px;
  color: var(--red);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.branch-heading p {
  margin-bottom: 0;
  color: rgba(22, 17, 15, 0.68);
  font-weight: 700;
}

.shop-table {
  border-top: 2px solid var(--ink);
}

.shop-table div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.shop-table span {
  color: rgba(22, 17, 15, 0.58);
  font-weight: 900;
}

.shop-table strong {
  font-size: 1.04rem;
}

.shop-table a {
  color: var(--red);
}

.hours {
  padding: 26px;
}

.branch-card .hours {
  margin-top: 22px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.hours h3,
.hours h4 {
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.hours h4 {
  margin-top: 0;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.hours dt {
  color: var(--red);
  font-weight: 900;
}

.hours dd {
  margin: 0;
  font-weight: 800;
}

.hours p {
  margin: 18px 0 0;
  color: rgba(22, 17, 15, 0.62);
  font-size: 0.92rem;
}

.branch-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.branch-map {
  display: inline-flex;
  justify-content: center;
  padding: 13px 16px;
  background: var(--ink);
  color: var(--bone);
  font-weight: 900;
}

.branch-map.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(22, 17, 15, 0.24);
}

.branch-map:hover,
.branch-map:focus-visible {
  background: var(--red);
  color: var(--bone);
  border-color: var(--red);
}

.shop-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(22, 17, 15, 0.62);
  font-size: 0.92rem;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.closing h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.footer {
  padding: 30px clamp(20px, 7vw, 96px);
  background: #0d0a09;
  color: rgba(255, 248, 235, 0.62);
  font-size: 0.82rem;
}

.footer p {
  margin-bottom: 8px;
}

.footer a {
  margin-right: 12px;
  color: #ffd978;
}

@media (max-width: 920px) {
  .nav-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 248, 235, 0.34);
    background: rgba(22, 17, 15, 0.3);
    color: var(--bone);
  }

  .nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
  }

  .nav-toggle span + span {
    margin-top: -12px;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(22, 17, 15, 0.98);
    font-size: 1.45rem;
  }

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

  .hero {
    min-height: 92vh;
    padding: 116px 20px 160px;
  }

  .hero-image {
    object-position: 68% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, 0.88), rgba(12, 10, 9, 0.25)),
      linear-gradient(0deg, rgba(12, 10, 9, 0.92), rgba(12, 10, 9, 0.1) 62%);
  }

  .today-panel {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .intro,
  .signature-grid,
  .perspective-grid,
  .menu-feature-row,
  .menu-grid,
  .access-layout,
  .branch-grid,
  .closing {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    display: grid;
  }

  .menu-card-large {
    grid-column: auto;
    min-height: 360px;
  }

  .menu-card.with-photo img {
    aspect-ratio: 16 / 10;
  }

  .closing {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 52px;
    height: 38px;
  }

  .hero-logo {
    width: min(70vw, 245px);
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(1.95rem, 9.6vw, 3rem);
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .brand-strip span {
    min-width: 150px;
    padding: 12px 18px;
  }

  .signature-actions {
    flex-direction: column;
  }

  .flavor-board {
    grid-template-columns: 1fr;
  }

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

  .menu-card.with-photo span,
  .menu-card.with-photo h3,
  .menu-card.with-photo p {
    margin-left: 18px;
    margin-right: 18px;
  }

  .menu-card.with-photo h3 {
    margin-top: 20px;
  }

  .menu-card.with-photo p {
    margin-bottom: 18px;
  }

  .menu-card.with-photo img {
    max-height: 240px;
  }

  .menu-grid .menu-card:first-child img {
    transform: scale(1.24);
  }

  .shop-table div,
  .hours dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .branch-actions {
    grid-template-columns: 1fr;
  }
}
