:root {
  --burgundy: #6b1f34;
  --burgundy-dark: #421523;
  --ivory: #f6f1e8;
  --paper: #fffdf8;
  --charcoal: #2b2725;
  --muted: #665f5b;
  --brass: #735827;
  --white: #fff;
  --border: rgba(66, 21, 35, 0.18);
  --shadow: 0 16px 45px rgba(43, 39, 37, 0.11);
  --serif: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.25rem;
  background: var(--white);
  color: var(--burgundy-dark);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 253, 248, 0.97);
}

.header-inner {
  display: flex;
  width: min(100% - 2rem, 78rem);
  min-height: 4.25rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.menu summary {
  display: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.menu summary::-webkit-details-marker {
  display: none;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a[aria-current="page"] {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-color: var(--brass);
  text-decoration-thickness: 2px;
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(27rem, 49vw, 36rem);
  padding: clamp(2rem, 6vw, 5rem) 1rem;
  place-items: center;
  isolation: isolate;
}

.hero.compact {
  min-height: clamp(23rem, 42vw, 31rem);
}

.hero-media,
.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero::after {
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(44, 9, 20, 0.86), rgba(66, 21, 35, 0.68));
}

.hero-title {
  width: min(100%, 64rem);
  margin: 0;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 4px solid var(--white);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 5.3rem);
  line-height: 1.12;
  text-wrap: balance;
}

.compact .hero-title {
  width: min(100%, 54rem);
  font-size: clamp(2.4rem, 5.4vw, 4.5rem);
  text-align: center;
}

.section {
  padding: clamp(4.25rem, 8vw, 7.5rem) 1rem;
}

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

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

.section-inner {
  width: min(100%, 70rem);
  margin-inline: auto;
}

.section-inner.narrow {
  width: min(100%, 48rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: var(--serif);
  line-height: 1.3;
  text-wrap: balance;
}

h2 {
  margin: 0 0 1.4rem;
  color: var(--burgundy-dark);
  font-size: clamp(1.9rem, 4vw, 3.15rem);
}

.burgundy h2 {
  color: var(--white);
}

.burgundy .eyebrow {
  color: #e1c893;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

p {
  margin-block: 0 1.15rem;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 2;
}

.center {
  text-align: center;
}

.actions {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--burgundy);
  border-radius: 0.2rem;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--burgundy);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--burgundy-dark);
}

.button.light {
  border-color: var(--white);
  color: var(--white);
}

.button:hover {
  border-color: var(--burgundy-dark);
  background: var(--burgundy-dark);
  color: var(--white);
}

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

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 0.2rem;
  background: var(--burgundy-dark);
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.75rem 1rem 0.85rem;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.info-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.info-card h3:not(:first-child) {
  margin-top: 2rem;
}

.hours {
  display: grid;
  margin: 0;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.25rem;
}

.hours dt {
  font-weight: 750;
}

.hours dd {
  margin: 0;
}

.map {
  width: 100%;
  min-height: 26rem;
  border: 0;
  background: #ded7cb;
}

.notice {
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--brass);
  background: rgba(169, 139, 85, 0.12);
}

.facts {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.75rem;
  list-style: none;
}

.facts li {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.faq-group + .faq-group {
  margin-top: 4rem;
}

.faq-list {
  margin: 0;
}

.faq-item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

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

.faq-item dt,
.faq-item dd {
  margin: 0;
}

.faq-item dd {
  margin-top: 0.65rem;
}

.faq-item h3 {
  margin: 0;
}

.site-footer {
  padding: 3.5rem 1rem;
  background: var(--charcoal);
  color: var(--white);
}

.footer-inner {
  display: grid;
  width: min(100%, 70rem);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.footer-brand {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.copyright {
  margin: 1.5rem 0 0;
  color: #d8d1ca;
  font-size: 0.8rem;
}

.error-page {
  display: grid;
  min-height: 65vh;
  padding: 5rem 1rem;
  place-items: center;
  text-align: center;
}

@media (max-width: 760px) {
  .header-inner {
    width: min(100% - 1.25rem, 78rem);
    min-height: 3.5rem;
  }

  .menu summary {
    display: inline-flex;
  }

  .menu:not([open]) .site-nav {
    display: none;
  }

  .menu[open] .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 0.6rem;
    border-bottom: 1px solid var(--border);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    justify-content: center;
  }

  .hero,
  .hero.compact {
    min-height: 25.5rem;
    padding-inline: 1.2rem;
  }

  .hero-title,
  .compact .hero-title {
    padding: 1.15rem;
    border-width: 3px;
    font-size: clamp(2.05rem, 11vw, 3.25rem);
    line-height: 1.16;
    text-align: left;
  }

  .gallery,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .map {
    min-height: 21rem;
  }
}

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