:root {
  color-scheme: light;
  --ink: #191512;
  --muted: #6f6257;
  --paper: #f6efe4;
  --paper-2: #fffaf1;
  --line: rgba(25,21,18,.16);
  --accent: #b43d22;
  --accent-2: #e2a84b;
  --dark: #191512;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(31, 21, 14, .16);
  --serif: ui-serif, 'Yu Mincho', 'Hiragino Mincho ProN', 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Noto Sans JP', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: .02em;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(246,239,228,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { font-weight: 800; letter-spacing: .08em; text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--muted); }
.nav a { text-decoration: none; padding: 7px 10px; border: 1px solid transparent; border-radius: 999px; }
.nav a:hover { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.55); }
main { overflow: hidden; }
.container { width: min(1160px, calc(100vw - 36px)); margin: 0 auto; }
.hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: clamp(54px, 9vw, 120px) 0;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); font-weight: 800; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 38px; height: 1px; background: currentColor; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.03em; margin: 0; }
h1 { font-family: var(--serif); font-size: clamp(46px, 8vw, 116px); font-weight: 700; margin-top: 18px; }
h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 74px); margin-bottom: 24px; }
h3 { font-size: clamp(20px, 2.2vw, 30px); }
.lead { font-size: clamp(18px, 2.1vw, 27px); line-height: 1.65; color: #3a3029; margin: 24px 0 0; max-width: 720px; }
.copy { color: var(--muted); max-width: 720px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: #fffaf1;
}
.btn.secondary { background: transparent; color: var(--ink); }
.hero-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 640px; background: #1b1714; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.hero-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.34)); pointer-events: none; }
.photo-caption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: rgba(255,255,255,.82); font-size: 12px; letter-spacing: .08em; }
.section { padding: clamp(72px, 9vw, 128px) 0; border-top: 1px solid var(--line); }
.section.dark { background: var(--dark); color: #fffaf1; border-top: none; }
.section.dark .copy, .section.dark .muted { color: rgba(255,250,241,.68); }
.two-col { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card { background: rgba(255,250,241,.72); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.dark .card { background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.14); }
.card .num { font-family: var(--serif); font-size: 52px; line-height: .9; color: var(--accent); margin-bottom: 18px; }
.menu-list, .timeline-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.menu-item, .timeline-item { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.dark .menu-item, .dark .timeline-item { border-color: rgba(255,255,255,.16); }
.menu-name { font-weight: 800; }
.dots { border-bottom: 1px dotted currentColor; opacity: .32; transform: translateY(-5px); }
.price { white-space: nowrap; font-weight: 800; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.ba-panel { border-radius: 24px; padding: 24px; border: 1px solid var(--line); background: var(--paper-2); }
.ba-panel.bad { color: #6d635d; background: #eee7dc; }
.ba-label { font-size: 12px; font-weight: 900; letter-spacing: .14em; color: var(--accent); margin-bottom: 12px; text-transform: uppercase; }
.quote { font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); line-height: 1.3; letter-spacing: -.04em; }
.kicker { font-size: 13px; color: var(--muted); margin-top: 14px; }
.notice { display: inline-flex; gap: 10px; align-items: center; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; color: var(--muted); background: rgba(255,255,255,.5); }
.footer { padding: 42px 0; background: var(--dark); color: rgba(255,250,241,.75); }
.footer a { color: #fffaf1; }
.hub-hero { padding: clamp(64px, 10vw, 140px) 0 64px; }
.hub-title { font-size: clamp(48px, 8vw, 110px); max-width: 1100px; }
.hub-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin: 40px 0 70px; }
.hub-card { min-height: 280px; border-radius: 28px; overflow: hidden; text-decoration: none; background: var(--paper-2); border: 1px solid var(--line); position: relative; display: grid; align-content: end; padding: 28px; box-shadow: 0 18px 60px rgba(31,21,14,.08); }
.hub-card.big { grid-column: span 2; min-height: 360px; background: #191512; color: #fffaf1; }
.hub-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: saturate(.8); }
.hub-card.big img { opacity: .33; }
.hub-card > *:not(img) { position: relative; z-index: 1; }
.hub-card p { max-width: 560px; color: inherit; opacity: .74; }
.small-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.pill { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: 13px; color: var(--muted); }
@media (max-width: 900px) {
  .hero-grid, .two-col, .before-after, .hub-grid, .small-grid { grid-template-columns: 1fr; }
  .hub-card.big { grid-column: auto; }
  .cards { grid-template-columns: 1fr; }
  .hero-card { min-height: 440px; }
  .site-header { align-items: flex-start; flex-direction: column; }
}
