:root {
  --sumi: #17120f;
  --ink: #241d19;
  --muted: #625e59;
  --line: #e3ddd3;
  --paper: #faf7f0;
  --white: #ffffff;
  --nori: #17483c;
  --nori-soft: #dceadf;
  --akane: #b83d2b;
  --mustard: #ca9d2e;
  --blue-gray: #344c5a;
  --shadow: 0 24px 70px rgba(23, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(227, 221, 211, 0.88);
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sumi);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
}

.brand-name,
.brand-area {
  display: block;
}

.brand-name {
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.3;
}

.brand-area {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--akane);
}

.header-call,
.button,
.phone-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
}

.header-call {
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--nori);
  color: var(--white);
  white-space: nowrap;
}

.header-call span,
.button-icon,
.phone-large span {
  display: inline-grid;
  min-width: 32px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 58px clamp(20px, 7vw, 92px) 48px;
  background: var(--sumi);
  color: var(--white);
}

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

.hero-visual {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.96) 0%, rgba(23, 18, 15, 0.83) 40%, rgba(23, 18, 15, 0.36) 70%, rgba(23, 18, 15, 0.16) 100%),
    linear-gradient(180deg, rgba(23, 18, 15, 0.1), rgba(23, 18, 15, 0.4));
}

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

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

.hero h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  font-size: 4.75rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  margin-top: 24px;
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

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

.button {
  min-height: 50px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.button-primary {
  background: var(--akane);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button-map {
  margin-top: 22px;
  background: var(--nori);
  color: var(--white);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  min-width: 0;
  padding: 23px clamp(18px, 4vw, 44px);
  background: var(--white);
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.section,
.menu-band,
.hours-section,
.access-section,
.contact-section {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 6vw, 82px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  max-width: 800px;
}

h2 {
  font-size: 2.65rem;
  line-height: 1.25;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.35;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.story-layout > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.story-points article,
.menu-grid article,
.hours-card,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 18, 15, 0.08);
}

.story-points article {
  min-height: 216px;
  padding: 23px;
}

.story-points span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--akane);
  font-size: 0.82rem;
  font-weight: 900;
}

.story-points p,
.menu-grid p,
.hours-copy p,
.access-copy p,
.contact-section p,
.map-panel p {
  color: var(--muted);
}

.story-points h3,
.menu-grid h3,
.map-panel h3 {
  margin-bottom: 8px;
}

.menu-band {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--sumi);
  color: var(--white);
}

.menu-copy {
  max-width: 520px;
}

.menu-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

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

.menu-grid article {
  min-height: 250px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(255, 255, 255, 0.98));
  color: var(--ink);
}

.menu-kana {
  margin-bottom: 58px;
  color: var(--blue-gray);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hours-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.hours-copy {
  max-width: 560px;
}

.hours-card {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

th,
td {
  padding: 18px clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

thead th {
  background: var(--nori-soft);
  color: var(--nori);
  font-size: 0.9rem;
}

tbody th {
  width: 42%;
}

.hours-card p {
  padding: 18px clamp(16px, 2vw, 24px);
  color: var(--muted);
}

.hours-card a {
  color: var(--akane);
  font-weight: 900;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: stretch;
  background: var(--white);
}

.shop-list {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.shop-list div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 17px 20px;
  background: var(--paper);
}

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

.shop-list dt {
  color: var(--blue-gray);
  font-weight: 900;
}

.shop-list dd {
  min-width: 0;
}

.shop-list a {
  color: var(--akane);
  font-weight: 900;
}

.map-panel {
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: clamp(26px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(23, 72, 60, 0.94), rgba(52, 76, 90, 0.88)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 18px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.map-pin {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--mustard);
  transform: rotate(-45deg);
}

.map-pin::after {
  display: block;
  width: 18px;
  height: 18px;
  margin: 15px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.contact-section {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--nori-soft);
}

.contact-section h2,
.contact-section p {
  max-width: 760px;
}

.phone-large {
  margin-top: 28px;
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--akane);
  color: var(--white);
  font-size: 1.45rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 24px clamp(20px, 6vw, 82px);
  background: var(--sumi);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

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

  .site-nav {
    display: none;
  }

  .story-layout,
  .menu-band,
  .hours-section,
  .access-section {
    grid-template-columns: 1fr;
  }

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

  .story-points article,
  .menu-grid article {
    min-height: 0;
  }

  .menu-kana {
    margin-bottom: 26px;
  }

  .hero h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-area {
    display: none;
  }

  .header-call {
    width: 44px;
    padding: 0;
    font-size: 0;
  }

  .header-call span {
    min-width: 0;
    width: 28px;
    height: 24px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 620px;
    padding: 72px 18px 58px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(23, 18, 15, 0.92) 0%, rgba(23, 18, 15, 0.76) 48%, rgba(23, 18, 15, 0.48) 100%);
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .button {
    width: 100%;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .section,
  .menu-band,
  .hours-section,
  .access-section,
  .contact-section {
    padding: 54px 18px;
  }

  th,
  td {
    padding: 15px 14px;
  }

  .shop-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }

  .hero-copy,
  .quick-info strong {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .phone-large {
    font-size: 1.14rem;
  }
}
