:root {
  --ink: #171513;
  --paper: #f6f0e6;
  --paper-soft: #fbf8f1;
  --coal: #141615;
  --charcoal: #20201d;
  --muted: rgba(23, 21, 19, 0.68);
  --muted-light: rgba(255, 255, 255, 0.72);
  --gold: #b89a62;
  --copper: #8d4b2d;
  --line: rgba(23, 21, 19, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
  line-height: 1.9;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(23, 21, 19, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 19, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 42px;
  color: #fff;
  mix-blend-mode: difference;
}

.brand-logo {
  width: 94px;
  height: auto;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.lang-button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  opacity: 0.55;
}

.lang-button.is-active {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--coal);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 12, 0.64), rgba(12, 13, 12, 0.14) 52%, rgba(12, 13, 12, 0.62)),
    linear-gradient(180deg, rgba(12, 13, 12, 0.1), rgba(12, 13, 12, 0.82)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=2400&q=82") center / cover;
}

.hero-copy {
  position: relative;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 160px 0 86px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero .kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  line-height: 0.86;
}

.hero-logo {
  width: min(54vw, 470px);
  max-width: 100%;
  height: auto;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(28px, 4.4vw, 58px);
  line-height: 1.34;
  font-weight: 500;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1.55;
}

.hero-subline {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 2;
}

.section {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0;
}

.statement {
  display: grid;
  justify-items: start;
  text-align: left;
}

.statement .lead {
  max-width: 820px;
  margin-bottom: 34px;
  font-size: clamp(27px, 4vw, 48px);
  line-height: 1.6;
}

.statement p:not(.lead) {
  max-width: 840px;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--copper);
}

.detail-block {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: center;
}

.photo-panel {
  margin: 0;
  background: var(--coal);
  overflow: hidden;
}

.photo-panel img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.photo-panel.wide img {
  aspect-ratio: 4 / 3;
}

.photo-panel.portrait img {
  aspect-ratio: 4 / 5;
}

.detail-text p,
.chef-copy p,
.reservation-copy p {
  color: var(--muted);
}

.qualities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  background: var(--line);
}

.qualities article {
  min-height: 360px;
  padding: 64px 42px;
  background: var(--charcoal);
  color: var(--paper-soft);
}

.qualities span {
  display: block;
  margin-bottom: 72px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.qualities p {
  color: rgba(255, 255, 255, 0.68);
}

.chef {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.gallery img {
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.reservation {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.reserve-link {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 26px;
  color: var(--paper-soft);
  background: var(--coal);
  border: 1px solid var(--coal);
  transition: background-color 180ms ease, color 180ms ease;
}

.reserve-link:hover {
  color: var(--coal);
  background: transparent;
}

.shop-info {
  margin: 0;
  border-top: 1px solid var(--line);
}

.shop-info div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.shop-info dt {
  color: var(--muted);
}

.shop-info dd {
  margin: 0;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 42px;
  color: var(--muted-light);
  background: var(--coal);
  font-size: 13px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .site-header {
    padding: 20px 18px;
    color: #fff;
    mix-blend-mode: normal;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
  }

  .language-switch {
    position: fixed;
    top: 18px;
    left: 106px;
    padding: 6px 9px;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(10px);
  }

  .brand-logo {
    width: 78px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding: 112px 0 44px;
  }

  h1 {
    margin-bottom: 16px;
  }

  .hero-logo {
    width: min(78vw, 340px);
  }

  .hero-copy p:last-child {
    max-width: 300px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-lead {
    max-width: 300px;
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.65;
  }

  .kicker {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .section {
    width: calc(100% - 32px);
    padding: 70px 0;
  }

  .statement {
    text-align: left;
    justify-items: start;
  }

  .statement .lead {
    max-width: 9.4em;
    margin-bottom: 24px;
    font-size: clamp(25px, 7vw, 29px);
    line-height: 1.55;
  }

  .detail-block,
  .chef,
  .reservation {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.42;
  }

  h3 {
    font-size: 21px;
  }

  .photo-panel.wide img,
  .photo-panel.portrait img {
    aspect-ratio: 4 / 5;
  }

  .qualities {
    grid-template-columns: 1fr;
  }

  .qualities article {
    min-height: auto;
    padding: 38px 24px 40px;
  }

  .qualities span {
    margin-bottom: 32px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    aspect-ratio: 4 / 5;
  }

  .reserve-link {
    width: 100%;
    text-align: center;
  }

  .shop-info div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 18px 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 30px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
