:root {
  --color-bg: #0b0b0b;
  --color-bg-deep: #090909;
  --color-surface: #11110f;
  --color-surface-raised: #13130f;
  --color-border: #2b2b24;
  --color-text: #f5f5f0;
  --color-muted: #aaa99f;
  --color-brand-yellow: #ecff00;
  --color-brand-yellow-hover: #dce900;
  --color-brand-yellow-muted: rgba(236, 255, 0, 0.1);
  --black: var(--color-bg-deep);
  --ink: var(--color-text);
  --muted: var(--color-muted);
  --line: var(--color-border);
  --paper: var(--color-bg);
  --panel: var(--color-surface);
  --panel-soft: var(--color-surface-raised);
  --white: #ffffff;
  --yellow: var(--color-brand-yellow);
  --yellow-dark: var(--color-brand-yellow-hover);
  --yellow-soft: var(--color-brand-yellow-muted);
  --body-font: Inter, "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: Impact, Haettenschweiler, "Arial Black", "Noto Sans TC", sans-serif;
  --max: 1120px;
}

/* SEO foundation: crawlable fallbacks, breadcrumbs and the real 404 page. */
section[id] {
  scroll-margin-top: 96px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px clamp(18px, 4vw, 48px);
  color: var(--muted);
  background: var(--black);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--yellow);
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: var(--black);
}

.not-found-page .section {
  width: min(760px, 100%);
  margin-inline: auto;
}

@media (max-width: 760px) {
  .site-header:has(.static-nav) {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav.static-nav {
    position: static;
    display: flex;
    width: 100%;
    padding: 0;
    flex-flow: row wrap;
    border: 0;
    background: transparent;
  }

  .site-nav.static-nav a {
    padding: 8px 0;
    border: 0;
  }
}

* {
  box-sizing: border-box;
}

[hidden],
.option-row[hidden] {
  display: none !important;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(236, 255, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(128px, 16vw, 190px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-size: 14px;
  white-space: nowrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--yellow);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--black) !important;
  background: var(--yellow);
  border-radius: 0;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(236, 255, 0, 0.38);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--yellow);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 124px clamp(20px, 5vw, 72px) 72px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.6) 43%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 44%);
  pointer-events: none;
}

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

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1.06);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  padding-left: 22px;
  border-left: 3px solid var(--yellow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-family: var(--display-font);
  font-size: clamp(34px, 4.7vw, 62px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-subtitle {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--yellow);
  border-radius: 0;
  font-weight: 900;
}

.button.primary {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(236, 255, 0, 0.18);
}

.disabled-button,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  pointer-events: none;
}

.button.secondary {
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(236, 255, 0, 0.66);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section.compact {
  padding-top: 36px;
}

.branch-intro {
  padding-bottom: 72px;
}

.branch-intro .two-up {
  margin-bottom: 54px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading > :first-child {
  justify-self: start;
}

.section-heading > h2 {
  justify-self: center;
  text-align: center;
}

.section-heading > :last-child:not(:first-child):not(h2) {
  justify-self: end;
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.space-section {
  width: min(100% - 64px, 1320px);
}

.space-section .grid.three {
  gap: 22px;
}

.card,
.feature-link,
.booking-panel {
  color: var(--white);
  background: linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 4px;
}

.card {
  min-height: 220px;
  padding: 22px;
}

.branch-card {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 16% 18%, rgba(236, 255, 0, 0.1), transparent 30%),
    linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.branch-card > * {
  position: relative;
  z-index: 1;
}

.branch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.76)),
    var(--branch-card-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 220ms ease, transform 260ms ease;
}

.branch-card-photo::before {
  opacity: 0.46;
}

.branch-card-photo:hover::before {
  opacity: 0.62;
  transform: scale(1.06);
}

.branch-card-empty {
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.12), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.card:hover,
.feature-link:hover {
  border-color: rgba(236, 255, 0, 0.58);
  box-shadow: 0 0 0 1px rgba(236, 255, 0, 0.08), 0 22px 50px rgba(0, 0, 0, 0.28);
}

.branch-card:focus-visible,
.feature-link:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.feature-link {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-link strong {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  color: var(--white);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  vertical-align: middle;
}

.badge-muted {
  color: var(--yellow);
  background: rgba(236, 255, 0, 0.1);
  border: 1px solid rgba(236, 255, 0, 0.5);
}

.text-link {
  color: var(--yellow-dark);
  font-weight: 900;
}

.muted-link {
  color: var(--muted);
}

.booking-branch-card {
  min-height: 260px;
  color: inherit;
  text-decoration: none;
}

.booking-branch-card h3 {
  margin-bottom: 8px;
}

.booking-branch-card p {
  margin-bottom: auto;
}

.booking-branch-card:not(.is-disabled) {
  cursor: pointer;
}

.booking-branch-card:not(.is-disabled):hover .booking-card-cta {
  background: var(--white);
  border-color: var(--white);
}

.booking-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 18px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(236, 255, 0, 0.16);
}

.booking-card-cta::after {
  content: "→";
  margin-left: 12px;
}

.booking-card-cta.muted {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}

.booking-card-cta.muted::after {
  content: "";
  margin-left: 0;
}

.card p,
.feature-link p,
.section p,
.booking-panel p {
  color: var(--muted);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--yellow);
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.pricing-card {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.12), transparent 40%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.pricing-card h3 {
  margin: 4px 0 12px;
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.tax-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.pricing-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--yellow);
}

