:root {
  --ink: #181412;
  --charcoal: #241b18;
  --paper: #f5efe1;
  --mist: #eef4ee;
  --sage: #3f936e;
  --vermilion: #c8322b;
  --gold: #d7b56d;
  --line: #c9b58e;
  --white: #fffaf0;
  --shadow: 0 22px 70px rgba(20, 14, 10, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

section {
  scroll-margin-top: 82px;
}

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;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(24, 20, 18, 0.82);
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  backdrop-filter: blur(14px);
}

.brand-link img {
  width: 112px;
  height: auto;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.92rem;
}

.global-nav a,
.header-call {
  transition: color 180ms ease;
}

.global-nav a:hover,
.header-call:hover {
  color: var(--gold);
}

.header-call {
  font-weight: 700;
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 138px 32px 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("assets/hero-karaage.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.94) 0%, rgba(18, 14, 12, 0.74) 38%, rgba(18, 14, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 14, 12, 0.46) 0%, rgba(18, 14, 12, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.hero-logo {
  width: 300px;
  margin: 0 0 26px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--vermilion);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.4;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: 3.7rem;
  line-height: 1.14;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.4rem;
  line-height: 1.28;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 32px;
  font-size: 1.08rem;
  color: rgba(255, 250, 240, 0.88);
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.primary-action {
  color: var(--white);
  background: var(--vermilion);
  box-shadow: 0 12px 28px rgba(200, 50, 43, 0.28);
}

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

.hero-strip {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 240, 0.22);
  padding-top: 18px;
}

.hero-strip p {
  margin: 0;
}

.hero-strip strong {
  color: var(--gold);
  font-size: 1.55rem;
}

.hero-strip span {
  margin-left: 4px;
  font-size: 0.84rem;
  color: rgba(255, 250, 240, 0.78);
}

.section-pad {
  padding: 84px 32px;
}

.intro,
.food,
.menu-preview,
.drink,
.nomihodai,
.access {
  display: grid;
  gap: 48px;
}

.intro {
  grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
  align-items: center;
  background:
    radial-gradient(circle at 6% 12%, rgba(63, 147, 110, 0.16), transparent 24%),
    var(--mist);
}

.intro-text,
.section-head,
.menu-copy,
.drink-copy,
.nomihodai-main,
.access-detail {
  width: min(100%, 620px);
}

.intro-text p:last-child,
.section-head p,
.menu-copy p,
.drink-copy p,
.nomihodai-main p,
.access-detail dd {
  color: rgba(24, 20, 18, 0.72);
}

.intro-gallery {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  grid-auto-rows: 190px;
  gap: 14px;
}

.intro-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-gallery img:first-child {
  grid-row: span 2;
}

.food {
  background: var(--paper);
}

.section-head {
  width: min(760px, 100%);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.dish-feature,
.dish {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(36, 27, 24, 0.1);
  box-shadow: 0 16px 50px rgba(36, 27, 24, 0.1);
}

.dish-feature {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.dish-feature img,
.dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-feature img {
  height: 250px;
  aspect-ratio: 1 / 1;
}

.dish-feature div {
  padding: 22px;
}

.dish-feature p {
  margin-bottom: 4px;
  color: var(--vermilion);
  font-weight: 800;
}

.dish-feature span {
  color: rgba(24, 20, 18, 0.68);
}

.dish {
  min-height: 420px;
}

.dish img {
  height: 250px;
  aspect-ratio: 1 / 1;
}

.dish h3,
.dish p {
  padding: 0 20px;
}

.dish h3 {
  margin-top: 20px;
}

.dish p {
  color: rgba(24, 20, 18, 0.68);
}

.menu-preview {
  grid-template-columns: 0.34fr 0.66fr;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.93)),
    url("assets/tomato-baguette.jpg");
  background-size: cover;
  background-position: center;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--vermilion);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.daily-special {
  margin: 24px 0 8px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(200, 50, 43, 0.08);
  border: 1px solid rgba(200, 50, 43, 0.2);
}

.daily-special strong {
  display: block;
  margin-bottom: 4px;
  color: var(--vermilion);
  line-height: 1.5;
}

.daily-special p {
  margin: 0;
  font-size: 0.92rem;
}

.menu-board,
.drink-board,
.nomihodai-board {
  display: grid;
  gap: 16px;
}

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

.menu-card,
.drink-card,
.nomihodai-board article {
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(36, 27, 24, 0.12);
  box-shadow: 0 14px 42px rgba(36, 27, 24, 0.08);
}

.menu-card-wide,
.drink-card-wide {
  grid-column: span 2;
}

.menu-card h3,
.drink-card h3,
.nomihodai-board h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.menu-card h3::before,
.drink-card h3::before,
.nomihodai-board h3::before {
  content: "";
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: var(--vermilion);
}

.menu-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: baseline;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(36, 27, 24, 0.11);
}

.menu-list span {
  min-width: 0;
  font-weight: 700;
  line-height: 1.55;
}

.menu-list strong {
  color: var(--vermilion);
  font-size: 1.05rem;
  line-height: 1.3;
  white-space: nowrap;
}

