:root {
  --base: #0b0a08;
  --panel: #181511;
  --panel-soft: #211d18;
  --cream: #e8d9bc;
  --sub: #b7a58a;
  --dim: #7d705e;
  --gold: #b6844e;
  --line: rgba(232, 217, 188, 0.16);
  --line-strong: rgba(232, 217, 188, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--base);
  color: var(--cream);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  line-height: 1.85;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0b0a08;
  background-size: 4px 4px;
  opacity: 0.32;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 42px 0;
}

.brand {
  display: grid;
  gap: 2px;
  color: #f0dfc0;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.brand span {
  font-size: 28px;
  line-height: 1;
}

.brand small {
  padding-left: 6px;
  color: #d4c0a1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-align: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 8px;
  color: #d6c4a5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 0 0 12px;
}

.nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 24px;
}

.nav .reservation {
  margin-left: 8px;
  border: 1px solid rgba(232, 217, 188, 0.42);
  padding: 13px 21px;
}

.nav .reservation::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #090806;
}

.hero-photo {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: brightness(0.78) contrast(1.08) saturate(0.9);
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 5, 0.96) 0%, rgba(6, 6, 5, 0.86) 29%, rgba(6, 6, 5, 0.2) 58%, rgba(6, 6, 5, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 6, 5, 0.5), transparent 44%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 700px;
  padding: 190px 0 0 156px;
}

.hero h1 {
  color: #f0dfc0;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p {
  margin-top: 24px;
  color: #c9b89a;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 226px;
  height: 48px;
  margin-top: 36px;
  border: 1px solid rgba(232, 217, 188, 0.5);
  padding: 0 20px 0 26px;
  color: #d8c5a5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.line-button i,
.text-link i {
  position: relative;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.line-button i::after,
.text-link i::after {
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.scroll-mark {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 26px;
  height: 120px;
  color: #cbb895;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-mark::after {
  display: block;
  width: 1px;
  height: 54px;
  margin: 13px auto 0;
  content: "";
  background: var(--gold);
}

.split-row {
  display: grid;
  grid-template-columns: 47.6% 52.4%;
  min-height: 610px;
  border-bottom: 1px solid var(--line);
}

.about-panel,
.menu-panel {
  position: relative;
  min-width: 0;
  padding: 44px 56px;
}

.about-panel {
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 58% 38%, rgba(232, 217, 188, 0.04), transparent 16rem),
    #201d18;
}

.about-panel::before,
.menu-panel::before,
.space-section::before,
.access-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.45px, transparent 0.45px);
  background-size: 3px 3px;
  opacity: 0.12;
}

.about-panel h2,
.menu-panel h2,
.section-title h2 {
  position: relative;
  color: #efdcb9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
}

.about-panel h2::after,
.menu-panel h2::after,
.section-title h2::after {
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 18px;
  content: "";
  background: var(--gold);
}

.about-panel .lead {
  margin-top: 55px;
  color: #dcc9a9;
  font-size: 18px;
  letter-spacing: 0.16em;
}

.about-panel p:not(.lead):not(.signature) {
  margin-top: 30px;
  color: #c3b293;
  font-size: 14px;
  letter-spacing: 0.11em;
}

.signature {
  position: absolute;
  left: 56px;
  bottom: 82px;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transform: rotate(-4deg);
}