.recording-rate-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.12), transparent 45%),
    var(--panel);
}

.recording-rate-card h3 {
  margin-bottom: 14px;
}

.recording-rate-price {
  display: block;
  margin: 6px 0 24px;
  color: var(--yellow);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

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

.rate-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.11), transparent 42%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.rate-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.rate-card h3 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.rate-rows {
  display: grid;
  gap: 16px;
}

.rate-row {
  display: grid;
  gap: 12px;
  align-items: start;
  padding-top: 16px;
  border-bottom: 1px solid var(--line);
}

.rate-row:first-child {
  padding-top: 0;
}

.rate-row:last-child {
  border-bottom: 0;
}

.rate-main {
  display: grid;
  gap: 8px;
}

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

.rate-price .tax-label {
  color: rgba(255, 255, 255, 0.62);
}

.rate-main strong,
.rate-main span {
  color: var(--white);
  font-weight: 900;
}

.rate-main span {
  color: var(--yellow);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.95;
}

.rate-row ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
  list-style: none;
}

.rate-row li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--yellow);
}

.space-card {
  overflow: hidden;
  min-height: 170px;
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.1), transparent 36%),
    linear-gradient(180deg, var(--panel-soft), var(--panel));
}

.space-card-with-image {
  padding: 0;
}

.space-card-media {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.space-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 1;
  transition: opacity 220ms ease;
}

.space-card-image.is-fading {
  opacity: 0.18;
}

.space-card-preview .space-card-image {
  filter: blur(3px) brightness(0.52);
  transform: scale(1.025);
}

.preview-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 10px;
  color: var(--black);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.space-card-body {
  padding: 22px;
}

.space-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.space-thumb {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--line);
}

.space-thumb.is-active,
.space-thumb:hover,
.space-thumb:focus {
  border-color: var(--yellow);
  outline: 0;
}

.space-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 160ms ease, transform 160ms ease;
}

.space-thumb.is-active img,
.space-thumb:hover img,
.space-thumb:focus img {
  opacity: 1;
  transform: scale(1.04);
}

@media (min-width: 981px) {
  .space-section {
    width: min(100% - 72px, 1440px);
  }

  .space-section .space-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .space-card-with-image {
    position: relative;
    min-height: min(86vh, 960px);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: stretch;
  }

  .space-card-with-image .space-card-media {
    position: absolute;
    inset: 0;
    border-bottom: 0;
  }

  .space-card-with-image .space-card-image {
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    background: #050505;
    filter: brightness(0.92) contrast(1.04) saturate(0.94);
  }

  .space-card-with-image .space-card-body {
    position: relative;
    z-index: 1;
    width: min(620px, 72%);
    margin-top: auto;
    padding: 150px 32px 32px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 68%, transparent);
  }

  .space-card-with-image .space-card-body p {
    color: rgba(255, 255, 255, 0.74);
  }

  .space-card-with-image .space-gallery {
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  }
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
}

.faq-item summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-item p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  gap: 36px;
}

.link-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.branch-address {
  margin: 0 0 16px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.booking-band {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 22px 28px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(236, 255, 0, 0.07), transparent 46%),
    var(--black);
  border: 1px solid rgba(236, 255, 0, 0.24);
  border-radius: 4px;
}

