:root {
  --ink: #1f1b16;
  --sub: #686057;
  --paper: #f5efe4;
  --paper-2: #ebe0cf;
  --cream: #fffaf0;
  --green: #293727;
  --deep: #121812;
  --line: rgba(31, 27, 22, 0.16);
  --gold: #b1894d;
  --line-green: #07b53b;
  --shadow: 0 24px 70px rgba(22, 21, 18, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 54px);
  color: var(--cream);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 239, 228, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(31, 27, 22, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Marcellus", serif;
  font-size: 21px;
  overflow: hidden;
}

.brand-mark > * {
  grid-area: 1 / 1;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.site-footer p {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.brand small,
.site-footer small {
  display: block;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 36px);
  font-size: 13px;
  font-weight: 800;
}

.nav-reserve {
  min-width: 88px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--deep);
  color: var(--cream);
}

.hero-photo {
  position: relative;
  order: 2;
  min-height: 100svh;
  padding: clamp(86px, 9vw, 124px) clamp(20px, 5vw, 62px) clamp(48px, 7vw, 82px) 0;
  z-index: 1;
}

.hero-photo::after {
  position: absolute;
  inset: clamp(86px, 9vw, 124px) clamp(20px, 5vw, 62px) clamp(48px, 7vw, 82px) 0;
  content: "";
  background: linear-gradient(0deg, rgba(18, 24, 18, 0.08), rgba(18, 24, 18, 0));
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  align-self: end;
  margin: 0 0 clamp(86px, 12vw, 146px) clamp(20px, 8vw, 118px);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 20%, rgba(177, 137, 77, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(18, 24, 18, 0.98), rgba(18, 24, 18, 0.9) 48%, rgba(18, 24, 18, 0.62));
  z-index: 0;
}

.kicker,
.section-en {
  margin: 0 0 15px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--cream);
}

.hero h1 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(62px, 10vw, 132px);
  font-weight: 400;
  line-height: 0.88;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(19px, 2.3vw, 29px);
  font-weight: 700;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 170ms ease, background 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--cream);
  color: var(--deep);
}

.button.line {
  background: var(--line-green);
  color: white;
}

.button.secondary {
  border: 1px solid rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.12);
  color: var(--cream);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: 30px;
  display: grid;
  gap: 7px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note-row {
  display: grid;
  grid-template-columns: 4.8em max-content;
  gap: 10px;
  align-items: baseline;
}

.hero-note-days,
.hero-note-time {
  white-space: nowrap;
}

.hero-note-time {
  font-variant-numeric: tabular-nums;
}

.lead-section,
.story,
.renewal,
.menu,
.reserve,
.access {
  padding: clamp(78px, 11vw, 150px) clamp(20px, 5vw, 72px);
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 94px);
  align-items: end;
}

.lead-title,
.section-head,
.access-grid,
.menu-list,
.renewal-grid {
  width: min(1100px, 100%);
  margin-inline: auto;
}

h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.32;
}

.lead-section > p,
.story-copy p,
.renewal-grid p,
.reserve p,
.menu-list span,
dd {
  color: var(--sub);
  line-height: 2;
}

.lead-section > p {
  margin: 0;
  font-size: 17px;
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  background: var(--paper-2);
}

.story-image {
  justify-self: end;
  width: min(420px, 100%);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 680px;
}

.story-copy p {
  margin: 28px 0 0;
}

.renewal {
  background: var(--green);
  color: var(--cream);
}

.centered {
  text-align: center;
}

.centered h2 {
  margin-inline: auto;
}

.renewal-title span {
  display: inline;
}

.renewal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 52px;
  background: rgba(255, 250, 240, 0.18);
}

.shop-gallery {
  display: grid;
  width: min(1100px, 100%);
  margin: 52px auto 0;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.shop-gallery figure {
  margin: 0;
  min-height: 420px;
}

.shop-gallery-main {
  grid-row: span 2;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.renewal-grid article {
  min-height: 290px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(18, 24, 18, 0.4);
}

.renewal-grid span {
  color: var(--gold);
  font-family: "Marcellus", serif;
  font-size: 34px;
}

.renewal-grid h3,
.menu-list h3 {
  margin: 24px 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  line-height: 1.45;
}

.renewal-grid p {
  color: rgba(255, 250, 240, 0.78);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.menu-list div {
  min-height: 300px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.48);
}

.menu-list p {
  margin: 0;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-list span {
  display: block;
}

.price-board {
  width: min(1100px, 100%);
  margin: 64px auto 0;
  border-top: 1px solid var(--line);
}

.price-board-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding: 34px 0 28px;
  border-bottom: 1px solid var(--line);
}

.price-board-head .section-en {
  margin-bottom: 10px;
}

.price-board h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.3;
}

.price-board-head > p {
  margin: 0;
  color: var(--sub);
  line-height: 1.9;
}

.price-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 42px);
  padding-top: 34px;
}

