﻿:root {
  --ink: #24211f;
  --muted: #c9c0b4;
  --paper: #f7f2e8;
  --paper-strong: #fffaf0;
  --night: #25231f;
  --night-soft: #302d28;
  --maple: #e2421f;
  --maple-dark: #b93018;
  --dam: #8f9697;
  --dam-light: #d8dcda;
  --dam-dark: #4f5758;
  --wood: #4a3025;
  --line: rgba(79, 87, 88, .18);
  --white: #fff;
  --shadow: 0 22px 55px rgba(36, 33, 31, .14);
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  position: relative;
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 0, rgba(226, 66, 31, .12), transparent 34rem),
    linear-gradient(180deg, #2f2c27 0, var(--night) 46rem, #211f1c 100%);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, .96);
  box-shadow: 0 12px 34px rgba(36, 33, 31, .08);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
}

.language-switch span {
  font-weight: 900;
}

.language-switch select {
  min-width: 112px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--paper-strong);
}

.site-nav a {
  position: relative;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.site-nav a:not(.nav-button):hover {
  color: var(--maple);
  transform: translateY(-1px);
}

.site-nav a:not(.nav-button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--maple);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.nav-button,
.button.primary {
  color: var(--white);
  background: var(--maple);
  box-shadow: 0 12px 22px rgba(226, 66, 31, .22);
}

.button.ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
}

.button.disabled {
  cursor: default;
  opacity: .78;
}

.nav-button:hover,
.button:not(.disabled):hover,
.calendar-controls button:hover,
.admin-footer-link:hover,
.back-to-top:hover {
  transform: translateY(-2px);
}

.nav-button:hover,
.button.primary:hover {
  background: var(--maple-dark);
  box-shadow: 0 18px 30px rgba(226, 66, 31, .3);
}

