:root {
  --ink: #241d1a;
  --muted: #655a53;
  --cream: #fbf6ec;
  --paper: #fffdf8;
  --paper-warm: #fffaf2;
  --soft-cream: #f7efe2;
  --sea-soft: #edf6f3;
  --green: #2f7658;
  --green-dark: #1f513e;
  --roof: #b54f39;
  --wood: #6b4a32;
  --sea: #96bdc7;
  --line: #e4d4c1;
  --line-soft: rgba(107, 74, 50, 0.15);
  --shadow: 0 18px 48px rgba(36, 29, 26, 0.12);
  --shadow-soft: 0 12px 28px rgba(36, 29, 26, 0.08);
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  --font-heading: "Zen Old Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#view,
#popular,
#menu,
#info {
  scroll-margin-top: 104px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(181, 79, 57, 0.36);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  min-height: 72px;
  padding: 13px 5vw;
  background: rgba(251, 246, 236, 0.96);
  border-bottom: 1px solid rgba(107, 74, 50, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: 0 5px 18px rgba(36, 29, 26, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 220px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--roof);
  color: var(--roof);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: end;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fffdf8;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(31, 81, 62, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.phone-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #164433;
  box-shadow: 0 10px 24px rgba(31, 81, 62, 0.23);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 72svh;
  padding: 66px 5vw 74px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(36, 29, 26, 0.78), rgba(36, 29, 26, 0.34), rgba(36, 29, 26, 0.12)),
    url("assets/hero-toankuru-recommended.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: var(--roof);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  color: #fffdf8;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

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

h1 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 3.25rem;
  line-height: 1.16;
  font-weight: 900;
}

.lead {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: 1.12rem;
}

.lead span {
  display: block;
}

@media (min-width: 900px) {
  .lead {
    font-size: 1rem;
  }

  .lead span {
    white-space: nowrap;
  }
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(36, 29, 26, 0.1);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 13px 28px rgba(36, 29, 26, 0.14);
  transform: translateY(-1px);
}

.button.primary {
  background: var(--roof);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 253, 248, 0.9);
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(76px, 9vw, 108px) 5vw;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.intro-text h2,
.section-heading h2,
.visit-copy h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.34;
  font-weight: 900;
}

.section-heading h2::after,
.visit-copy h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--roof);
}

.intro-text p,
.section-heading p,
.visit-copy p {
  color: var(--muted);
}

.feature-photo {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.intro {
  background: linear-gradient(180deg, var(--cream) 0%, var(--sea-soft) 100%);
}

.popular-section {
  background: linear-gradient(180deg, var(--sea-soft) 0%, var(--paper-warm) 100%);
  border-top: 1px solid var(--line);
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 24px);
}

.popular-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.popular-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.popular-card-body {
  flex: 1;
  padding: 20px 22px 22px;
}

.popular-card h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.45;
}

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

.menu-section {
  background: linear-gradient(180deg, var(--paper) 0%, #fbf8f0 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

#popular .section-heading,
#menu .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.menu-list {
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.menu-list h3 {
  margin: 0;
  padding: 16px 18px;
  background: linear-gradient(90deg, var(--green-dark), #23624a);
  color: #fffdf8;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.menu-list dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  background: var(--paper);
}

.menu-list dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  min-height: 64px;
  padding: 14px 16px;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
  background: #fffefb;
}

.menu-list dl div:nth-child(-n + 3) {
  border-top: 0;
}

.menu-list dl div:nth-child(3n + 1) {
  border-left: 0;
}

.menu-empty {
  pointer-events: none;
  background: var(--paper);
}

.menu-list dt,
.menu-list dd {
  margin: 0;
}

.menu-list dt {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  line-break: strict;
  overflow-wrap: break-word;
}

.menu-list dd {
  color: var(--roof);
  font-family: var(--font-body);
  font-weight: 800;
  white-space: nowrap;
}

.menu-list-note {
  margin: 0;
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(107, 74, 50, 0.16);
  background: #fffdf8;
  color: var(--muted);
  font-size: 0.92rem;
}

.visit-section {
  background: linear-gradient(180deg, var(--soft-cream) 0%, var(--sea-soft) 100%);
}

.visit-stack {
  display: grid;
  gap: 30px;
  max-width: 880px;
}

.visit-copy {
  max-width: none;
  text-align: center;
}

.visit-copy .visit-actions {
  justify-content: center;
}

.shop-info {
  padding: 30px 32px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.shop-info dl {
  margin: 0;
}

.shop-info dl div {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.shop-info dl div:last-child {
  border-bottom: 0;
}

.shop-info dt,
.shop-info dd {
  margin: 0;
}

.shop-info dt {
  color: var(--green-dark);
  font-weight: 800;
}

.shop-info dd {
  color: var(--muted);
}

.shop-info a {
  color: var(--green-dark);
  font-weight: 800;
}

.info-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 38px 5vw;
  background: var(--green-dark);
  color: #fffdf8;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-self: center;
  }

  .hero {
    min-height: 70svh;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 2.45rem;
  }

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

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

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

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

  .menu-list dl .menu-empty {
    display: none;
  }

  .menu-list dl div:nth-child(n) {
    border-top: 1px solid rgba(107, 74, 50, 0.16);
    border-left: 1px solid rgba(107, 74, 50, 0.16);
  }

  .menu-list dl div:nth-child(-n + 2) {
    border-top: 0;
  }

  .menu-list dl div:nth-child(2n + 1) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    gap: 10px;
    min-height: 96px;
  }

  .brand {
    width: 180px;
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.78rem;
  }

  .site-nav a {
    flex: 0 0 auto;
  }

  .header-phone {
    align-self: center;
    justify-self: end;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 68svh;
    padding: 46px 20px 48px;
    background-position: center top;
  }

  h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 64px 20px;
  }

  .intro-text h2,
  .section-heading h2,
  .visit-copy h2 {
    font-size: 1.65rem;
  }

  .shop-info {
    padding: 22px;
  }

  .menu-list dl {
    grid-template-columns: 1fr;
  }

  .menu-list dl div:nth-child(n) {
    border-top: 1px solid rgba(107, 74, 50, 0.16);
    border-left: 0;
  }

  .menu-list dl div:first-child {
    border-top: 0;
  }

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

  .site-footer {
    text-align: center;
  }
}
