:root {
  color-scheme: light;
  --ink: #24302b;
  --muted: #66736d;
  --paper: #fbfaf5;
  --soft: #f0eadf;
  --line: #ded5c4;
  --leaf: #426b55;
  --leaf-dark: #2d4c3c;
  --clay: #b96f4b;
  --cream: #fffdf8;
  --shadow: 0 22px 60px rgba(36, 48, 43, 0.14);
}

* {
  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.7;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 245, 0.88);
  border-bottom: 1px solid rgba(222, 213, 196, 0.72);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--leaf-dark);
}

.header-action,
.button,
.reserve-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.header-action {
  padding: 0 20px;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 42px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 20, 15, 0.76), rgba(12, 20, 15, 0.32) 48%, rgba(12, 20, 15, 0.1)),
    linear-gradient(0deg, rgba(12, 20, 15, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9ba;
}

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

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

h1 {
  display: grid;
  gap: 4px;
  max-width: 820px;
  font-size: clamp(48px, 7vw, 78px);
  white-space: normal;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  font-size: 20px;
}

.hero-content p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: clamp(15px, 2vw, 18px);
}

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

.button {
  padding: 0 24px;
}

.button.primary {
  background: var(--cream);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero-ticket {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  z-index: 2;
  width: min(280px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(251, 250, 245, 0.9);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-ticket span,
.hero-ticket small {
  display: block;
  color: var(--muted);
}

.hero-ticket strong {
  display: block;
  margin: 2px 0;
  font-size: 42px;
  line-height: 1;
}

section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.intro {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.section-heading p,
.menu-section p,
.reserve-section p {
  margin: 14px 0 0;
  color: var(--muted);
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
  background: var(--cream);
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.photo-strip img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-strip figure:hover img {
  transform: scale(1.04);
}

.photo-strip figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 14px;
}

.cats-section {
  background: linear-gradient(180deg, var(--cream), var(--soft));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.cats-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.cats-layout > img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cat-cards {
  display: grid;
  gap: 14px;
}

.cat-cards article,
.visit-cards article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
}

.cat-cards span,
.visit-cards span {
  color: var(--clay);
  font-weight: 800;
}

.cat-cards strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.cat-cards p,
.visit-cards p {
  margin: 8px 0 0;
  color: var(--muted);
}

.menu-section {
  background: var(--paper);
}

.menu-photo-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.menu-photo-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.menu-photo-card ul {
  list-style: none;
  margin: 0;
  padding: 22px;
}

.menu-photo-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.menu-photo-card li:last-child {
  border-bottom: 0;
}

.visit-section {
  background: var(--leaf-dark);
  color: #fff;
}

.visit-section .eyebrow,
.visit-section .section-heading p,
.visit-cards p {
  color: #d9c1a5;
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visit-cards article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: var(--cream);
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.reserve-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.reserve-form input,
.reserve-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.reserve-form button {
  align-self: end;
  min-width: 150px;
  border: 0;
  background: var(--leaf);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.access-section {
  background: var(--paper);
}

dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--leaf-dark);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

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

.site-footer small {
  color: #c9d0cb;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .section-grid,
  .cats-layout,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .photo-strip,
  .visit-cards {
    grid-template-columns: 1fr;
  }

  .reserve-form {
    grid-template-columns: 1fr 1fr;
  }

  .reserve-form button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 26px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(12, 20, 15, 0.2), rgba(12, 20, 15, 0.78)),
      linear-gradient(90deg, rgba(12, 20, 15, 0.56), rgba(12, 20, 15, 0.2));
  }

  h1 {
    gap: 2px;
    font-size: clamp(38px, 11.5vw, 52px);
  }

  section {
    padding: 56px 18px;
  }

  .cats-layout > img {
    min-height: 320px;
  }

  .reserve-form,
  dl div,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
