:root {
  --cream: #F5EFE0;
  --red: #B23A2E;
  --red-dark: #8B2A21;
  --brown: #3B2A1E;
  --brown-soft: rgba(59, 42, 30, 0.16);
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: 'Shippori Mincho', serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-weight: 800;
  margin: 0;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 8px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid var(--brown-soft);
}

.header-inner {
  max-width: 768px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  color: var(--brown);
  white-space: nowrap;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--brown-soft);
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.site-nav.is-open {
  max-height: 280px;
}

.site-nav a {
  padding: 16px 24px;
  text-decoration: none;
  font-size: 15px;
  border-top: 1px solid var(--brown-soft);
}

.site-nav a:first-child {
  border-top: none;
}

/* Hero */

.hero {
  position: relative;
  background: var(--red);
  color: var(--cream);
  padding-top: 56px;
  overflow: hidden;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 4px;
}

.hero h1 {
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.35;
}

.hero-copy {
  font-size: clamp(15px, 4vw, 17px);
  max-width: 32em;
  margin: 0;
}

.hero-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: 10px;
  padding: 12px 28px;
  background: var(--cream);
  color: var(--red-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 999px;
}

.hero-wave {
  display: block;
  width: 100%;
  height: 48px;
  position: relative;
  margin-top: -1px;
}

/* About */

.about p {
  font-size: 15px;
}

/* Menu */

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--brown-soft);
}

.menu-item:first-child {
  border-top: 1px solid var(--brown-soft);
}

.menu-icon {
  flex: none;
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-top: 2px;
}

.menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-item h3 {
  font-size: 16px;
  font-weight: 600;
}

.menu-item .price {
  font-size: 15px;
  font-weight: 800;
  color: var(--red-dark);
  white-space: nowrap;
}

.menu-item p {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: var(--brown);
  opacity: 0.85;
}

.menu-note {
  margin: 20px 0 0;
  font-size: 12.5px;
  opacity: 0.7;
}

/* Hours / Where */

.hours {
  background: #EFE6D2;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.info-block .eyebrow {
  display: block;
  margin-top: 16px;
}

.info-icon {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.big-text {
  font-size: 20px;
  font-weight: 800;
  margin: 4px 0 8px;
}

.info-block p {
  font-size: 14px;
}

/* Access */

.access-list {
  margin: 24px 0 0;
}

.access-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--brown-soft);
  font-size: 14px;
}

.access-row:first-child {
  border-top: 1px solid var(--brown-soft);
}

.access-row dt {
  flex: none;
  width: 88px;
  color: var(--red-dark);
  font-weight: 800;
}

.access-row dd {
  margin: 0;
  flex: 1;
}

.access-row a {
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.inline-icon {
  width: 16px;
  height: 16px;
}

/* Footer */

.site-footer {
  background: var(--brown);
  color: var(--cream);
}

.footer-inner {
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.footer-sns, .footer-copy {
  margin: 0;
  font-size: 12.5px;
  opacity: 0.8;
}

/* Desktop */

@media (min-width: 768px) {
  .header-inner {
    padding: 0 32px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    background: transparent;
    border: none;
  }

  .site-nav a {
    border-top: none;
    padding: 8px 4px;
    margin-left: 28px;
  }

  .site-nav a:first-child {
    margin-left: 0;
  }

  .section-inner {
    padding: 88px 32px;
  }

  .hero-inner {
    padding: 0 32px 120px;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
