:root {
  --black: #020202;
  --ink: #f5f5f0;
  --muted: #a4a49a;
  --line: #24241f;
  --paper: #050505;
  --panel: #0d0d0b;
  --panel-soft: #151511;
  --white: #ffffff;
  --yellow: #ecff00;
  --yellow-dark: #d8f000;
  --yellow-soft: rgba(236, 255, 0, 0.12);
  --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;
}

* {
  box-sizing: border-box;
}

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;
}

.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;
}

.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-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-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 {
    min-height: 0;
  }

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

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

  .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%);
  }
}