.button.ghost:hover {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.button:not(.disabled):active,
.nav-button:active,
.calendar-controls button:active,
.back-to-top:active {
  transform: translateY(0);
}

.momiji-layer {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.momiji-layer span {
  position: absolute;
  top: calc(var(--start-y) * 1%);
  left: calc(var(--x) * 1%);
  color: rgba(158, 24, 15, .58);
  font-size: var(--size);
  filter: drop-shadow(0 8px 10px rgba(36, 33, 31, .2));
  animation: momiji-fall var(--duration) linear infinite;
  animation-delay: var(--delay);
  will-change: transform;
}

.momiji-layer span::before {
  content: "🍁";
}

.momiji-layer span:nth-child(1) { --x: 4; --start-y: -12; --size: 24px; --duration: 14s; --delay: -3s; --drift: 140px; }
.momiji-layer span:nth-child(2) { --x: 13; --start-y: -18; --size: 32px; --duration: 17s; --delay: -11s; --drift: 180px; }
.momiji-layer span:nth-child(3) { --x: 23; --start-y: -8; --size: 21px; --duration: 15s; --delay: -6s; --drift: 120px; }
.momiji-layer span:nth-child(4) { --x: 34; --start-y: -20; --size: 36px; --duration: 19s; --delay: -18s; --drift: 210px; }
.momiji-layer span:nth-child(5) { --x: 46; --start-y: -10; --size: 25px; --duration: 16s; --delay: -9s; --drift: 155px; }
.momiji-layer span:nth-child(6) { --x: 57; --start-y: -16; --size: 31px; --duration: 18s; --delay: -15s; --drift: 190px; }
.momiji-layer span:nth-child(7) { --x: 68; --start-y: -11; --size: 23px; --duration: 15s; --delay: -5s; --drift: 130px; }
.momiji-layer span:nth-child(8) { --x: 80; --start-y: -22; --size: 35px; --duration: 20s; --delay: -20s; --drift: 230px; }
.momiji-layer span:nth-child(9) { --x: 91; --start-y: -9; --size: 20px; --duration: 16s; --delay: -13s; --drift: 150px; }
.momiji-layer span:nth-child(10) { --x: 17; --start-y: -24; --size: 29px; --duration: 19s; --delay: -22s; --drift: 205px; }
.momiji-layer span:nth-child(11) { --x: 51; --start-y: -7; --size: 19px; --duration: 14s; --delay: -1s; --drift: 115px; }
.momiji-layer span:nth-child(12) { --x: 72; --start-y: -19; --size: 33px; --duration: 17s; --delay: -8s; --drift: 175px; }
.momiji-layer span:nth-child(13) { --x: 2; --start-y: 18; --size: 30px; --duration: 18s; --delay: -12s; --drift: 220px; }
.momiji-layer span:nth-child(14) { --x: 29; --start-y: 12; --size: 22px; --duration: 15s; --delay: -7s; --drift: 145px; }
.momiji-layer span:nth-child(15) { --x: 38; --start-y: 30; --size: 38px; --duration: 21s; --delay: -16s; --drift: 250px; }
.momiji-layer span:nth-child(16) { --x: 63; --start-y: 22; --size: 26px; --duration: 16s; --delay: -4s; --drift: 165px; }
.momiji-layer span:nth-child(17) { --x: 84; --start-y: 34; --size: 31px; --duration: 18s; --delay: -10s; --drift: 195px; }
.momiji-layer span:nth-child(18) { --x: 95; --start-y: 16; --size: 24px; --duration: 15s; --delay: -2s; --drift: 135px; }
.momiji-layer span:nth-child(19) { --x: 10; --start-y: 44; --size: 34px; --duration: 20s; --delay: -14s; --drift: 240px; }
.momiji-layer span:nth-child(20) { --x: 74; --start-y: 52; --size: 21px; --duration: 14s; --delay: -6s; --drift: 125px; }

@keyframes momiji-fall {
  0% {
    transform: translate3d(var(--push-x, 0px), calc(-18vh + var(--push-y, 0px)), 0) rotate(-18deg);
    opacity: 0;
  }
  8% {
    opacity: .72;
  }
  50% {
    transform: translate3d(calc(var(--drift) * .58 + var(--push-x, 0px)), calc(54vh + var(--push-y, 0px)), 0) rotate(190deg);
  }
  100% {
    transform: translate3d(calc(var(--drift) + var(--push-x, 0px)), calc(118vh + var(--push-y, 0px)), 0) rotate(390deg);
    opacity: 0;
  }
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  margin-top: var(--header-height);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slideshow {
  background: var(--night);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 2s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(36, 33, 31, .82), rgba(36, 33, 31, .42) 52%, rgba(36, 33, 31, .12)),
    linear-gradient(0deg, rgba(36, 33, 31, .58), rgba(36, 33, 31, 0) 52%);
}

.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 150px) 0 92px;
}

.hero-note {
  position: absolute;
  right: clamp(18px, 4vw, 48px);
  bottom: 28px;
  max-width: 300px;
  padding: 16px 18px;
  border-left: 4px solid var(--maple);
  background: rgba(79, 87, 88, .68);
  backdrop-filter: blur(10px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 12px;
  letter-spacing: .12em;
}

.hero-note span {
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--maple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.hero .eyebrow {
  color: #ffb09d;
}

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

h1,
h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.18;
}

h1 {
  max-width: 1180px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 86px);
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(16px, 2vw, 19px);
}

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

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 122px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 620px;
}



.concept-title {
  display: grid;
  gap: .08em;
}

.concept-title span {
  display: block;
}

.concept-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.concept-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 17px;
}

.concept-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.gallery-categories {
  width: min(1260px, calc(100% - 36px));
}

.gallery-categories .section-heading {
  margin-bottom: 34px;
}

.dam-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1260px, calc(100% - 36px));
  padding-top: 0;
}

.gallery-categories .dam-strip {
  width: 100%;
}

.strip-card {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: grid;
  align-items: end;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: var(--night-soft);
  box-shadow: var(--shadow);
}

