@font-face {
  font-family: "Delafield";
  src: url("fonts/Mrs+Saint+Delafield.woff2") format("woff2");
  font-display: block;
}

@font-face {
  font-family: "Cormorant";
  src: url("fonts/cormorant_400.woff2") format("woff2");
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --paper: #fbfaf7;
  --ink: #262019;
  --muted: #7a6e5f;
  --brass: #a9885b;
  --dark: #171310;
  --cream: #ede6da;
  --line: rgba(122, 110, 95, 0.22);
  --serif-jp: "Hiragino Mincho ProN", "Yu Mincho", serif;
  --serif-en: "Cormorant", Georgia, serif;
  --script: "Delafield", cursive;
  --frame-w: 14px;
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2.1;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.frame {
  position: fixed;
  z-index: 100;
  inset: 0;
  border: var(--frame-w) solid var(--paper);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: var(--frame-w);
  right: var(--frame-w);
  left: var(--frame-w);
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 3vw, 44px);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.solid,
.site-header.menu-open {
  background: rgba(251, 250, 247, 0.97);
  box-shadow: 0 1px 0 rgba(38, 32, 25, 0.08);
  backdrop-filter: blur(8px);
}

.brand-sig {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  color: #fff;
  font-family: var(--script);
  font-size: 36px;
  line-height: 1;
  text-decoration: none;
  transition: color 0.4s ease;
}

.site-header.solid .brand-sig,
.site-header.menu-open .brand-sig {
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 28px);
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease, opacity 0.2s ease;
}