.booking-band h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
}

.booking-band .eyebrow {
  margin-bottom: 4px;
}

.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.booking-panel .button[aria-disabled="true"] {
  pointer-events: none;
  filter: grayscale(0.25);
}

.booking-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 28px;
  align-items: start;
}

.booking-form-section .section-heading {
  position: sticky;
  top: 104px;
  display: block;
}

.booking-form {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.08), transparent 38%),
    linear-gradient(180deg, var(--panel-soft), var(--panel));
  border: 1px solid var(--line);
  border-radius: 4px;
}

.booking-message,
.arrival-box {
  border: 1px solid rgba(236, 255, 0, 0.28);
  background: rgba(236, 255, 0, 0.06);
}

.booking-message {
  margin-bottom: 14px;
  padding: 14px 16px;
  color: var(--white);
  font-weight: 900;
}

.booking-message.is-good {
  border-color: rgba(236, 255, 0, 0.82);
  color: var(--yellow);
}

.booking-message.is-bad {
  border-color: rgba(255, 90, 90, 0.7);
  color: #ff8f8f;
}

.booking-message-copy {
  line-height: 1.55;
}

.booking-message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.booking-message .booking-connection-action {
  min-height: 40px;
  padding: 9px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  text-decoration: none;
}

.booking-debug {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.arrival-box {
  margin-bottom: 22px;
  padding: 18px;
}

.booking-arrival-bottom {
  margin-top: 22px;
}

.arrival-box h3 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 24px;
}

.arrival-box ul {
  margin: 0;
  padding-left: 18px;
}

.arrival-box li {
  margin: 8px 0;
  color: var(--muted);
  font-weight: 800;
}

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

.booking-fields label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 900;
}

.booking-fields .full {
  grid-column: 1 / -1;
}

.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--white);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  font: inherit;
  font-weight: 800;
}

.booking-fields textarea {
  min-height: 112px;
  resize: vertical;
}

.booking-fields input[type="date"] {
  cursor: pointer;
  color-scheme: dark;
  padding-right: 112px;
}

.booking-fields input[type="date"]::-webkit-calendar-picker-indicator {
  width: 24px;
  height: 24px;
  padding: 8px;
  margin: -8px;
  cursor: pointer;
  filter: invert(92%) sepia(100%) saturate(1400%) hue-rotate(10deg) brightness(108%);
  opacity: 1;
}

.date-input-wrap {
  position: relative;
  display: block;
}

.booking-date-field .date-input-wrap {
  width: calc(50% - 9px);
}

.date-weekday {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  pointer-events: none;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus {
  border-color: var(--yellow);
  outline: none;
}

.booking-fields small {
  color: var(--muted);
  line-height: 1.6;
}

.booking-duration-note {
  margin: -4px 0 2px;
  padding-left: 12px;
  border-left: 2px solid var(--yellow);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.booking-required-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.booking-required-note span,
.booking-label-text b,
.booking-field-heading b {
  color: var(--yellow);
  font-weight: 900;
}

.booking-field-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.booking-field-heading small {
  max-width: 72%;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.option-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.option-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--yellow);
}

.booking-submit-button {
  width: 100%;
  margin-top: 22px;
  min-height: 58px;
  font-size: 18px;
}

.booking-submit-button:disabled {
  opacity: 0.65;
  cursor: progress;
}

.booking-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.recording-intro {
  align-items: end;
}

.recording-intro > p {
  margin-bottom: 0;
  font-size: 18px;
}

.detail-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.detail-card .check-list {
  margin-top: auto;
}

.recording-workflow .card {
  min-height: 260px;
}

.recording-location-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 280px;
}

.recording-location-card .branch-address {
  font-size: 18px;
}

.recording-location-card .link-stack {
  margin-top: auto;
}

.recording-space-section {
  width: min(100% - 72px, 1440px);
}

.recording-session-section .section-heading {
  align-items: start;
}

.recording-session-section .section-heading > div {
  max-width: 760px;
}