.strip-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(36, 33, 31, .08), rgba(36, 33, 31, .88)),
    linear-gradient(90deg, rgba(226, 66, 31, .18), transparent 60%);
  content: "";
}

.strip-card::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 48%;
  height: 5px;
  background: var(--dam);
  content: "";
}

.strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92);
  transition: transform .4s ease;
}

.strip-card:hover img {
  transform: scale(1.04);
}

.strip-card > div {
  position: relative;
  z-index: 3;
  padding: 36px;
}

.strip-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--maple);
  box-shadow: 0 12px 28px rgba(226, 66, 31, .32);
  font-weight: 900;
}

.strip-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 32px);
}

.strip-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

.gallery-card-link {
  width: fit-content;
}

.gallery {
  width: min(1320px, calc(100% - 36px));
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(143, 150, 151, .12) 48% 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 285px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--dam-light);
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img,
.gallery-item .gallery-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item .gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease, transform 5.5s ease;
}

.gallery-item .gallery-slide.is-active {
  opacity: 1;
}

.gallery-item .gallery-slide.is-active,
.gallery-item:hover .gallery-slide.is-active {
  transform: scale(1.035);
}

.gallery-item:hover img:not(.gallery-slide) {
  transform: scale(1.04);
}

.gallery-page {
  padding-top: var(--header-height);
}

.gallery-hero {
  padding-top: clamp(74px, 9vw, 120px);
  padding-bottom: clamp(46px, 7vw, 84px);
}

.gallery-hero .section-heading {
  max-width: 880px;
  margin-bottom: 0;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.gallery-section {
  padding-top: clamp(48px, 7vw, 84px);
}

.gallery-section + .gallery-section {
  border-top: 1px solid rgba(247, 242, 232, .1);
}

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

.gallery-section-head h2 {
  margin-bottom: 0;
}

.gallery-section-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.gallery-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(247, 242, 232, .14);
  border-radius: 8px;
  background: var(--night-soft);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-photo.wide {
  grid-column: span 2;
}

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

.gallery-photo .fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transform-origin: center;
  transition: opacity 1.8s ease, transform 6s ease;
}

.gallery-photo .fade-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-photo .fade-slide.is-active.motion-zoom-left {
  animation: gallery-zoom-left 5.8s ease both;
}

.gallery-photo .fade-slide.is-active.motion-zoom-right {
  animation: gallery-zoom-right 5.8s ease both;
}

.gallery-photo .fade-slide.motion-zoom-left {
  transform: scale(1.22) translateX(-4.5%);
}

.gallery-photo .fade-slide.motion-zoom-right {
  transform: scale(1.22) translateX(4.5%);
}

@keyframes gallery-zoom-left {
  0% {
    transform: scale(1.08) translateX(2.5%);
  }
  100% {
    transform: scale(1.22) translateX(-4.5%);
  }
}

@keyframes gallery-zoom-right {
  0% {
    transform: scale(1.08) translateX(-2.5%);
  }
  100% {
    transform: scale(1.22) translateX(4.5%);
  }
}

.gallery-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(36, 33, 31, .28));
  content: "";
  pointer-events: none;
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.access .section-heading h2,
.reservation .section-heading h2,
.contact .section-heading h2 {
  color: var(--paper);
}

.access-info,
.company-info {
  min-width: 0;
}

dl {
  margin: 0;
  padding: 32px;
}

dl div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dl div:first-child {
  padding-top: 0;
}

dl div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

dt {
  color: var(--dam-dark);
  font-size: 13px;
  font-weight: 900;
}

dd {
  margin: 0;
}

dd a,
.site-feedback a {
  color: var(--maple-dark);
  font-weight: 800;
  word-break: break-all;
}

.map-embed {
  min-height: 450px;
  background: var(--dam-light);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.reservation {
  position: relative;
}

.reservation::before {
  position: absolute;
  z-index: -1;
  inset: 36px calc(50% - 50vw) 36px 50%;
  background: var(--dam-light);
  opacity: .16;
  content: "";
}

.reservation-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.reservation-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 36px);
  margin-bottom: 22px;
}

