:root {
  --ink: #1d201d;
  --muted: #687168;
  --paper: #f4f3ef;
  --paper-deep: #e7e5de;
  --white: #fbfaf7;
  --green: #5e7962;
  --green-deep: #314437;
  --green-soft: #dbe4d8;
  --concrete: #cfd3d0;
  --line: rgba(29, 32, 29, 0.14);
  --shadow: 0 28px 80px rgba(24, 30, 25, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(94, 121, 98, 0.16), transparent 28%),
    linear-gradient(180deg, #f6f5f1 0%, #efeee8 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
.brand-mark,
.desktop-nav,
.mobile-panel nav,
.hero-card strong,
.note-card strong,
.map-card strong {
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
}

h1,
h2 {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 400;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(244, 243, 239, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.scrolled::after,
.site-header.open::after {
  background: transparent;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.8rem;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong,
.brand-copy small,
.desktop-nav,
.reserve-link,
.eyebrow,
.section-label,
.hero-card span,
.feature-grid span,
.note-card span,
.map-card span,
.scroll-cue,
.site-footer small {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 0.88rem;
}

.brand-copy small {
  font-size: 0.66rem;
  opacity: 0.75;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 0.76rem;
}

.reserve-link {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.site-header.open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(35deg);
}

.site-header.open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-35deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: none;
  padding: 110px 24px 28px;
  background:
    linear-gradient(180deg, rgba(244, 243, 239, 0.98), rgba(231, 229, 222, 0.98)),
    var(--paper);
}

.mobile-panel.open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-panel nav {
  display: grid;
  gap: 18px;
  font-size: clamp(2rem, 8vw, 3rem);
}

.panel-reserve {
  display: block;
  padding: 18px;
  color: var(--white);
  text-align: center;
  background: var(--green-deep);
}

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

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(28, 31, 28, 0.82), rgba(28, 31, 28, 0.28) 54%, rgba(28, 31, 28, 0.72)),
    linear-gradient(0deg, rgba(94, 121, 98, 0.22), rgba(94, 121, 98, 0.22));
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  height: 100%;
}

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

.hero-copy,
.hero-card,
.scroll-cue {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(760px, 100%);
  padding: 0 clamp(22px, 6vw, 88px) clamp(72px, 11vh, 132px);
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #c7d8c8;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  line-height: 1.95;
  color: rgba(251, 250, 247, 0.88);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 154px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
}

.button.line {
  color: var(--green-deep);
  border-color: var(--green-deep);
  background: var(--green-soft);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 60px);
  bottom: 86px;
  width: min(340px, calc(100% - 40px));
  padding: 26px;
  color: var(--ink);
  background: rgba(244, 243, 239, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card span,
.note-card span,
.map-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-card strong,
.note-card strong,
.map-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.28;
}

.hero-card p,
.note-card p,
.map-card p {
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--muted);
}

.scroll-cue {
  position: absolute;
  left: clamp(24px, 5vw, 48px);
  bottom: 26px;
  font-size: 0.72rem;
  writing-mode: vertical-rl;
  opacity: 0.72;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 74px;
  margin: 12px auto 0;
  content: "";
  background: currentColor;
}

main section:not(.hero) {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 6vw, 72px);
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    var(--paper);
}

.intro,
.access {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
}

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

.intro-text p,
.menu-copy p,
.access-copy p {
  max-width: 720px;
  line-height: 2;
  color: var(--muted);
}

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

.section-head h2 {
  max-width: 840px;
  margin-bottom: 0;
}

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

.feature-grid article,
.note-card,
.map-card,
.gallery-card,
.reserve {
  background: rgba(251, 250, 247, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 30px;
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
}

.feature-grid p {
  margin-bottom: 0;
  line-height: 1.9;
  color: var(--muted);
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(207, 211, 208, 0.28), rgba(255, 255, 255, 0)),
    var(--paper-deep);
}

.price-list {
  margin: 34px 0 0;
}

.price-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(29, 32, 29, 0.12);
}

.price-list dt {
  font-weight: 700;
}

.price-list dd {
  margin: 0;
  color: var(--green-deep);
  font-weight: 700;
}

.note-card,
.map-card {
  padding: 32px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  min-height: 260px;
}

.gallery-card img {
  height: 100%;
  object-fit: cover;
}

.gallery-card.large {
  grid-row: span 2;
  min-height: 620px;
}

.quote-card,
.info-card {
  display: grid;
  place-items: center;
  padding: 34px;
}

.quote-card {
  background:
    radial-gradient(circle at top right, rgba(94, 121, 98, 0.16), transparent 36%),
    rgba(49, 68, 55, 0.96);
  color: var(--white);
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  line-height: 1.45;
}

.info-card figcaption {
  width: 100%;
}

.info-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 400;
}

.info-card p {
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--muted);
}

.access-copy h2 {
  margin-bottom: 24px;
}

.reserve {
  margin: 0 clamp(20px, 6vw, 72px) clamp(72px, 10vw, 120px);
  padding: clamp(36px, 6vw, 56px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(207, 211, 208, 0.32), rgba(251, 250, 247, 0.96)),
    var(--white);
}

.reserve h2 {
  margin: 0 auto 24px;
  max-width: 860px;
}

.reserve-actions {
  justify-content: center;
}

.site-footer {
  padding: 0 20px 40px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin-bottom: 8px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .reserve-link {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
  }

  .hero-copy {
    padding-bottom: 180px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 22px 24px;
    width: auto;
  }

  .intro,
  .access,
  .menu-section,
  .gallery-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large {
    grid-row: auto;
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.6rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero::after {
    background-size: 92px 92px;
  }

  .hero-copy p:not(.eyebrow) {
    line-height: 1.8;
  }

  .section-head {
    display: block;
  }

  .quote-card blockquote {
    font-size: 1.7rem;
  }

  .scroll-cue {
    display: none;
  }
}