.recording-session-showcase {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.recording-session-main {
  overflow: hidden;
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.recording-session-main .space-card-image {
  aspect-ratio: 16 / 9;
  min-height: min(76vh, 760px);
  object-fit: cover;
  background: #050505;
  filter: brightness(0.92) contrast(1.04) saturate(0.94);
}

.recording-session-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 8px;
  padding: 14px;
}

.recording-session-strip .space-thumb img {
  aspect-ratio: 4 / 3;
}

@media (min-width: 981px) {
  .grid.three.recording-space-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .grid.three.recording-session-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.recording-booking {
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(236, 255, 0, 0.12), transparent 42%),
    var(--black);
  border-color: rgba(236, 255, 0, 0.3);
}

.recording-equipment-section {
  padding-top: 0;
}

.recording-intro-copy {
  display: grid;
  gap: 18px;
}

.recording-intro-copy p {
  margin: 0;
}

.equipment-grid {
  align-items: stretch;
}

.equipment-card {
  min-height: 360px;
}

.equipment-card h3 {
  color: var(--white);
}

.equipment-card p {
  margin-bottom: 18px;
}

.equipment-card .check-list li {
  padding: 8px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 40px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--black);
  border-top: 1px solid rgba(236, 255, 0, 0.18);
}

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

.footer-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.footer-links a:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.footer-contact {
  min-width: 180px;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.contact-link {
  color: var(--yellow);
  font-weight: 900;
  white-space: nowrap;
}

.contact-link:hover {
  color: var(--white);
}

@media (max-width: 760px) {
  .site-footer,
  .section-heading,
  .booking-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    display: flex;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
  }

  .brand {
    width: 164px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-width: 0;
    padding: 10px 8px;
  }

  .site-nav .nav-cta {
    display: grid;
    place-items: center;
    margin-top: 4px;
    padding: 10px 8px;
  }

  .space-card-image {
    object-fit: contain;
    background: #050505;
  }

  .hero {
    min-height: 520px;
    padding: 96px 18px 42px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.7) 58%, rgba(0, 0, 0, 0.22)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 50%);
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero-copy {
    padding-left: 16px;
    border-left-width: 2px;
  }

  h1 {
    font-size: clamp(30px, 7.6vw, 38px);
    line-height: 0.98;
    letter-spacing: 0.01em;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .button {
    min-height: 42px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .two-up,
  .booking-form-section,
  .booking-fields {
    grid-template-columns: 1fr;
  }

  .booking-form-section .section-heading {
    position: static;
  }

  .booking-field-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-field-heading small {
    max-width: none;
    text-align: left;
  }

  .booking-date-field .date-input-wrap {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .booking-fields input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-right: 12px;
    font-size: 16px;
  }

  .date-weekday {
    display: none;
  }

  .rate-grid,
  .rate-card,
  .rate-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    width: min(100% - 28px, var(--max));
    padding: 48px 0;
  }

  .card,
  .feature-link,
  .booking-band,
  .booking-form {
    padding: 20px;
  }

  .recording-intro {
    align-items: start;
  }

  .detail-card,
  .recording-workflow .card,
  .recording-location-card {
    min-height: 0;
  }

  .recording-space-section {
    width: min(100% - 28px, var(--max));
  }

  .recording-space-grid .space-card-body {
    min-height: 0;
  }

  .space-grid .space-card-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .space-grid .space-thumb img {
    height: auto;
  }

  .recording-space-grid .space-card-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .recording-space-grid .space-thumb img {
    height: auto;
  }

  .recording-session-main .space-card-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .recording-session-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(236, 255, 0, 0.35) transparent;
    scroll-snap-type: x proximity;
  }

  .recording-session-strip .space-thumb {
    flex: 0 0 76px;
    width: 76px;
    scroll-snap-align: start;
  }

  .recording-session-strip .space-thumb img {
    height: auto;
  }

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

  .booking-band {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 42px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-contact {
    min-width: 0;
  }

}

@media (min-width: 761px) and (max-width: 980px) {
  h1 {
    font-size: clamp(38px, 5vw, 50px);
    line-height: 0.98;
  }

  .hero-copy {
    width: min(560px, 100%);
  }
}