.reservation-page-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 18px;
  color: var(--muted);
}

.reservation-page-link p {
  margin: 0;
  font-size: 14px;
}

.reservation-page {
  padding-top: var(--header-height);
}

.reservation-form-section {
  min-height: calc(100svh - var(--header-height));
}

.reservation-form-layout {
  display: grid;
  grid-template-columns: minmax(250px, .42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.reservation-side {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(247, 242, 232, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(226, 66, 31, .13), rgba(143, 150, 151, .16)),
    rgba(255, 250, 240, .05);
}

.reservation-side h2 {
  margin-top: 0;
  color: var(--paper);
  font-size: clamp(24px, 3vw, 34px);
}

.reservation-side p {
  color: var(--muted);
}

.price-preview,
.calendar-preview,
.admin-panel,
.admin-login {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.price-preview,
.calendar-preview {
  padding: clamp(22px, 4vw, 32px);
}

.mini-heading h3,
.calendar-head h3 {
  margin-bottom: 0;
}

.price-grid,
.price-summary {
  display: grid;
  gap: 12px;
}

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--maple);
  border-radius: 8px;
  background: var(--white);
}

.price-card h4 {
  margin: 0 0 4px;
  font-size: 16px;
}

.price-card p {
  margin: 0;
  color: var(--dam-dark);
  font-size: 13px;
}

.price-card strong {
  color: var(--maple-dark);
  font-size: 20px;
  white-space: nowrap;
}

.price-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-block h4 {
  margin: 0 0 12px;
  font-size: 20px;
}

.price-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-block li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

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

.price-block strong {
  color: var(--maple-dark);
  white-space: nowrap;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.price-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.price-table th:first-child,
.price-table td:first-child {
  text-align: left;
}

.price-table th {
  color: var(--ink);
  background: #ede8dc;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.calendar-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.calendar-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.calendar-controls button:hover {
  border-color: rgba(226, 66, 31, .45);
  box-shadow: 0 10px 18px rgba(36, 33, 31, .12);
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
  color: var(--dam-dark);
  font-size: 13px;
  font-weight: 800;
}

.status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-open {
  background: #599b69;
}

.status-available {
  background: #2f9e8f;
}

.status-limited {
  background: #c79838;
}

.status-booked {
  background: var(--maple);
}

.status-closed {
  background: var(--dam-dark);
}

.calendar-contact-note {
  margin: -4px 0 14px;
  color: var(--maple-light);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.8;
}

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

.calendar-weekday,
.calendar-day {
  min-height: 56px;
  padding: 8px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calendar-weekday:nth-child(7n),
.calendar-day:nth-child(7n) {
  border-right: 0;
}

.calendar-weekday {
  min-height: auto;
  color: var(--dam-dark);
  background: #ede8dc;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.calendar-day {
  display: grid;
  align-content: start;
  gap: 4px;
  color: var(--ink);
  background: #fffdf8;
  font-size: 13px;
}

.calendar-day.is-empty {
  background: #f1ece2;
}

.calendar-day small {
  color: var(--dam-dark);
  font-size: 10px;
  font-weight: 900;
}

.calendar-day[data-status="limited"] {
  background: #fff4d7;
}

.calendar-day[data-status="available"] {
  color: var(--white);
  background: #2f9e8f;
  cursor: pointer;
}

.calendar-day[data-status="available"]:hover {
  outline: 3px solid rgba(255, 255, 255, .45);
  outline-offset: -5px;
}

.calendar-day[data-status="booked"] {
  color: var(--white);
  background: var(--maple-dark);
}

.calendar-day[data-status="booked"] small,
.calendar-day[data-status="available"] small,
.calendar-day[data-status="closed"] small,
.calendar-day[data-status="open"] small {
  color: rgba(255, 255, 255, .78);
}

.calendar-day[data-status="closed"],
.calendar-day[data-status="open"] {
  color: var(--white);
  background: var(--dam-dark);
}

.admin-note {
  margin: 14px 0 0;
  color: var(--dam-dark);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--dam-dark);
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(79, 87, 88, .28);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--maple);
  box-shadow: 0 0 0 3px rgba(226, 66, 31, .14);
}

textarea {
  resize: vertical;
}

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(32px, 6vw, 62px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(36, 33, 31, .92), rgba(79, 87, 88, .9)),
    url("../images/old/IMG_3976-1536x1152.jpg") center / cover;
}