.menu-list small {
  grid-column: 2;
  color: rgba(24, 20, 18, 0.52);
  font-size: 0.72rem;
  line-height: 1;
  white-space: nowrap;
}

.drink {
  grid-template-columns: minmax(280px, 0.34fr) 0.66fr;
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 20, 18, 0.98), rgba(52, 33, 30, 0.92)),
    var(--charcoal);
}

.drink .section-kicker,
.drink-copy p {
  color: var(--gold);
}

.drink-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.drink-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.drink-points span {
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

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

.drink-card {
  color: var(--white);
  background: rgba(255, 250, 240, 0.065);
  border-color: rgba(255, 250, 240, 0.14);
  box-shadow: none;
}

.drink-card h3::before {
  background: var(--gold);
}

.drink-card .menu-list li {
  border-bottom-color: rgba(255, 250, 240, 0.14);
}

.drink-card .menu-list strong,
.drink-card .category-price {
  color: var(--gold);
}

.drink-card .menu-list small,
.drink-card .flavor-list,
.drink-card .category-price small,
.cocktail-grid p {
  color: rgba(255, 250, 240, 0.68);
}

.category-price {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 900;
}

.flavor-list {
  margin: 0;
  line-height: 1.9;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.cocktail-grid p {
  margin: 0;
}

.cocktail-grid b {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
}

.nomihodai {
  grid-template-columns: 0.34fr 0.66fr;
  align-items: start;
  background: linear-gradient(135deg, #f7efe8 0%, #eef4ee 100%);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0 16px;
  color: var(--vermilion);
  font-size: 3.8rem;
  line-height: 1;
  font-weight: 900;
}

.price span,
.price small {
  color: var(--ink);
  font-size: 1rem;
}

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

.nomihodai-board article:first-child {
  grid-column: span 2;
}

.tag-list,
.rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list li {
  padding: 8px 12px;
  color: var(--white);
  background: var(--sage);
  border-radius: 8px;
  font-weight: 800;
}

.rule-list {
  display: grid;
  gap: 10px;
}

.rule-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(24, 20, 18, 0.72);
}

.rule-list li::before {
  content: "";
  position: absolute;
  top: 0.86em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vermilion);
}

.access {
  grid-template-columns: minmax(280px, 1fr) 360px;
  align-items: center;
  background: var(--white);
}

.access dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 28px;
}

.access dl div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(36, 27, 24, 0.14);
}

.access dt {
  font-weight: 900;
  color: var(--vermilion);
}

.access dd {
  margin: 0;
}

.access .secondary-action {
  color: var(--ink);
  border-color: rgba(36, 27, 24, 0.24);
}

.line-box {
  justify-self: end;
  width: min(100%, 320px);
  padding: 22px;
  text-align: center;
  background: var(--mist);
  border: 1px solid rgba(36, 27, 24, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.line-box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
}

.line-box p {
  margin: 14px 0 0;
  font-weight: 900;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 42px 24px;
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 150px;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .dish-feature,
  .dish {
    min-height: 0;
  }

  .menu-preview,
  .drink,
  .nomihodai,
  .access {
    grid-template-columns: 1fr;
  }

  .menu-copy,
  .drink-copy,
  .nomihodai-main {
    width: min(760px, 100%);
  }

  .line-box {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 12px 18px;
  }

  .brand-link img {
    width: 92px;
  }

  .global-nav {
    justify-content: flex-end;
    gap: 14px;
    font-size: 0.8rem;
  }

  .global-nav a:nth-child(n + 2) {
    display: none;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 110px 20px 112px;
    background-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 14, 12, 0.94) 0%, rgba(18, 14, 12, 0.78) 55%, rgba(18, 14, 12, 0.28) 100%),
      linear-gradient(0deg, rgba(18, 14, 12, 0.62) 0%, rgba(18, 14, 12, 0) 46%);
  }

  .hero-logo {
    width: 230px;
  }

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-strip {
    left: 20px;
    right: 20px;
    bottom: 18px;
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 14px;
    font-size: 0.84rem;
  }

  .hero-strip strong {
    font-size: 1.25rem;
  }

  .section-pad {
    padding: 68px 20px;
  }

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

  .intro-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 155px;
  }

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

  .dish-feature img,
  .dish img {
    height: 250px;
  }

  .menu-board,
  .drink-board,
  .nomihodai-board,
  .menu-list.two-column,
  .cocktail-grid {
    grid-template-columns: 1fr;
  }

  .menu-card-wide,
  .drink-card-wide,
  .nomihodai-board article:first-child {
    grid-column: span 1;
  }

  .menu-card,
  .drink-card,
  .nomihodai-board article {
    padding: 18px;
  }

  .price {
    font-size: 3rem;
  }

  .access dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 460px) {
  .global-nav a {
    display: none;
  }

  .global-nav a:first-child {
    display: inline;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-logo {
    width: 210px;
  }

  .intro-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .intro-gallery img:first-child {
    grid-row: span 1;
  }
}