.vase {
  position: absolute;
  right: 68px;
  bottom: 64px;
  width: 118px;
  height: auto;
  fill: none;
  stroke: rgba(199, 174, 132, 0.68);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.menu-panel {
  background:
    radial-gradient(circle at 76% 18%, rgba(232, 217, 188, 0.04), transparent 19rem),
    #11100d;
}

.menu-head {
  display: grid;
  grid-template-columns: 146px 1fr;
  align-items: start;
}

.tabs {
  display: flex;
  gap: 42px;
  padding-top: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tabs button {
  position: relative;
  border: 0;
  padding-bottom: 9px;
  background: transparent;
  color: #807461;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.tabs button:hover,
.tabs button:focus-visible,
.tabs .active {
  color: #d9c6a6;
}

.tabs .active::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.menu-list {
  display: none;
  gap: 8px;
  margin-top: 18px;
}

.menu-list.active {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 92px;
  gap: 30px;
  align-items: center;
  min-height: 56px;
}

.menu-item.separated {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.menu-item img {
  width: 118px;
  height: 56px;
  border: 1px solid rgba(232, 217, 188, 0.25);
  object-fit: cover;
  filter: brightness(0.82) saturate(0.86);
}

.menu-item h3 {
  color: #ead6b5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.menu-item p {
  margin-top: 2px;
  color: #9f9179;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.menu-item strong {
  color: #dbc8a6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: right;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #dbc8a6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-panel .text-link {
  position: absolute;
  right: 56px;
  bottom: 29px;
}

.space-section,
.access-section {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
  padding: 42px 56px 48px;
  background: #0d0c0a;
}

.space-body,
.access-body {
  min-width: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery img {
  height: 195px;
  border: 1px solid rgba(232, 217, 188, 0.22);
  object-fit: cover;
  filter: brightness(0.78) saturate(0.82) contrast(1.04);
}

.space-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.space-bottom p {
  color: #c2b091;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.access-section {
  grid-template-columns: 168px minmax(0, 1fr);
  padding-bottom: 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 42%),
    #0f0e0c;
}

.access-body {
  display: grid;
  grid-template-columns: minmax(230px, 0.85fr) 1px minmax(230px, 0.9fr) minmax(420px, 1.35fr);
  gap: 50px;
  align-items: center;
}

.access-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 28px;
  align-items: start;
}

.access-card h3 {
  margin-bottom: 18px;
  color: #d4c1a1;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.access-card p {
  color: #dac7a5;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.access-card span {
  display: inline-block;
  min-width: 54px;
  color: #f0dfc0;
}

.access-card small {
  color: #8e806c;
  font-size: 11px;
}

.closed {
  margin-top: 32px !important;
}

.access-line {
  width: 1px;
  height: 124px;
  background: var(--line-strong);
}

.access-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
}

.clock {
  border-radius: 50%;
}

.clock::before,
.clock::after {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 2px;
  height: 9px;
  content: "";
  background: var(--gold);
  transform-origin: bottom center;
}

.clock::after {
  height: 8px;
  transform: rotate(95deg);
}

.pin-icon {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.pin-icon::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.map-card {
  position: relative;
  height: 215px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 217, 188, 0.04), transparent 45%),
    #1b1915;
  filter: saturate(0.8);
}

.map-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(232, 217, 188, 0.05) 49%, rgba(232, 217, 188, 0.05) 51%, transparent 52%),
    linear-gradient(110deg, transparent 48%, rgba(232, 217, 188, 0.05) 49%, rgba(232, 217, 188, 0.05) 51%, transparent 52%);
  background-size: 120px 80px;
  opacity: 0.55;
}

.road {
  position: absolute;
  height: 3px;
  background: rgba(166, 153, 128, 0.32);
  transform-origin: left center;
}

.r1 {
  width: 125%;
  left: -6%;
  top: 35%;
  transform: rotate(-16deg);
}

.r2 {
  width: 92%;
  left: 6%;
  top: 74%;
  transform: rotate(18deg);
}

.r3 {
  width: 70%;
  left: 12%;
  top: 12%;
  transform: rotate(58deg);
}

.r4 {
  width: 82%;
  left: 66%;
  top: 6%;
  transform: rotate(102deg);
}

.r5 {
  width: 65%;
  left: 36%;
  top: 54%;
  transform: rotate(-42deg);
}

.map-pin {
  position: absolute;
  left: 47%;
  top: 42%;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: #d5b076;
  transform: rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #211a12;
}

.map-card strong {
  position: absolute;
  z-index: 2;
  left: calc(47% + 30px);
  top: 41%;
  color: #ead8b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 24px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .hero-copy {
    width: min(700px, calc(100% - 48px));
    padding: 170px 0 0 64px;
  }

  .split-row,
  .space-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .about-panel,
  .menu-panel,
  .space-section,
  .access-section {
    padding: 42px 28px;
  }

  .menu-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .access-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .access-line {
    display: none;
  }
}

@media (max-width: 720px) {
  .brand span {
    font-size: 22px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-photo {
    object-position: 68% center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding: 160px 24px 0;
  }

  .hero h1 {
    font-size: clamp(28px, 8.6vw, 34px);
    letter-spacing: 0.04em;
  }

  .hero p {
    font-size: 13px;
  }

  .scroll-mark {
    display: none;
  }

  .about-panel {
    overflow: hidden;
    padding-bottom: 34px;
  }

  .about-panel .lead {
    margin-top: 44px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.1em;
  }

  .about-panel p:not(.lead):not(.signature) {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }

  .signature {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 1;
    display: block;
    margin-top: 24px;
    font-size: 36px;
  }

  .vase {
    right: 22px;
    bottom: 22px;
    z-index: 0;
    width: 78px;
    opacity: 0.48;
  }

  .menu-item {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .menu-item img {
    width: 96px;
    height: 58px;
  }

  .menu-item strong {
    grid-column: 2;
    text-align: left;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img {
    height: 140px;
  }

  .space-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-card {
    height: 190px;
  }
}