.instagram-embed {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(247, 242, 232, .16);
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(226, 66, 31, .16), rgba(143, 150, 151, .14)),
    rgba(255, 250, 240, .05);
}

.instagram-embed h3 {
  margin-bottom: 4px;
  font-size: clamp(24px, 3vw, 34px);
}

.instagram-embed p {
  margin-bottom: 0;
  color: var(--muted);
}

.instagram-media {
  width: 100%;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 !important;
  border-radius: 8px !important;
  background: var(--paper-strong) !important;
}

.contact-panel .eyebrow {
  color: #ffb09d;
}

.contact-panel p {
  color: rgba(255, 255, 255, .82);
}

.company-info {
  border-radius: 8px;
  background: rgba(247, 242, 232, .09);
}

.company-info dl {
  padding-bottom: 18px;
}

.company-info dt {
  color: #f6cbc1;
}

.site-feedback {
  margin: 0;
  padding: 0 32px 32px;
  font-size: 14px;
}

.site-feedback a {
  color: #ffd2c8;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 4vw, 48px);
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer img {
  width: 82px;
}

.admin-footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(79, 87, 88, .28);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 13px;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.admin-footer-link:hover {
  border-color: rgba(226, 66, 31, .38);
  box-shadow: 0 12px 20px rgba(36, 33, 31, .1);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(247, 242, 232, .2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(36, 33, 31, .86);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.back-to-top:hover {
  background: var(--maple);
  box-shadow: 0 14px 28px rgba(226, 66, 31, .24);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.stripe-button {
  color: var(--white);
  background: #635bff;
  box-shadow: 0 12px 22px rgba(99, 91, 255, .22);
}

.stripe-note {
  margin: 0;
  color: var(--dam-dark);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 54px 18px 18px;
  background: rgba(0, 0, 0, .88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 86svh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .42);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  :root {
    --header-height: 86px;
  }

  .site-header {
    padding: 10px 18px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(247, 242, 232, .98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }

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

  .site-nav a {
    padding: 10px 12px;
  }

  .nav-button {
    margin-top: 6px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(1120px, calc(100% - 36px));
    max-width: none;
    margin: -68px auto 24px;
  }

  .concept-layout,
  .dam-strip,
  .gallery-page-grid,
  .access-panel,
  .reservation-overview,
  .reservation-form-layout,
  .form-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .gallery-section-head {
    display: grid;
  }

  .gallery-photo,
  .gallery-photo.wide {
    grid-column: span 1;
    min-height: 340px;
  }

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

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  h1 span {
    white-space: normal;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-photo {
    min-height: 280px;
  }

  .site-footer,
  .footer-brand,
  .instagram-embed {
    grid-template-columns: 1fr;
    display: grid;
  }
}

.admin-body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0, rgba(226, 66, 31, .12), transparent 28rem),
    var(--paper);
}

.admin-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

.admin-login {
  display: grid;
  gap: 16px;
  width: min(460px, 100%);
  margin: clamp(40px, 10vh, 110px) auto;
  padding: 34px;
}

.admin-login img {
  width: 92px;
  margin-bottom: 2px;
}

.admin-login .button {
  margin-top: 6px;
}

.admin-login h1,
.admin-header h1 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
}

.admin-error {
  margin: 12px 0 0;
  color: var(--maple-dark);
  font-weight: 900;
}

.admin-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-header p {
  max-width: 680px;
  color: var(--dam-dark);
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.button.ghost-dark {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

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

.button.small {
  min-height: 38px;
  padding: 0 16px;
  color: var(--white);
  background: var(--dam-dark);
  box-shadow: none;
}

.button.danger {
  min-height: 38px;
  color: var(--white);
  background: #8f2e24;
  box-shadow: none;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 18px;
}

.admin-panel {
  padding: 24px;
}

.admin-calendar-panel {
  grid-column: 1 / -1;
}

.panel-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-title h2,
.admin-calendar-panel h2 {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 0;
}

.reservation-list,
.admin-price-list {
  display: grid;
  gap: 12px;
}

.reservation-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.reservation-status-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reservation-status-grid span {
  display: block;
  color: var(--maple-dark);
  font-size: 28px;
  font-weight: 900;
}

.reservation-status-grid p,
.admin-empty {
  margin: 0;
  color: var(--dam-dark);
  font-size: 13px;
  font-weight: 800;
}

.reservation-read-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reservation-read-card strong,
.reservation-read-card span {
  display: block;
}

.reservation-read-card span {
  color: var(--dam-dark);
  font-size: 13px;
}

.reservation-admin-card,
.admin-price-row {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-price-section {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-price-section h3 {
  margin: 0;
  color: var(--ink);
}

.admin-price-row.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
}

.admin-price-table {
  display: grid;
  gap: 8px;
}

.admin-price-table-head,
.admin-price-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.admin-price-table-head {
  color: var(--dam-dark);
  font-size: 13px;
  font-weight: 900;
}

.external-calendar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 16px;
}

.reservation-admin-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-admin-card label:nth-child(6),
.reservation-admin-card .button {
  grid-column: 1 / -1;
}

.admin-price-row {
  grid-template-columns: minmax(0, 1fr) minmax(120px, .4fr);
}

.admin-price-row label:nth-child(3),
.admin-price-row .button {
  grid-column: 1 / -1;
}

.admin-note.dark,
.status-legend.dark {
  color: var(--dam-dark);
}

.admin-calendar-grid .calendar-day:not(.is-empty) {
  cursor: pointer;
}

.admin-calendar-grid .calendar-day:not(.is-empty):hover {
  outline: 3px solid rgba(226, 66, 31, .28);
  outline-offset: -3px;
}

@media (max-width: 900px) {
  .admin-header,
  .admin-grid,
  .reservation-status-grid,
  .external-calendar-grid,
  .reservation-admin-card,
  .admin-price-row,
  .admin-price-row.compact {
    grid-template-columns: 1fr;
  }

  .admin-header {
    display: grid;
  }

  .admin-header-actions {
    justify-content: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .momiji-layer {
    display: none;
  }
}




.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.calendar-required-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(226, 66, 31, .22);
  border-radius: 8px;
  color: var(--maple-dark);
  background: rgba(226, 66, 31, .08);
  font-weight: 900;
}

.confirm-panel {
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.confirm-panel h2 {
  margin-top: 0;
  color: var(--ink);
}

.confirm-list {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.confirm-list div {
  display: grid;
  grid-template-columns: minmax(130px, .34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.confirm-list div:last-child {
  border-bottom: 0;
}

.confirm-list dt {
  color: var(--dam-dark);
  font-weight: 900;
}

.confirm-list dd {
  margin: 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 20px;
  align-items: start;
}

@media (max-width: 900px) {
  .payment-layout,
  .confirm-list div {
    grid-template-columns: 1fr;
  }
}

.stripe-note[data-status="warning"] {
  color: #8a6518;
  background: rgba(187, 142, 50, .12);
  border: 1px solid rgba(187, 142, 50, .28);
  border-radius: 8px;
  padding: 10px 12px;
}

.stripe-note[data-status="error"] {
  color: #b92f18;
  background: rgba(226, 66, 31, .12);
  border: 1px solid rgba(226, 66, 31, .28);
  border-radius: 8px;
  padding: 10px 12px;
}

.stripe-note[data-status="info"] {
  color: var(--dam-dark);
}
