:root {
  --ink: #142a33;
  --ink-soft: #43565d;
  --cream: #f5f0e7;
  --red: #b64b3c;
  --yellow: #e5b653;
  --line: #c9c5bd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif; }
a { color: inherit; text-decoration: none; }
.test-notice { background: var(--ink); color: white; padding: .55rem 1rem; text-align: center; font-size: .85rem; letter-spacing: .05em; }

.site-header { max-width: 72rem; margin: auto; padding: 1.4rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-mark { width: 2.8rem; height: 2.8rem; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font: 700 1.25rem serif; }
.brand small { display: block; color: var(--red); font-size: .65rem; font-weight: 800; letter-spacing: .28em; }
.brand strong { display: block; font: 700 1.1rem serif; letter-spacing: .12em; }
nav { display: flex; gap: 1.8rem; font-size: .9rem; font-weight: 700; }
nav a:hover { color: var(--red); }
.header-cta { background: var(--red); color: white; padding: .9rem 1.2rem; font-weight: 700; font-size: .9rem; }

.hero { max-width: 72rem; margin: auto; padding: 3rem 2rem 6rem; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.eyebrow { margin: 0 0 1rem; color: var(--red); font-size: .85rem; font-weight: 800; letter-spacing: .18em; }
h1, h2 { margin: 0; font-family: Georgia, "Yu Mincho", serif; line-height: 1; }
h1 { font-size: clamp(3.2rem, 8vw, 6.8rem); letter-spacing: -.07em; }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
.lead { max-width: 32rem; margin: 1.7rem 0 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { min-height: 3.2rem; padding: .9rem 1.4rem; display: inline-flex; align-items: center; font-weight: 800; }
.button-dark { background: var(--ink); color: white; }
.button-outline { border: 2px solid var(--ink); }
.hero-art { position: relative; min-height: 31rem; overflow: hidden; padding: 2.5rem; background: #173947; color: white; }
.hero-art::before { content: ""; position: absolute; width: 12rem; height: 12rem; right: -3rem; top: -3rem; border: 2rem solid var(--red); border-radius: 50%; }
.hero-art::after { content: ""; position: absolute; left: 0; bottom: 5rem; width: 75%; height: .5rem; background: var(--yellow); }
.hero-art > span { position: relative; color: var(--yellow); font-weight: 800; letter-spacing: .3em; font-size: .8rem; }
.hero-art p { position: absolute; right: 2.5rem; bottom: 7rem; text-align: right; color: #ffffffb8; line-height: 1.8; font-size: .85rem; }
.hero-art strong { position: absolute; left: 2rem; bottom: 1.8rem; font: 900 clamp(4.8rem, 10vw, 8rem)/1 Georgia, serif; letter-spacing: -.08em; }

.section { padding: 6rem 2rem; }
.section-white { background: white; }
.section-inner, .reservation, footer { max-width: 72rem; margin: auto; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.2rem; }
.section-heading > p { color: #617177; font-size: .85rem; }
.price-list { border-top: 2px solid var(--ink); }
.price-list article { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.price-list h3, .price-list p { margin: 0; }
.price-list h3 { font-size: 1.2rem; }
.price-list p { color: #617177; font-size: .9rem; }
.price-list strong { font: 700 1.25rem serif; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.info-copy { max-width: 30rem; color: var(--ink-soft); line-height: 2; }
.shop-details { margin: 0; border-top: 1px solid var(--line); }
.shop-details div { padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.shop-details dt { font-weight: 800; }
.shop-details dd { margin: .4rem 0 0; color: var(--ink-soft); }
.reservation-wrap { background: var(--ink); }
.reservation { max-width: none; padding: 4.5rem max(2rem, calc((100vw - 72rem) / 2)); background: var(--ink); color: white; display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.reservation .eyebrow { color: var(--yellow); }
.reservation h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.reservation div > p:last-child { color: #ffffffb8; }
.phone-button { min-height: 3.7rem; padding: 1rem 1.8rem; display: grid; place-items: center; background: var(--cream); color: var(--ink); font-size: 1.15rem; font-weight: 800; white-space: nowrap; }
footer { max-width: none; padding: 2rem max(2rem, calc((100vw - 72rem) / 2)); display: flex; justify-content: space-between; gap: 1rem; background: #0d2027; color: #ffffff99; font-size: .8rem; }
.mobile-actions { display: none; }

@media (max-width: 760px) {
  body { padding-bottom: 4.5rem; }
  .site-header { padding: 1.1rem 1.25rem; }
  nav, .header-cta { display: none; }
  .hero { grid-template-columns: 1fr; padding: 2rem 1.25rem 4rem; }
  .hero-art { min-height: 24rem; padding: 1.8rem; }
  .hero-art strong { left: 1.4rem; font-size: 5rem; }
  .section { padding: 4rem 1.25rem; }
  .section-heading { align-items: start; flex-direction: column; }
  .price-list article { grid-template-columns: 1fr auto; }
  .price-list article p { grid-column: 1 / -1; grid-row: 2; }
  .info-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reservation { align-items: stretch; flex-direction: column; padding: 3.5rem 1.25rem; }
  footer { flex-direction: column; padding: 2rem 1.25rem; }
  .mobile-actions { position: fixed; z-index: 10; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; padding: .45rem; background: var(--ink); box-shadow: 0 -8px 30px #0003; }
  .mobile-actions a { min-height: 3.6rem; display: grid; place-items: center; color: white; font-weight: 800; }
  .mobile-actions a:last-child { background: var(--red); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