.site-nav a:not(.reserve)::after {
  position: absolute;
  right: 0.18em;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 0.72;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header.solid .site-nav a,
.site-header.menu-open .site-nav a {
  color: var(--ink);
}

.site-nav .reserve {
  border: 1px solid currentColor;
  padding: 9px 18px;
}

.menu-button {
  position: relative;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-button::before {
  top: 14px;
}

.menu-button span {
  top: 21px;
}

.menu-button::after {
  top: 28px;
}

.site-header.solid .menu-button,
.site-header.menu-open .menu-button {
  color: var(--ink);
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero {
  min-height: 560px;
  height: 100svh;
}

.page-hero {
  min-height: 470px;
  height: 62svh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.home-hero .hero-bg {
  --hero-image: url("img/lapirata_main.jpg");
}

.auberge-hero .hero-bg {
  --hero-image: url("img/slide12.jpg");
}

.cuisine-hero .hero-bg {
  --hero-image: url("img/dish-re01.jpg");
}

.dog-hero .hero-bg {
  --hero-image: url("img/slide10.jpg");
}

.rooms-hero .hero-bg {
  --hero-image: url("img/slide11.jpg");
}

.access-hero .hero-bg {
  --hero-image: url("img/slide15.jpg");
}

.page-hero .hero-bg {
  background-position: var(--hero-position, center);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- ふたつの入口（トップページ） ---- */
.gate {
  position: relative;
  display: flex;
  height: 100svh;
  min-height: 600px;
}

.gate-panel {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 50%;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: flex-basis 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gate-panel + .gate-panel {
  border-left: 1px solid rgba(251, 250, 247, 0.55);
}

.gate-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gate-stay .gate-photo {
  background-image: url("img/slide12.jpg");
}

.gate-food .gate-photo {
  background-image: url("img/slide1.jpg");
}

.gate-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 6, 0.5) 0%, rgba(15, 10, 6, 0.22) 38%, rgba(15, 10, 6, 0.8) 100%);
  content: "";
  transition: opacity 0.6s ease;
}

.gate-body {
  position: relative;
  z-index: 2;
  max-width: 26em;
  padding: 0 clamp(20px, 3vw, 40px) clamp(46px, 7vh, 78px);
  text-align: center;
}

.gate-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 15px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.gate-en {
  display: block;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.42em;
  opacity: 0.85;
  text-indent: 0.42em;
  text-transform: uppercase;
}

.gate-jp {
  margin: 10px 0 12px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-indent: 0.22em;
}

.gate-lead {
  margin: 0 0 22px;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  line-height: 2;
  opacity: 0.92;
}

.gate-cue {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

.gate-cue::after {
  content: " →";
}

.gate-brand {
  position: absolute;
  z-index: 3;
  top: clamp(104px, 19vh, 190px);
  left: 50%;
  width: 100%;
  color: #fff;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
}

.gate-sig {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 4px 32px rgba(10, 6, 3, 0.45);
}

.gate-sub {
  margin: 6px 0 0;
  font-family: var(--serif-en);
  font-size: clamp(9px, 1.2vw, 13px);
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
}

.gate-scroll {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.36em;
  pointer-events: none;
  text-indent: 0.36em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@media (hover: hover) and (min-width: 861px) {
  .gate:hover .gate-panel {
    flex-basis: 44%;
  }

  .gate .gate-panel:hover {
    flex-basis: 56%;
  }

  .gate-panel:hover .gate-media {
    transform: scale(1.1);
  }

  .gate-panel:hover::after {
    opacity: 0.72;
  }
}

@media (max-width: 860px) {
  .gate {
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .gate-panel {
    height: 50svh;
    min-height: 300px;
    flex: none;
  }

  .gate-panel + .gate-panel {
    border-top: 1px solid rgba(251, 250, 247, 0.55);
    border-left: 0;
  }

  /* 画面が狭いとロゴが1枚目の扉の文章に重なるため、ヘッダーのロゴに役目を任せる */
  .gate-brand {
    display: none;
  }

  .gate-jp {
    font-size: 26px;
  }

  .gate-scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gate-panel,
  .gate-media {
    transition: none;
  }
}

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

.hero::after,
.page-hero::after,
.photo-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 10, 6, 0.44), rgba(15, 10, 6, 0.2) 42%, rgba(15, 10, 6, 0.52));
  content: "";
}

/* 中の飾り文字が長くても、この箱は画面幅を超えない（本文の見切れ防止） */
.hero-inner,
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: min(900px, 100%);
  padding: 72px 24px 30px;
  color: #fff;
}

.page-script {
  max-width: 100%;
}

.hero-sig {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(76px, 14vw, 168px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 4px 32px rgba(10, 6, 3, 0.35);
}

.hero-sub,
.caps-heading,
.eyebrow {
  font-family: var(--serif-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  text-transform: uppercase;
}

.hero-sub {
  margin: 10px 0 0;
  letter-spacing: 0.6em;
  text-indent: 0.6em;
}

.hero-rule {
  width: 1px;
  height: 56px;
  margin: 34px auto 30px;
  background: rgba(255, 255, 255, 0.7);
}

.hero-copy {
  margin: 0;
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.24em;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 50%;
  color: #fff;
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 32px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}

.page-script {
  display: block;
  margin-bottom: 10px;
  font-family: var(--script);
  font-size: clamp(70px, 11vw, 126px);
  font-weight: 400;
  line-height: 0.8;
  text-shadow: 0 4px 28px rgba(10, 6, 3, 0.4);
}

.page-hero .eyebrow {
  margin: 20px 0 10px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(21px, 3.4vw, 34px);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.75;
}

.page-lead {
  max-width: 38em;
  margin: 0 auto;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-decoration: none;
  text-indent: 0.24em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-cta:hover {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.auberge-hero {
  min-height: 540px;
}

.reserve-band[id] {
  scroll-margin-top: 88px;
}

.script-word {
  color: var(--brass);
  font-family: var(--script);
  font-size: clamp(48px, 7vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.caps-heading,
.eyebrow {
  color: var(--muted);
}

.jp-heading,
.section-heading {
  margin: 18px auto 22px;
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.9;
  text-wrap: balance;
}

.measure {
  max-width: 36em;
  margin-right: auto;
  margin-left: auto;
}

.center {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.intro {
  padding: 108px 24px 96px;
  text-align: center;
}

.intro p {
  margin-top: 0;
  margin-bottom: 0;
}

.chapter-photo,
.photo-band {
  position: relative;
  display: flex;
  min-height: 380px;
  height: 62vh;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
}

.chapter-photo .script-word,
.photo-band .script-word {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: clamp(68px, 11vw, 122px);
  text-shadow: 0 4px 28px rgba(10, 6, 3, 0.4);
}

.home-cuisine-photo {
  background-image: url("img/slide1.jpg");
}

.home-auberge-photo {
  background-image: url("img/slide12.jpg");
}

.chapter-card,
.page-card {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: -84px auto 0;
  padding: 58px clamp(24px, 6vw, 74px) 64px;
  background: var(--paper);
  text-align: center;
}

.page-card {
  max-width: 880px;
  text-align: left;
}

.page-card .section-head {
  text-align: center;
}

.chapter-card p,
.page-card p {
  margin-top: 0;
}

.chapter-gap {
  height: 110px;
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  border-bottom: 1px solid var(--brass);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-decoration: none;
}

.menu-list {
  max-width: 32em;
  margin: 36px auto 8px;
  text-align: left;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
}

.menu-row .name {
  letter-spacing: 0.08em;
}

.menu-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(122, 110, 95, 0.55);
  transform: translateY(-4px);
}

.menu-row .price,
.price {
  color: var(--brass);
  font-family: var(--serif-en);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.menu-note,
.fine-print {
  color: var(--muted);
  font-size: 12.5px;
}

.gallery {
  padding: 0 clamp(16px, 4vw, 48px) 110px;
  text-align: center;
}

.gallery .script-word {
  display: block;
  margin: 4px 0 42px;
}

.gallery-grid {
  display: grid;
  max-width: 1080px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery-grid.home-gallery {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9);
  transition: opacity 0.3s ease;
}

.gallery-grid img:hover {
  opacity: 0.84;
}

.notes-section {
  padding: 0 24px 110px;
  text-align: center;
}

.news-list {
  max-width: 760px;
  margin: 40px auto 0;
  border-top: 1px solid var(--line);
  text-align: left;
}

.news-list a {
  display: grid;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  grid-template-columns: 100px 1fr;
  gap: 20px;
}

.news-list time {
  color: var(--brass);
  font-family: var(--serif-en);
  letter-spacing: 0.12em;
}

.section-block {
  padding: 96px 24px;
}

.section-block.compact-top {
  padding-top: 40px;
}

.section-block.alt {
  background: #f3f0ea;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
}

.section-head p {
  max-width: 36em;
}

.section-head.center p {
  margin-right: auto;
  margin-left: auto;
}

.content-list {
  max-width: 48em;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
}

.content-list li::before {
  position: absolute;
  top: 23px;
  left: 5px;
  width: 8px;
  height: 1px;
  background: var(--brass);
  content: "";
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border: 1px solid rgba(169, 136, 91, 0.45);
  content: "";
}

.image-frame img {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature-grid,
.menu-board {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.menu-panel {
  min-width: 0;
  padding: 38px 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.feature-card .number {
  color: var(--brass);
  font-family: var(--serif-en);
  font-size: 26px;
  letter-spacing: 0.12em;
}

.feature-card h3,
.menu-panel h3 {
  margin: 18px 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.7;
}

.feature-card p,
.menu-panel p {
  margin-bottom: 0;
  font-size: 13.5px;
}

.menu-panel {
  text-align: center;
}

.menu-panel.featured {
  border-color: var(--brass);
}

.menu-panel .price {
  margin: 12px 0;
  font-size: 25px;
}

.menu-details {
  display: grid;
  max-width: 950px;
  margin: 40px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-panel {
  padding: 34px;
  border-top: 1px solid var(--brass);
  background: var(--paper);
}

.detail-panel h3 {
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.detail-panel p {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  max-width: 760px;
  margin: 48px auto 0;
}

.timeline::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 10px;
  width: 1px;
  background: rgba(169, 136, 91, 0.55);
  content: "";
}

.timeline-item {
  position: relative;
  padding: 0 0 30px 48px;
}

.timeline-item::before {
  position: absolute;
  top: 13px;
  left: 5px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 1px var(--brass);
  content: "";
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
  letter-spacing: 0.1em;
}

.timeline-item p {
  margin: 0;
}

.video-frame {
  position: relative;
  max-width: 880px;
  margin: 44px auto 0;
}

.video-frame::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border: 1px solid rgba(169, 136, 91, 0.45);
  content: "";
}

.video-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--dark);
}

/* ---- お客様の声 ---- */
/* auto-fit なので、幅が足りなくなれば自動で段数が減る（メディアクエリ不要） */
.voice-grid {
  display: grid;
  max-width: 1040px;
  margin: 44px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 16px;
}

.voice-grid.pair {
  max-width: 760px;
}

.voice {
  position: relative;
  min-width: 0;
  padding: 44px 26px 26px;
  border-top: 1px solid var(--brass);
  background: var(--paper);
}

.voice::before {
  position: absolute;
  top: 12px;
  left: 22px;
  color: var(--brass);
  content: "“";
  font-family: var(--serif-en);
  font-size: 58px;
  line-height: 1;
  opacity: 0.5;
}

.voice blockquote {
  margin: 0 0 16px;
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 2.05;
}

.voice cite {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.06em;
}

.note-box {
  max-width: 34em;
  margin: 26px auto 0;
  padding: 18px 22px;
  border-left: 2px solid var(--brass);
  background: var(--paper);
  font-size: 13px;
  line-height: 2;
  text-align: left;
}

.note-box strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
}

.note-box b {
  border-bottom: 1px solid var(--brass);
  font-weight: 600;
}

.voice-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
}

/* ---- 宿泊プラン（名前＋価格は同じ行、説明は次の行へ折り返す） ---- */
.plan-list {
  max-width: 34em;
  margin: 36px auto 0;
}

.plan-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 4px 14px;
  text-align: left;
}

.plan-row .name {
  min-width: 0;
  flex: 1 1 auto;
  letter-spacing: 0.08em;
}

.plan-row .price {
  color: var(--brass);
  font-family: var(--serif-en);
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plan-row .detail {
  flex: 1 1 100%;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.85;
}

.center-block {
  text-align: center;
}

.access-panel {
  padding: 48px;
  border: 1px solid var(--line);
  background: #f3f0ea;
  text-align: center;
}

.access-panel .script-word {
  display: block;
}

.access-address {
  margin: 20px 0 0;
  font-style: normal;
}

.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 22px 52px 22px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: left;
  cursor: pointer;
}

.faq-question::before,
.faq-question::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 16px;
  height: 1px;
  background: var(--brass);
  content: "";
  transition: transform 0.25s ease;
}

.faq-question::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
  padding: 0 48px 26px 4px;
}

.reserve-band {
  padding: 96px 24px 100px;
  background: var(--dark);
  color: var(--cream);
  text-align: center;
}

.reserve-band .script-word {
  color: var(--brass);
  font-size: clamp(50px, 8vw, 74px);
}

.reserve-band h2 {
  margin: 20px 0 14px;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.8;
}

.reserve-band p {
  margin: 0 0 38px;
  color: rgba(237, 230, 218, 0.75);
  font-size: 13.5px;
  letter-spacing: 0.08em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.cta {
  display: inline-block;
  min-width: 220px;
  padding: 15px 30px;
  font-size: 13px;
  letter-spacing: 0.23em;
  text-decoration: none;
}

.cta.solid {
  background: var(--brass);
  color: #1c1610;
}

.cta.ghost {
  border: 1px solid rgba(237, 230, 218, 0.5);
  color: var(--cream);
}

.site-footer {
  padding: 0 24px 70px;
  background: var(--dark);
  color: rgba(237, 230, 218, 0.72);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  text-align: center;
}

.site-footer .rule {
  width: 42px;
  height: 1px;
  margin: 0 auto 42px;
  background: rgba(169, 136, 91, 0.6);
}

.footer-sig {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: var(--script);
  font-size: 46px;
  line-height: 1;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 0;
  gap: 10px 24px;
}

.footer-nav a {
  color: rgba(237, 230, 218, 0.72);
  text-decoration: none;
}

.site-footer .en {
  margin-top: 30px;
  color: rgba(169, 136, 91, 0.9);
  font-family: var(--serif-en);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: kenburns 18s ease-out forwards;
  }

  @keyframes kenburns {
    from {
      transform: scale(1.1);
    }
    to {
      transform: scale(1.02);
    }
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 70px;
    padding-right: 18px;
    padding-left: 22px;
  }

  .brand-sig {
    font-size: 33px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: calc(var(--frame-w) + 69px);
    right: var(--frame-w);
    bottom: var(--frame-w);
    left: var(--frame-w);
    display: flex;
    overflow-y: auto;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    padding: 34px 24px;
    background: rgba(251, 250, 247, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a,
  .site-header .site-nav a {
    color: var(--ink);
    font-size: 14px;
    letter-spacing: 0.2em;
  }

  .site-nav .reserve {
    margin-top: 10px;
    padding: 12px 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 500px;
    height: 68svh;
  }

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

  .feature-grid,
  .menu-board {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .menu-panel {
    padding: 30px 26px;
  }

  .menu-details {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .image-frame {
    max-width: 620px;
    margin: 0 auto;
  }

  .split .image-frame:first-child {
    order: 2;
  }
}

@media (max-width: 640px) {
  :root {
    --frame-w: 8px;
  }

  body {
    font-size: 14px;
    line-height: 2;
  }

  .hero {
    min-height: 600px;
  }

  .hero-inner {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-sig {
    font-size: clamp(74px, 25vw, 110px);
  }

  .hero-sub {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
  }

  .hero-copy {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .scroll-cue {
    bottom: 24px;
  }

  .page-script {
    font-size: clamp(38px, 13vw, 76px);
  }

  .eyebrow,
  .caps-heading {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-indent: 0.22em;
  }

  .page-hero h1 {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .page-lead {
    font-size: 13px;
  }

  .intro {
    padding-top: 82px;
    padding-bottom: 74px;
  }

  .chapter-photo,
  .photo-band {
    min-height: 340px;
    height: 54vh;
  }

  .chapter-card,
  .page-card {
    width: calc(100% - 40px);
    margin-top: -58px;
    padding: 42px 22px 48px;
  }

  .chapter-gap {
    height: 76px;
  }

  .menu-row {
    gap: 8px;
  }

  .menu-row .name {
    letter-spacing: 0;
  }

  .gallery {
    padding-bottom: 78px;
  }

  .gallery-grid,
  .gallery-grid.home-gallery {
    gap: 6px;
    grid-template-columns: repeat(2, 1fr);
  }

  .notes-section {
    padding-bottom: 82px;
  }

  .news-list a {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }

  .section-block {
    padding-right: 22px;
    padding-left: 22px;
  }

  .image-frame::before,
  .video-frame::before {
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
  }

  .image-frame img {
    min-height: 240px;
  }

  .access-panel {
    padding: 36px 20px;
  }

  .reserve-band {
    padding-top: 80px;
    padding-bottom: 84px;
  }

  .cta {
    width: min(100%, 300px);
    min-width: 0;
  }

  .footer-nav {
    gap: 8px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
