:root {
  --color-ink: #211d1a;
  --color-muted: #6f665e;
  --color-paper: #faf7f1;
  --color-soft: #eee6da;
  --color-line: rgba(33, 29, 26, 0.14);
  --color-gold: #ad8755;
  --color-deep: #171412;
  --shadow: 0 24px 70px rgba(31, 25, 20, 0.16);
  --shadow-soft: 0 18px 54px rgba(31, 25, 20, 0.09);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", Georgia, serif;
  line-height: 1.8;
}

body.nav-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 56px);
  color: #fff;
  background: rgba(18, 15, 13, 0.16);
  transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  color: #fff;
  background: rgba(18, 15, 13, 0.9);
  box-shadow: 0 16px 42px rgba(12, 10, 9, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.brand-text {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-nav a {
  position: relative;
  padding-block: 8px;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
  min-height: 100vh;
  padding: 128px clamp(20px, 7vw, 96px) 58px;
  overflow: hidden;
  color: #fff;
  background: var(--color-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.9) 0%, rgba(18, 14, 12, 0.52) 46%, rgba(18, 14, 12, 0.24) 100%),
    url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=2200&q=85") center / cover;
  transform: scale(1.02);
}

.hero-content,
.hero-info {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 840px;
  padding-bottom: clamp(18px, 5vh, 56px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(58px, 8.6vw, 108px);
  font-weight: 600;
  line-height: 1.04;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 2vw, 18px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 52px;
  padding: 13px 24px;
  overflow: hidden;
  border: 1px solid currentColor;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(33, 29, 26, 0.18);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  color: #fff;
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.button-ghost {
  color: inherit;
  background: transparent;
}

.hero-info {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 34px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section {
  padding: clamp(84px, 12vw, 150px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.section-heading.centered {
  text-align: center;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 88px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.lead {
  margin: 0;
  font-size: clamp(20px, 3vw, 31px);
  line-height: 1.85;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
}

.feature-list article:last-child {
  border-bottom: 1px solid var(--color-line);
}

.feature-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.feature-list p,
.menu-card p,
.staff-card span,
.contact-panel p {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.menu-section {
  background: #f3ede4;
}

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

.menu-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  min-height: 170px;
  padding: clamp(26px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(173, 135, 85, 0.22);
  box-shadow: 0 18px 50px rgba(33, 29, 26, 0.07);
}

.menu-card strong {
  flex: 0 0 auto;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.price-section {
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.96), rgba(243, 237, 228, 0.82)),
    var(--color-paper);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.price-note {
  align-self: start;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(150deg, rgba(36, 31, 27, 0.96), rgba(23, 20, 18, 1)),
    var(--color-deep);
  color: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.price-note span {
  display: block;
  margin-bottom: 18px;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-note p {
  margin: 0;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 452px;
  padding: clamp(28px, 4vw, 40px);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(173, 135, 85, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 237, 226, 0.92)),
    var(--color-paper);
  border: 1px solid rgba(173, 135, 85, 0.32);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.plan-card::before {
  position: absolute;
  top: 0;
  right: 26px;
  width: 1px;
  height: 88px;
  background: linear-gradient(var(--color-gold), transparent);
  content: "";
}

.plan-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(173, 135, 85, 0.28), transparent 34%),
    linear-gradient(150deg, rgba(36, 31, 27, 0.95), rgba(23, 20, 18, 0.98)),
    var(--color-deep);
  border-color: rgba(173, 135, 85, 0.62);
  transform: translateY(-12px);
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(173, 135, 85, 0.52);
  box-shadow: 0 28px 80px rgba(33, 29, 26, 0.15);
}

.plan-card.featured:hover {
  transform: translateY(-18px);
}

.plan-label {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: clamp(26px, 3vw, 34px);
}

.plan-card p:not(.plan-label) {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.plan-card.featured p:not(.plan-label),
.plan-card.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.plan-card li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  content: "";
}

.plan-card strong {
  display: block;
  margin-top: auto;
  padding-top: 34px;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1;
}

.price-list {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(173, 135, 85, 0.2);
  box-shadow: var(--shadow-soft);
}

.price-list-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.price-list-heading span {
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-list-heading p {
  margin: 0;
  font-size: 19px;
}

.price-list article {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}

.price-list span {
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-list p {
  margin: 0;
}

.price-list strong {
  color: var(--color-ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.staff-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 229, 0.92)),
    #fff;
  border: 1px solid rgba(173, 135, 85, 0.22);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.staff-card::after {
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 135, 85, 0.8), transparent);
  content: "";
}

.staff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(173, 135, 85, 0.46);
  box-shadow: 0 28px 76px rgba(33, 29, 26, 0.14);
}

.staff-card img {
  height: 420px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.staff-card div {
  padding: 30px;
}

.staff-card p {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-section {
  background: #f3ede4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--color-deep);
  border: 0;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(23, 20, 18, 0.62);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.access-section {
  padding-inline: 0;
  background: var(--color-deep);
  color: #fff;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  min-height: 680px;
}

.access-image {
  min-height: 520px;
  background:
    linear-gradient(rgba(23, 20, 18, 0.12), rgba(23, 20, 18, 0.12)),
    url("https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=1600&q=84") center / cover;
}

.access-content {
  align-self: center;
  padding: clamp(48px, 8vw, 90px);
}

.access-content h2 {
  max-width: 560px;
}

.info-list {
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
}

.info-list div {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.info-list dt {
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-list dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  background:
    linear-gradient(rgba(250, 247, 241, 0.9), rgba(250, 247, 241, 0.9)),
    url("https://images.unsplash.com/photo-1559599101-f09722fb4948?auto=format&fit=crop&w=1700&q=80") center / cover fixed;
}

.contact-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(38px, 7vw, 72px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(173, 135, 85, 0.24);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: center;
}

.booking-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.booking-flow article {
  padding: 18px;
  background: rgba(250, 247, 241, 0.72);
  border: 1px solid rgba(173, 135, 85, 0.18);
}

.booking-flow span {
  display: block;
  color: var(--color-gold);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.booking-flow p {
  margin: 6px 0 0;
  color: var(--color-ink);
  font-size: 14px;
}

.contact-panel .contact-actions {
  justify-content: center;
}

.contact-panel .button-ghost {
  color: var(--color-ink);
}

.contact-note {
  margin-top: 20px;
  color: var(--color-muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 64px);
  background: rgba(12, 10, 9, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  width: min(100%, 980px);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

.lightbox-caption {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 72px;
  height: 72px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 7vw, 76px) clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top, rgba(173, 135, 85, 0.16), transparent 34%),
    #100d0b;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
}

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

.footer-brand p {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-brand small,
.footer-copy {
  color: rgba(255, 255, 255, 0.52);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  text-transform: uppercase;
}

.footer-nav a {
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.footer-copy {
  justify-self: end;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

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

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

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: 100vw;
    height: 100svh;
    color: var(--color-ink);
    background: rgba(250, 247, 241, 0.97);
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-open .site-header {
    color: var(--color-ink);
  }

  .concept-grid,
  .price-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

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

  .plan-card {
    min-height: 0;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card:hover,
  .plan-card.featured:hover {
    transform: none;
  }

  .price-list {
    grid-column: auto;
    grid-row: auto;
  }

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

  .staff-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) 1fr;
  }

  .staff-card:hover {
    transform: none;
  }

  .staff-card img {
    height: 100%;
    min-height: 290px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-text {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100vh;
    padding: 112px 20px 38px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(18, 14, 12, 0.42) 0%, rgba(18, 14, 12, 0.86) 70%),
      url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=1200&q=84") center / cover;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.18;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .hero-actions,
  .contact-actions {
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .menu-card {
    display: grid;
    min-height: 0;
  }

  .price-note {
    padding: 26px;
  }

  .plan-grid {
    gap: 14px;
  }

  .plan-card {
    padding: 28px 24px;
  }

  .price-list {
    padding: 24px;
  }

  .price-list-heading {
    display: grid;
    gap: 4px;
  }

  .price-list article {
    grid-template-columns: 1fr auto;
    gap: 4px 14px;
    padding: 22px 0;
  }

  .price-list span {
    grid-column: 1 / -1;
  }

  .staff-card {
    grid-template-columns: 1fr;
  }

  .staff-card img {
    height: 360px;
  }

  .access-image {
    min-height: 360px;
  }

  .access-content {
    padding: 54px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

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

  .contact-panel {
    text-align: left;
  }

  .booking-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-panel .contact-actions {
    justify-content: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-copy {
    justify-self: center;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 14px;
    right: 14px;
    width: 58px;
    height: 58px;
  }
}

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

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