:root {
  --ink: #32312c;
  --muted: #77746d;
  --paper: #fbfaf6;
  --white: #fffefb;
  --soft: #f0eee7;
  --line: #dedbd2;
  --green: #2e4a3f;
  --brown: #7a6a58;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.06em;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 20px clamp(22px, 5vw, 68px);
  background: linear-gradient(180deg, rgba(251, 250, 246, 0.88), rgba(251, 250, 246, 0));
}

.brand {
  display: inline-grid;
  width: fit-content;
  line-height: 0.95;
  letter-spacing: 0;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand small {
  justify-self: end;
  color: var(--green);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.global-nav,
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.nav-toggle,
.menu-button {
  display: none;
}

.reserve-link,
.primary-button,
.arrow-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(50, 49, 44, 0.42);
  padding: 0 26px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.primary-button {
  border-color: transparent;
  color: var(--white);
  background: var(--green);
}

.primary-button.dark,
button {
  color: var(--white);
  background: var(--green);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--soft);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1);
  animation: heroFadeZoom 24s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(251, 250, 246, 0.06), rgba(46, 74, 63, 0.48));
}

@keyframes heroFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  margin: 0 clamp(24px, 8vw, 140px) clamp(68px, 10vw, 120px);
  color: var(--white);
}

.hero-copy p,
.section-label {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 26px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.hero h1 {
  font-size: clamp(2.45rem, 5vw, 5.6rem);
  line-height: 1.42;
}

.hero .primary-button {
  margin-top: 38px;
  background: rgba(255, 254, 251, 0.92);
  color: var(--green);
}

.scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 48px;
  z-index: 2;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.news-strip {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(24px, 9vw, 140px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.82rem;
}

.news-strip p {
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(24px, 9vw, 140px);
  border-bottom: 1px solid var(--line);
}

.split,
.access-section,
.calendar-section,
.menu-section,
.recruit-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
}

.section-label {
  color: var(--green);
}

.section h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.65rem);
  line-height: 1.75;
}

.section-copy p:last-child,
.identity p,
.news-grid p,
.access-section p,
.recruit-section p,
.calendar-section p {
  color: #5e5a52;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 2.15;
}

figure {
  margin: 0;
}

.split img,
.access-section iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.identity {
  background: var(--soft);
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.identity-grid article {
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.identity-grid span {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.identity-grid h3,
.style-grid h3,
.news-grid h3 {
  margin: 18px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.08rem;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.arrow-link {
  min-height: auto;
  border: 0;
  padding: 0;
  gap: 18px;
}

.arrow-link::after {
  width: 46px;
  height: 1px;
  content: "";
  background: currentColor;
}

.style-grid,
.news-grid,
.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.style-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.style-grid p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.9;
}

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

.price-list {
  margin: 0;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: #4c4942;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 34px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.photo-grid img:first-child {
  grid-row: span 2;
}

.social-section {
  text-align: center;
}

.instagram-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  margin: 34px auto;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

.instagram-placeholder span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.news-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.news-grid time {
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.calendar span,
.calendar time {
  display: grid;
  min-height: 52px;
  place-items: center;
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
}

.calendar span {
  color: var(--green);
  font-size: 0.72rem;
}

.calendar .closed {
  color: var(--white);
  background: var(--green);
}

.access-section iframe {
  border: 0;
  filter: grayscale(0.4);
}

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

.reserve-section .section-label {
  color: rgba(255, 254, 251, 0.76);
}

.reserve-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.reserve-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  align-content: center;
  padding: 34px;
  border: 1px solid rgba(255, 254, 251, 0.4);
}

.reserve-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.qr-card div {
  width: 86px;
  height: 86px;
  background:
    linear-gradient(90deg, var(--white) 12px, transparent 12px 22px, var(--white) 22px 34px, transparent 34px),
    linear-gradient(var(--white) 12px, transparent 12px 22px, var(--white) 22px 34px, transparent 34px);
  background-size: 34px 34px;
}

.recruit-form {
  display: grid;
  gap: 16px;
}

.recruit-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.recruit-form input,
.recruit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox input {
  width: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(24px, 5vw, 68px);
  background: var(--white);
}

.site-footer small {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
}

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

  .global-nav {
    justify-content: end;
    gap: 18px;
  }

  .reserve-link {
    display: none;
  }

  .split,
  .access-section,
  .calendar-section,
  .menu-section,
  .recruit-section {
    grid-template-columns: 1fr;
  }

  .identity-grid,
  .style-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 22px;
  }

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

  .nav-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(50, 49, 44, 0.28);
    background: rgba(251, 250, 246, 0.78);
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    background: var(--ink);
  }

  .global-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    border: 0 solid rgba(50, 49, 44, 0.14);
    background: rgba(251, 250, 246, 0.95);
    opacity: 0;
    transition: max-height 220ms ease, opacity 180ms ease, margin-top 220ms ease;
  }

  .global-nav a {
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid rgba(50, 49, 44, 0.12);
  }

  .nav-toggle:checked ~ .global-nav {
    max-height: 360px;
    margin-top: 16px;
    border-width: 1px;
    opacity: 1;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: calc(100% - 44px);
    margin: 0 22px 58px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .scroll-cue {
    display: none;
  }

  .news-strip,
  .photo-grid,
  .reserve-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .news-strip {
    gap: 8px;
    padding: 22px;
  }

  .section {
    padding: 52px 22px;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .photo-grid img:first-child {
    grid-row: auto;
  }

  .reserve-grid {
    display: grid;
  }

  .calendar span,
  .calendar time {
    min-height: 42px;
    font-size: 0.74rem;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}
