:root {
  --color-primary: #5d4037;
  --color-primary-dark: #3e2723;
  --color-primary-light: #8d6e63;
  --color-accent: #a1887f;
  --color-text: #2e2a28;
  --color-text-muted: #5c5550;
  --color-bg: #faf6f1;
  --color-bg-alt: #f0e8df;
  --color-white: #fff;
  --font-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.97);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0.75rem 4vw;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.logo__mark {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.logo__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.logo__sub {
  display: block;
  font-size: 0.62rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  margin-left: auto;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.nav__list a:hover,
.nav__list a.is-current {
  color: var(--color-primary);
  text-decoration: none;
}

.nav__list a.is-current {
  font-weight: 700;
}

.header__reserve {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--color-white);
  background: var(--color-primary);
  border: none;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.header__reserve:hover {
  background: var(--color-primary-dark);
}

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background-color: #3e2723;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 20, 16, 0.72) 0%,
    rgba(62, 39, 35, 0.55) 50%,
    rgba(30, 20, 16, 0.65) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__label {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero__catch {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.9;
  max-width: 36em;
  opacity: 0.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.btn--primary {
  color: var(--color-white);
  background: var(--color-primary-light);
}

.btn--primary:hover {
  background: var(--color-accent);
  text-decoration: none;
}

.btn--outline {
  color: var(--color-white);
  background: transparent;
  outline: 1px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.btn--dark {
  color: var(--color-white);
  background: var(--color-primary);
}

.btn--dark:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
}

.btn--outline-dark {
  color: var(--color-primary);
  background: transparent;
  outline: 1px solid var(--color-primary-light);
}

.btn--outline-dark:hover {
  background: rgba(93, 64, 55, 0.08);
  text-decoration: none;
}

.btn--block {
  width: 100%;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary-dark);
}

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

.section-lead {
  margin: -0.5rem auto 2.5rem;
  max-width: 40em;
  text-align: center;
  color: var(--color-text-muted);
}

.section-divider {
  width: 48px;
  height: 3px;
  margin: 0 auto 2rem;
  background: var(--color-accent);
}

/* Page header (sub pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 2.5rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-color: #3e2723;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 20, 16, 0.75) 0%,
    rgba(62, 39, 35, 0.6) 100%
  );
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
}

.page-hero__lead {
  margin: 1rem auto 0;
  max-width: 36em;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.8;
}

/* Intro */
.intro {
  padding: 4rem 0;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro__accent {
  padding-left: 1.25rem;
  border-left: 4px solid var(--color-accent);
}

/* Feature list (no boxes) */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list__item h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-primary);
}

.feature-list__item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Qualifications */
.qual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.qual-list li {
  font-weight: 700;
  color: var(--color-primary);
}

.qual-list li::before {
  content: "・";
  color: var(--color-accent);
}

/* Staff */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.staff-card__photo {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}

.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.staff-card__role {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.staff-card__name {
  margin: 0 0 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

.staff-card__en {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.staff-card__years {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.staff-card__catch {
  margin: 0 0 1.25rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.staff-card__bio {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.staff-detail {
  margin: 0;
  padding: 0;
}

.staff-detail dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.staff-detail dd {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

/* Menu cards (link list, no borders) */
.menu-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-nav a {
  display: block;
  padding: 1.5rem 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--color-bg-alt);
  transition: border-color 0.2s, color 0.2s;
}

.menu-nav a:hover {
  border-color: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
}

.menu-nav h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.menu-nav p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Price blocks */
.price-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(93, 64, 55, 0.15);
}

.price-block:last-child {
  border-bottom: none;
}

.price-block h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-primary-dark);
}

.price-block__price {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-block p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.price-table th,
.price-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(93, 64, 55, 0.12);
}

.price-table th {
  font-weight: 500;
  color: var(--color-text-muted);
  width: 40%;
}

.price-table td {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.price-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Sub nav */
.sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0 0 2.5rem;
  padding: 0 0 1.5rem;
  list-style: none;
  border-bottom: 1px solid rgba(93, 64, 55, 0.15);
}

.sub-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
}

.sub-nav a:hover,
.sub-nav a.is-current {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

/* Hours table */
.hours-table {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  border-collapse: collapse;
}

.hours-table caption {
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: left;
}

.hours-table th,
.hours-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(93, 64, 55, 0.12);
}

.hours-table thead th {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hours-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--color-text-muted);
}

.hours-table td {
  font-weight: 700;
}

.hours-table__closed td {
  color: var(--color-text-muted);
  font-weight: 500;
}

.hours-note {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Access */
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.access-list {
  margin: 0;
}

.access-list > div {
  margin-bottom: 1.25rem;
}

.access-list dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.access-list dd {
  margin: 0;
  font-size: 0.95rem;
}

.access-list a {
  font-weight: 700;
  font-size: 1.1rem;
}

.access__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 4px;
}

.access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Contact form */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-group label .required {
  color: #b71c1c;
  font-size: 0.8rem;
  margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: var(--color-white);
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(93, 64, 55, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--color-primary-light);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-tel {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: var(--color-bg-alt);
}

.contact-tel__label {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-tel__number {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.contact-tel__number a {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 700;
}

.contact-tel__number a:hover {
  color: var(--color-primary);
}

/* Notice */
.notice {
  padding: 1.5rem 0;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.notice strong {
  color: var(--color-primary-dark);
}

/* Recruit */
.recruit-block {
  text-align: center;
  padding: 3rem 0;
}

.recruit-block p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.recruit-block ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.recruit-block li {
  margin-bottom: 0.35rem;
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  text-align: center;
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.cta-band p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  padding: 3rem 0 2rem;
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer a {
  color: var(--color-white);
}

.footer__inner {
  text-align: center;
}

.footer__name {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-white);
}

.footer__address,
.footer__tel {
  margin: 0 0 0.35rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.footer__nav a {
  font-size: 0.85rem;
  text-decoration: none;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__copy {
  margin: 1.5rem 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Float reserve */
.float-reserve {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(62, 39, 35, 0.35);
  transition: background 0.2s, transform 0.2s;
}

.float-reserve:hover {
  background: var(--color-primary-light);
  transform: scale(1.05);
}

/* Scroll fade */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal__panel {
  position: relative;
  width: min(420px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-white);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 4px;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
}

.modal__close:hover {
  color: var(--color-text);
}

.modal__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
}

.modal__lead {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.booking-step[hidden] {
  display: none;
}

.booking-selected {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--color-text);
}

.booking-back {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-primary);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.booking-confirm__label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.booking-confirm__value {
  margin: 0.25rem 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.booking-confirm__note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar__month {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.calendar__btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  border-radius: 4px;
}

.calendar__btn:hover {
  background: var(--color-bg-alt);
}

.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.35rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.calendar__weekdays span:first-child,
.calendar__weekdays span:last-child {
  color: var(--color-primary);
}

.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  border-radius: 4px;
}

.cal-day:hover:not(:disabled) {
  background: var(--color-bg-alt);
}

.cal-day.is-selected {
  background: var(--color-primary);
  color: var(--color-white);
}

.cal-day.is-today {
  font-weight: 700;
}

.cal-day:disabled,
.cal-day.is-empty {
  color: #ccc;
  cursor: default;
}

.cal-day.is-empty {
  visibility: hidden;
}

.cal-day.is-sunday:disabled {
  color: #c9a0a0;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.time-slot {
  padding: 0.65rem 0.25rem;
  border: none;
  background: var(--color-bg);
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.time-slot:hover {
  background: var(--color-bg-alt);
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (min-width: 901px) {
  .header__reserve {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 1rem 4vw 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header__reserve {
    display: none;
  }

  .intro__grid,
  .access__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hours-table {
    font-size: 0.82rem;
  }

  .hours-table th,
  .hours-table td {
    padding: 0.5rem 0.35rem;
  }
}