.price-group h4 {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.price-name {
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
}

.price-amount {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.payment-board {
  scroll-margin-top: 96px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.payment-board-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.payment-board-head .section-en {
  margin-bottom: 10px;
}

.payment-board-head > p {
  margin: 0;
  color: var(--sub);
  line-height: 1.9;
}

.payment-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.payment-group {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.48);
}

.payment-group h4 {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.payment-group p {
  margin: 0;
  color: var(--sub);
  line-height: 1.8;
}

.reserve {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  background: var(--deep);
  color: var(--cream);
}

.reserve p {
  max-width: 680px;
  color: rgba(255, 250, 240, 0.78);
}

.reserve-panel {
  display: grid;
  gap: 14px;
}

.reserve-link {
  display: grid;
  gap: 8px;
  min-height: 122px;
  align-content: center;
  padding: 24px 28px;
  border-radius: 6px;
}

.reserve-link span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reserve-link strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.reserve-link small {
  opacity: 0.74;
}

.reserve-link.phone {
  background: var(--cream);
  color: var(--deep);
}

.reserve-link.official-line {
  background: var(--line-green);
  color: white;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 42px;
  margin-top: 46px;
}

dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.hours-list {
  display: grid;
  gap: 6px;
  line-height: 1.7;
}

.hours-row {
  display: grid;
  grid-template-columns: 4.2em 1fr;
  gap: 14px;
  align-items: baseline;
}

.hours-days {
  color: var(--ink);
  font-weight: 700;
}

.hours-time {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.map-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--paper-2);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-link {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  min-width: 190px;
  padding: 18px 20px;
  background: rgba(18, 24, 18, 0.9);
  color: var(--cream);
}

.map-link span {
  color: var(--gold);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-link strong {
  font-family: "Marcellus", serif;
  font-size: 24px;
  font-weight: 400;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 4vw, 54px);
  background: var(--deep);
  color: var(--cream);
}

.site-footer p {
  margin: 0;
}

.footer-logo {
  width: 150px;
  max-width: 42vw;
  margin-bottom: 14px;
  background: var(--cream);
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header {
    padding: 15px 20px;
  }

  .nav-toggle {
    position: relative;
    z-index: 33;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 26px;
    background: var(--deep);
    color: var(--cream);
    font-size: 22px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .lead-section,
  .hero,
  .story,
  .shop-gallery,
  .renewal-grid,
  .menu-list,
  .price-board-head,
  .price-groups,
  .payment-board-head,
  .payment-groups,
  .reserve,
  .access-grid,
  .story-image {
    justify-self: start;
  }

  .lead-section,
  .hero,
  .story,
  .shop-gallery,
  .renewal-grid,
  .menu-list,
  .price-board-head,
  .price-groups,
  .payment-board-head,
  .payment-groups,
  .reserve,
  .access-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-section > *,
  .story > *,
  .shop-gallery > *,
  .renewal-grid > *,
  .menu-list > *,
  .price-board-head > *,
  .price-groups > *,
  .payment-board-head > *,
  .payment-groups > *,
  .reserve > *,
  .access-grid > * {
    min-width: 0;
  }

  .shop-gallery-main {
    grid-row: auto;
  }

  .menu-list {
    gap: 14px;
  }

  .menu-list div {
    min-height: auto;
    padding: 28px;
  }

  .hero-note {
    left: 20px;
    right: auto;
    gap: 7px;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    order: initial;
    min-height: 100%;
    padding: 0;
    z-index: 0;
  }

  .hero-photo::after {
    inset: 0;
    background:
      linear-gradient(0deg, rgba(18, 24, 18, 0.88), rgba(18, 24, 18, 0.2) 52%, rgba(18, 24, 18, 0.58)),
      linear-gradient(90deg, rgba(18, 24, 18, 0.54), rgba(18, 24, 18, 0.08));
  }

  .hero::before {
    background: transparent;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 10px;
    min-width: 0;
  }

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

  .brand small {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .brand strong {
    font-size: 16px;
  }

  .hero-inner {
    margin: 0 20px 120px;
  }

  .hero-photo img {
    object-position: center top;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .renewal-title {
    line-height: 1.35;
  }

  .renewal-title span {
    display: block;
  }

  .lead-section,
  .story,
  .renewal,
  .menu,
  .reserve,
  .access {
    padding-block: 72px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer,
  .footer-links {
    display: grid;
  }
}
