:root {
  color-scheme: light;
  --ink: #1c1a17;
  --soft-ink: #4b433b;
  --paper: #fbf7ef;
  --paper-deep: #f0e6d5;
  --accent: #b9472a;
  --accent-dark: #7f2d1e;
  --leaf: #3d6b45;
  --line: rgba(28, 26, 23, 0.14);
  --white: #fffaf1;
  --shadow: 0 18px 50px rgba(18, 14, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.8;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(22, 16, 12, 0.7);
  border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  gap: 0;
  line-height: 1.1;
  min-width: 116px;
}

.brand span {
  font-size: 0.73rem;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  letter-spacing: 0;
}

nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
}

nav a,
.header-call {
  opacity: 0.92;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 38px;
  border: 1px solid rgba(255, 250, 241, 0.48);
  border-radius: 8px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: #17120f;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 14, 10, 0.88) 0%, rgba(20, 14, 10, 0.56) 48%, rgba(20, 14, 10, 0.14) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.44) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 132px clamp(18px, 5vw, 72px) 54px;
}

.sample-label,
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sample-label {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--white);
  background: rgba(185, 71, 42, 0.82);
}

.eyebrow {
  color: var(--accent);
}

.hero .eyebrow {
  color: #f6c388;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 12em;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: clamp(3.1rem, 9vw, 6.2rem);
  font-weight: 500;
}

h2 {
  max-width: 13em;
  font-size: clamp(2rem, 4.8vw, 3.8rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.hero-copy {
  max-width: 34em;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 136px;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(127, 45, 30, 0.32);
}

.button.secondary {
  color: inherit;
  border: 1px solid currentColor;
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(18px, 5vw, 72px);
}

.section-light {
  background:
    linear-gradient(180deg, rgba(240, 230, 213, 0.68), rgba(251, 247, 239, 0)),
    var(--paper);
}

.section-ink {
  color: var(--white);
  background: var(--ink);
}

.reservation-section {
  background:
    linear-gradient(135deg, rgba(61, 107, 69, 0.16), rgba(185, 71, 42, 0.08)),
    var(--paper-deep);
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.menu-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
  box-shadow: var(--shadow);
}

.menu-card p {
  margin: 0 0 28px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.menu-card span {
  display: block;
  margin-top: 18px;
  color: var(--soft-ink);
}

.two-column,
.access-layout,
.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.two-column p,
.access-layout p,
.reservation-layout p {
  max-width: 38em;
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.reservation-form span {
  font-size: 0.9rem;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(28, 26, 23, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-teaser {
  min-height: 280px;
  align-content: center;
}

.reservation-teaser h3 {
  max-width: 12em;
}

.reservation-teaser p:not(.teaser-label) {
  margin: 0;
  color: var(--soft-ink);
}

.teaser-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--leaf);
  font-size: 0.78rem;
  font-weight: 800;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--soft-ink);
  font-size: 0.88rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.18);
}

.facts div {
  min-height: 118px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.05);
}

.facts dt {
  color: #d9b989;
  font-size: 0.82rem;
  font-weight: 700;
}

.facts dd {
  margin: 10px 0 0;
  font-size: 1.22rem;
  font-weight: 700;
}

.access-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.access-panel p {
  margin: 0;
  padding: 0 0 18px;
}

.access-panel p + p {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #120f0c;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.site-footer small {
  color: rgba(255, 250, 241, 0.72);
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 10px;
    min-height: 62px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(20, 14, 10, 0.48) 0%, rgba(20, 14, 10, 0.76) 52%, rgba(20, 14, 10, 0.9) 100%);
  }

  .hero-image {
    object-position: center top;
  }

  .hero-inner {
    padding-top: 108px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.15rem);
  }

  .menu-grid,
  .two-column,
  .access-layout,
  .reservation-layout,
  .facts {
    grid-template-columns: 1fr;
  }

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

  .menu-card {
    min-height: 184px;
  }

  .button {
    width: 100%;
  }
}