/* JFB Website v1.1 - Visual Polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  background: var(--color-bg-deep);
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
}

img {
  max-width: 100%;
}

main,
.section,
.card,
.branch-card,
.equipment-card,
.booking-form,
.site-nav {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
a,
label {
  overflow-wrap: break-word;
}

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

.site-header {
  min-height: 70px;
  padding: 10px clamp(18px, 3vw, 42px);
  background: rgba(9, 9, 9, 0.92);
  border-bottom-color: rgba(236, 255, 0, 0.13);
  box-shadow: none;
}

.brand {
  width: clamp(126px, 12vw, 168px);
}

.site-nav {
  gap: clamp(10px, 1.5vw, 19px);
  font-size: 13px;
}

.site-nav a,
.footer-links a,
.text-link {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  color: var(--color-bg-deep) !important;
  background: var(--color-brand-yellow-hover);
}

.hero {
  min-height: clamp(520px, 64vh, 590px);
  background: var(--color-bg-deep);
}

.hero-media img {
  transform: scale(1.01);
  transition: opacity 520ms ease, transform 8s ease;
}

.hero-media img.is-active {
  transform: scale(1.02);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(9, 9, 9, 0.91) 0%, rgba(9, 9, 9, 0.63) 42%, rgba(9, 9, 9, 0.18) 78%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.42), transparent 45%);
}

.hero-copy {
  width: min(700px, 100%);
  padding-block: 72px;
}

.hero h1 {
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.94;
}

.hero-brand-en {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--display-font);
  font-size: 0.62em;
  line-height: 1;
}

.hero-subtitle {
  max-width: 680px;
  font-size: clamp(18px, 1.6vw, 24px);
}

h2 {
  font-size: clamp(34px, 4.2vw, 54px);
}

h3 {
  font-size: clamp(20px, 2vw, 28px);
}

.section {
  padding: 104px 0;
  border-bottom-color: rgba(255, 255, 255, 0.065);
}

.section.compact {
  padding-top: 80px;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 24px;
  margin-bottom: 36px;
}

.section-heading > .eyebrow,
.section-heading > :first-child:not(h2) {
  grid-column: 1 / -1;
  justify-self: start;
}

.section-heading > h2 {
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

.section-heading > :last-child:not(:first-child):not(h2) {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.recording-session-section .section-heading > div,
.recording-space-section .section-heading > div {
  grid-column: 1 / -1;
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 3px;
  box-shadow: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button.primary {
  color: var(--color-bg-deep);
  background: var(--color-brand-yellow);
  border-color: var(--color-brand-yellow);
  box-shadow: none;
}

.button.primary:hover {
  background: var(--color-brand-yellow-hover);
  border-color: var(--color-brand-yellow-hover);
}

.button.secondary {
  color: var(--color-brand-yellow);
  background: var(--color-surface);
  border-color: rgba(236, 255, 0, 0.48);
}

.button.secondary:hover {
  background: var(--color-brand-yellow-muted);
  border-color: rgba(236, 255, 0, 0.72);
}

.card,
.feature-link,
.booking-panel,
.booking-form,
.rate-card,
.pricing-card,
.equipment-card,
.detail-card {
  background: var(--color-surface);
  border-color: var(--color-border);
  border-radius: 4px;
  box-shadow: none;
}

.card,
.feature-link,
.branch-card,
.rate-card,
.pricing-card,
.equipment-card,
.detail-card {
  transition: transform 190ms ease, border-color 190ms ease, background-color 190ms ease;
}

.card:hover,
.feature-link:hover,
.branch-card:hover,
.rate-card:hover,
.pricing-card:hover,
.equipment-card:hover,
.detail-card:hover {
  transform: translateY(-2px);
  background-color: var(--color-surface-raised);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.branch-card-photo:hover::before {
  opacity: 0.55;
  transform: scale(1.025);
}

.home-services .grid {
  gap: 24px;
}

.home-services .feature-link {
  position: relative;
  min-height: 380px;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.home-services .feature-link::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 320ms ease, opacity 200ms ease;
}

.home-services .feature-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 9, 9, 0.96), rgba(9, 9, 9, 0.12) 75%);
}

.home-services .feature-link:first-child::before {
  background-image: none;
}

.home-services .feature-link:last-child::before {
  background-image: url("./assets/branches/nangang/control-room-03.jpg");
}

.home-services .feature-link:hover::before {
  transform: scale(1.02);
}

.home-services .feature-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
}

.home-services .feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 700ms ease, transform 320ms ease;
}

.home-services .feature-media img.is-active {
  opacity: 1;
}

.home-services .feature-link:hover .feature-media img {
  transform: scale(1.02);
}

.home-services .feature-link strong {
  font-size: clamp(34px, 4vw, 50px);
}

.feature-cta {
  margin-top: 18px;
  color: var(--color-brand-yellow);
  font-weight: 900;
}

.home-why .grid {
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.value-item {
  min-height: 190px;
  padding: 28px;
  background: var(--color-surface);
}

.value-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 22px;
}

.rehearsal-positioning {
  padding-top: clamp(76px, 10vw, 132px);
  padding-bottom: clamp(76px, 10vw, 132px);
}

.rehearsal-positioning .section-heading {
  margin-bottom: 14px;
}

.rehearsal-intro {
  max-width: 560px;
  margin: 0 0 40px;
  color: var(--color-muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

.rehearsal-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

.rehearsal-step {
  position: relative;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  justify-content: space-between;
  gap: 42px;
  padding: 24px;
  background: var(--color-surface);
  transition: background 180ms ease;
}

.rehearsal-step::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  content: "";
  background: var(--color-brand-yellow);
}

.rehearsal-step:hover {
  background: var(--color-surface-raised);
}

.rehearsal-step-number {
  color: var(--color-brand-yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.rehearsal-step h3 {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: clamp(19px, 1.7vw, 23px);
}

.rehearsal-step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.branch-grid .branch-card {
  min-height: 260px;
}

.branch-hero.hero {
  min-height: clamp(500px, 58vh, 570px);
}

.branch-intro {
  padding-bottom: 96px;
}

.space-gallery {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(236, 255, 0, 0.35) transparent;
  scroll-snap-type: x proximity;
}

.space-thumb {
  flex: 0 0 86px;
  scroll-snap-align: start;
  border-color: rgba(255, 255, 255, 0.14);
}

.space-thumb.is-active,
.space-thumb:hover,
.space-thumb:focus {
  border-color: var(--color-brand-yellow);
}

.space-thumb img {
  opacity: 0.84;
  transform: none;
}

.space-thumb.is-active img,
.space-thumb:hover img,
.space-thumb:focus img {
  transform: none;
}

.arrival-box {
  background: rgba(236, 255, 0, 0.045);
  border: 1px solid rgba(236, 255, 0, 0.25);
  box-shadow: none;
}

.arrival-box li {
  padding-block: 5px;
  line-height: 1.75;
}

.equipment-card,
.detail-card {
  min-width: 0;
}

.equipment-card .check-list li,
.detail-card .check-list li {
  overflow-wrap: anywhere;
  line-height: 1.65;
}

.recording-equipment-grid,
.recording-services-grid {
  align-items: stretch;
}

.recording-intro p,
.recording-services-grid p,
.equipment-card p {
  line-height: 1.8;
}

.faq-layout {
  gap: 48px;
}

.faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq-item summary {
  min-height: 62px;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: clamp(16px, 1.4vw, 19px);
}

.faq-item p {
  padding: 0 4px 22px;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.article-status {
  margin-top: auto;
  color: rgba(236, 255, 0, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.article-hero {
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 72px) 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

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

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

.article-hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding-left: 22px;
  border-left: 3px solid var(--yellow);
}

.article-hero-copy p:not(.eyebrow) {
  width: min(660px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-meta span {
  padding: 6px 10px;
  border: 1px solid rgba(236, 255, 0, 0.35);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.article-keywords span {
  padding: 6px 10px;
  color: var(--yellow);
  background: rgba(236, 255, 0, 0.08);
  border: 1px solid rgba(236, 255, 0, 0.34);
  font-size: 13px;
  font-weight: 800;
}

.article-content {
  min-width: 0;
}

.article-content section {
  padding-bottom: 44px;
}

.article-content h2 {
  margin-bottom: 20px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.2;
}

.article-content p {
  color: rgba(245, 245, 240, 0.78);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 2.05;
}

.article-nav-section {
  padding-top: 22px;
}

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

.article-nav-card {
  min-height: 132px;
}

.article-nav-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.article-nav-card strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
}

.article-nav-card.is-disabled {
  color: var(--muted);
  opacity: 0.68;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card,
.rate-card {
  height: 100%;
}

.pricing-card strong,
.rate-card .price {
  overflow-wrap: normal;
  font-size: clamp(31px, 3.1vw, 46px);
  white-space: nowrap;
}

.pricing-card li,
.rate-card li {
  line-height: 1.75;
}

body[data-page="booking"] .section {
  width: min(1240px, calc(100% - 40px));
}

.booking-form-section {
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.45fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.booking-form {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
}

.booking-fields > *,
.booking-fields input,
.booking-fields select,
.booking-fields textarea {
  min-width: 0;
  max-width: 100%;
}

.booking-status {
  border-radius: 3px;
}

.booking-form :is(input, select, textarea)[aria-invalid="true"] {
  border-color: #d96565;
  outline: 2px solid rgb(217 101 101 / 22%);
  outline-offset: 1px;
}

.footer-cta-section {
  text-align: center;
}

.footer-cta-section .section-heading {
  display: block;
  margin-bottom: 24px;
}

.footer-cta-section .section-heading > * {
  text-align: center;
}

.footer-cta-section .button-row {
  justify-content: center;
}

.site-footer {
  align-items: flex-start;
  padding: 54px clamp(20px, 5vw, 72px);
  background: var(--color-bg-deep);
  border-top-color: rgba(236, 255, 0, 0.12);
}

.footer-links {
  justify-content: center;
  flex-wrap: wrap;
}

.footer-contact {
  text-align: right;
}

.footer-copyright {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

@media (min-width: 981px) {
  .space-card-with-image {
    min-height: min(78vh, 850px);
  }

  .space-card-with-image .space-card-image {
    object-fit: contain;
  }

  .space-card-with-image .space-card-body {
    padding: 34px;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .section {
    padding: 88px 0;
  }

  .site-nav {
    gap: 10px;
    font-size: 12px;
  }

  .grid.three,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rehearsal-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 34px;
  }

  .booking-form-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 9px 16px;
  }

  .brand {
    width: 136px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px 16px 18px;
    white-space: normal;
    background: rgba(9, 9, 9, 0.98);
    border-bottom: 1px solid rgba(236, 255, 0, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    padding: 10px 8px;
    display: flex;
    align-items: center;
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .hero,
  .branch-hero.hero {
    min-height: clamp(430px, 72vh, 490px);
  }

  .hero-copy {
    padding-block: 54px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .hero-brand-en {
    font-size: 0.58em;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section,
  .section.compact {
    width: min(100% - 28px, var(--max));
    padding: 68px 0;
  }

  .section-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
  }

  .section-heading > h2 {
    font-size: clamp(32px, 10vw, 43px);
  }

  .section-heading > :last-child:not(:first-child):not(h2) {
    font-size: 13px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .two-up,
  .pricing-grid,
  .rate-grid,
  .article-layout,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-hero {
    min-height: clamp(460px, 76vh, 560px);
    padding: 112px 20px 60px;
  }

  .article-hero-copy {
    padding-left: 16px;
  }

  .article-hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.05;
  }

  .article-layout {
    gap: 42px;
  }

  .article-sidebar {
    position: static;
    order: 2;
  }

  .article-content {
    order: 1;
  }

  .article-content p {
    line-height: 1.9;
  }

  .home-services .feature-link {
    min-height: 310px;
    padding: 24px;
  }

  .home-why .grid {
    gap: 1px;
  }

  .rehearsal-positioning {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .rehearsal-intro {
    margin-bottom: 28px;
  }

  .rehearsal-journey {
    grid-template-columns: 1fr;
  }

  .rehearsal-step {
    min-height: 0;
    gap: 28px;
    padding: 22px;
  }

  .value-item {
    min-height: 0;
  }

  .branch-grid .branch-card {
    min-height: 230px;
  }

  .space-section,
  .recording-space-section {
    width: 100%;
  }

  .space-card {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .space-card-image {
    object-fit: contain;
    background: var(--color-bg-deep);
  }

  .space-gallery {
    margin-inline: -4px;
    padding-inline: 4px;
  }

  .space-thumb {
    flex-basis: 76px;
  }

  body[data-page="booking"] .section {
    width: min(100% - 20px, 680px);
  }

  .booking-form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-form {
    padding: 22px 16px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
  }

  .booking-fields .full,
  .booking-fields .field-full {
    grid-column: 1;
  }

  .pricing-card strong,
  .rate-card .price {
    font-size: clamp(32px, 10vw, 43px);
    white-space: normal;
  }

  .faq-layout {
    gap: 28px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 44px;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .site-header:has(.static-nav) {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav.static-nav {
    position: static;
    display: flex;
    width: 100%;
    padding: 0;
    flex-flow: row wrap;
    border: 0;
    background: transparent;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav.static-nav a {
    padding: 8px 0;
    border: 0;
  }
}
