:root {
  color-scheme: light dark;
  --ink: #18191a;
  --paper: #f4efe6;
  --paper-soft: #fffaf1;
  --charcoal: #151515;
  --console: #252523;
  --glass: rgba(255, 250, 241, 0.15);
  --glass-line: rgba(255, 250, 241, 0.25);
  --glass-soft: rgba(255, 250, 241, 0.68);
  --glass-panel: rgba(255, 250, 241, 0.12);
  --bluegrey: #51646a;
  --teal: #597a73;
  --amber: #d89d4a;
  --amber-bright: #f1bd68;
  --oxide: #814c42;
  --muted: #766e64;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(12, 12, 10, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
}

body::selection {
  background: var(--amber);
  color: var(--charcoal);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 28px));
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 60px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.08), rgba(255, 250, 241, 0.03)),
    rgba(23, 24, 23, 0.5);
  color: #fffaf1;
  padding: 10px 12px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.brand strong {
  display: block;
  color: #fffaf1;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  min-width: 88px;
  border-radius: 999px;
  padding: 8px 0;
  text-align: center;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber-bright), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--amber-bright);
  transform: translateY(-1px);
}

.nav-links a:hover::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.nav-links a.nav-cta {
  min-width: auto;
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: #201711;
  font-weight: 860;
  padding: 8px 15px;
  box-shadow: 0 8px 20px rgba(241, 189, 104, 0.22);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  color: #201711;
  background: linear-gradient(135deg, #ffd27f, var(--amber-bright));
  transform: translateY(-1px);
}

.lang-toggle,
.button {
  cursor: pointer;
  border: 0;
  font: inherit;
}

.lang-toggle {
  min-width: 72px;
  height: 40px;
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.12);
  color: #fffaf1;
  padding: 10px 14px;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1180px) / 2)) 76px;
  color: #fffaf1;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.88), rgba(15, 15, 14, 0.18) 60%, rgba(15, 15, 14, 0.72)),
    url("../images/hero-dscf4819.jpg") center / cover;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 42%, rgba(0, 0, 0, 0.56)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 42px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber-bright);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.9vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

:lang(zh-CN) h1 {
  max-width: 1080px;
  line-height: 1.08;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 250, 241, 0.84);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

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

.button.primary {
  background: var(--amber-bright);
  color: #1a1610;
  box-shadow: 0 14px 34px rgba(241, 189, 104, 0.18);
}

.button.secondary {
  border: 1px solid rgba(255, 250, 241, 0.36);
  background: rgba(255, 250, 241, 0.12);
  color: #fffaf1;
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
}

.button.primary:hover {
  background: #ffd084;
  box-shadow: 0 18px 42px rgba(241, 189, 104, 0.28);
}

.button.secondary:hover,
.lang-toggle:hover {
  border-color: rgba(255, 250, 241, 0.52);
  background: rgba(255, 250, 241, 0.18);
}

.quick-proof {
  position: relative;
  z-index: 3;
  display: grid;
  --proof-gap: clamp(12px, 0.95vw, 16px);
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--proof-gap);
  counter-reset: proof;
  margin: 0;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 250, 241, 0.1)),
    rgba(35, 31, 27, 0.38);
  padding: var(--proof-gap);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.28),
    0 22px 58px rgba(28, 22, 15, 0.14);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  backdrop-filter: blur(22px) saturate(1.18);
}

.hero + .quick-proof {
  margin-top: 0;
  margin-bottom: clamp(58px, 6.5vw, 98px);
}

.quick-proof div {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  counter-increment: proof;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.78), rgba(255, 250, 241, 0.5)),
    rgba(255, 250, 241, 0.52);
  padding: 30px 22px 24px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(40, 30, 20, 0.06);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
}

.quick-proof div::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.38) 50%, transparent 58%),
    radial-gradient(circle at 18% 10%, rgba(241, 189, 104, 0.18), transparent 34%);
  content: "";
  opacity: 0;
  transform: translateX(-35%);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.quick-proof div::after {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(129, 76, 66, 0.28);
  content: counter(proof, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

@media (hover: hover) {
  .quick-proof div:hover {
    border-color: rgba(255, 250, 241, 0.26);
  }

  .quick-proof div:hover::before {
    opacity: 0;
    transform: translateX(-35%);
  }
}

.quick-proof strong {
  position: relative;
  display: block;
  color: var(--oxide);
  font-size: clamp(1.04rem, 1.32vw, 1.46rem);
  line-height: 1.14;
}

.quick-proof span {
  position: relative;
  display: block;
  max-width: 230px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 10vw, 130px) max(24px, calc((100vw - 1180px) / 2));
}

.section-heading {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: start;
  margin-bottom: clamp(32px, 6vw, 72px);
}

.section-heading.wide {
  display: block;
  max-width: 820px;
}

.section-heading.centered-heading {
  display: block;
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#rooms .section-heading.centered-heading {
  max-width: 1120px;
}

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

.section h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

:lang(zh-CN) .section h2,
:lang(zh-CN) .cta-content h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.14;
}

:lang(zh-CN) .cta-content h2 {
  line-height: 1.16;
}

.intro {
  background:
    linear-gradient(180deg, #f4efe6, #fffaf1 56%, #f4efe6);
}

.session-layout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(26px, 4vw, 56px);
  align-items: stretch;
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 250, 241, 0.34)),
    rgba(255, 255, 255, 0.36);
  padding: clamp(24px, 3.4vw, 42px);
  box-shadow: 0 24px 70px rgba(67, 54, 36, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.session-layout::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 45%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.session-copy,
.offer-panel {
  z-index: 1;
}

.session-copy > p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 480;
  line-height: 1.62;
}

.session-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 9px;
  max-width: 690px;
  max-height: 76px;
  overflow: hidden;
  margin-top: 34px;
  padding-bottom: 1px;
}

.pill-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 25, 26, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 6px 14px;
  color: #3d3a35;
  font-size: 0.92rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(31, 28, 22, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.offer-panel {
  position: relative;
  overflow: hidden;
  border: 0;
  border-left: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: 0;
  background: transparent;
  padding: 8px 0 8px clamp(24px, 3vw, 36px);
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.process-strip li::before,
.work-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 44%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.session-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 18px;
}

.session-specs span {
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  padding: 8px 6px;
  color: #5d554c;
  font-size: 0.66rem;
  font-weight: 850;
  text-align: center;
}

.price-line {
  margin-bottom: 10px;
  color: var(--oxide);
  font-size: clamp(1.15rem, 1.12vw, 1.32rem);
  font-weight: 820;
  line-height: 1.2;
  white-space: nowrap;
}

.offer-panel p:not(.price-line) {
  color: var(--muted);
  line-height: 1.55;
}

.offer-button {
  display: inline-flex;
  margin-top: 14px;
  min-height: 42px;
  border: 0;
  background: var(--amber-bright);
  color: #1a1610;
  padding: 11px 16px;
  font-size: 0.95rem;
  font-weight: 820;
  box-shadow: 0 12px 28px rgba(241, 189, 104, 0.18);
}

.dark-band {
  background:
    linear-gradient(180deg, rgba(24, 24, 22, 0.94), rgba(24, 24, 22, 0.98)),
    url("../images/offer-stage.png") center / cover fixed;
  color: #fffaf1;
}

.dark-band .section-heading h2 {
  max-width: 850px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.11), rgba(255, 250, 241, 0.055)),
    rgba(255, 250, 241, 0.08);
  padding: 28px;
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.feature-icon {
  display: block;
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 250, 241, 0.36) 48% 52%, transparent 52%),
    radial-gradient(circle, rgba(241, 189, 104, 0.7), rgba(241, 189, 104, 0.08) 60%, transparent 62%);
}

.feature-icon.workflow {
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 241, 0.25) 0 2px, transparent 2px 12px),
    linear-gradient(180deg, rgba(89, 122, 115, 0.8), rgba(241, 189, 104, 0.3));
}

.feature-icon.notes {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, transparent 0 20%, rgba(255, 250, 241, 0.22) 20% 22%, transparent 22% 42%, rgba(255, 250, 241, 0.22) 42% 44%, transparent 44%),
    rgba(216, 157, 74, 0.36);
}

.feature-card h3,
.room-list h3,
.process-strip h3,
.work-grid h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.feature-card h3 {
  font-size: clamp(1.08rem, 1vw, 1.14rem);
  white-space: nowrap;
}

.feature-card p {
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.68;
}

.philosophy {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: stretch;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  padding-top: clamp(34px, 6vw, 68px);
}

.philosophy p {
  max-width: 760px;
  margin: 0;
  color: #fffaf1;
  font-size: clamp(1.7rem, 4vw, 3.7rem);
  font-weight: 780;
  line-height: 1.08;
}

.fader-bank {
  display: grid;
  min-height: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
  padding: 18px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.fader-bank span {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 250, 241, 0.14) 48% 52%, transparent 54%),
    rgba(255, 250, 241, 0.12);
}

.fader-bank span:nth-child(1) {
  --fader-low: 34px;
  --fader-mid: -14px;
  --fader-high: -48px;
  --fader-speed: 8.6s;
  --fader-delay: -2.8s;
}

.fader-bank span:nth-child(2) {
  --fader-low: 48px;
  --fader-mid: 2px;
  --fader-high: -30px;
  --fader-speed: 10.4s;
  --fader-delay: -6.1s;
}

.fader-bank span:nth-child(3) {
  --fader-low: 14px;
  --fader-mid: -24px;
  --fader-high: -58px;
  --fader-speed: 9.2s;
  --fader-delay: -4.4s;
}

.fader-bank span:nth-child(4) {
  --fader-low: 40px;
  --fader-mid: -4px;
  --fader-high: -38px;
  --fader-speed: 11.2s;
  --fader-delay: -7.3s;
}

.fader-bank span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 238, 193, 0.92), rgba(241, 189, 104, 0.98) 52%, rgba(180, 125, 48, 0.94)),
    var(--amber-bright);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.62),
    0 7px 16px rgba(0, 0, 0, 0.22);
  content: "";
  transform: translate(-50%, calc(-50% + var(--fader-low)));
  animation: fader-automation var(--fader-speed, 9s) cubic-bezier(0.45, 0, 0.22, 1) infinite alternate;
  animation-delay: var(--fader-delay, 0s);
  will-change: transform;
}

@keyframes fader-automation {
  0% {
    transform: translate(-50%, calc(-50% + var(--fader-low)));
  }

  38% {
    transform: translate(-50%, calc(-50% + var(--fader-high)));
  }

  61% {
    transform: translate(-50%, calc(-50% + var(--fader-mid)));
  }

  100% {
    transform: translate(-50%, calc(-50% + var(--fader-low)));
  }
}

.rooms {
  background: var(--paper-soft);
}

.rooms-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 22px 80px rgba(53, 46, 34, 0.18);
}

.room-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.room-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 241, 0.32)),
    rgba(255, 250, 241, 0.46);
  padding: 12px 12px 24px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    inset 0 -42px 70px rgba(255, 250, 241, 0.22),
    0 24px 70px rgba(58, 48, 33, 0.11);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
  backdrop-filter: blur(22px) saturate(1.12);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.room-list article::before {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 250, 241, 0.22)),
    rgba(255, 250, 241, 0.24);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.52);
  content: "";
  pointer-events: none;
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  backdrop-filter: blur(14px) saturate(1.08);
}

.room-list img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: calc(var(--radius) - 2px);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.36),
    0 12px 32px rgba(42, 34, 23, 0.08);
}

.room-list h3,
.room-list p {
  position: relative;
  z-index: 1;
  padding-right: 24px;
  padding-left: 24px;
}

.room-list p {
  margin-bottom: 0;
  color: #5f574e;
  line-height: 1.46;
}

.process {
  background: #eee5d7;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-strip li {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 276px;
  grid-template-rows: 42px 52px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 241, 0.34)),
    rgba(255, 250, 241, 0.42);
  padding: 24px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.74),
    inset 0 -24px 46px rgba(255, 250, 241, 0.18),
    0 20px 54px rgba(64, 52, 33, 0.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  backdrop-filter: blur(20px) saturate(1.12);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.process-strip li::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.36), transparent 32%),
    radial-gradient(circle at 18% 12%, rgba(241, 189, 104, 0.16), transparent 34%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.process-strip span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0;
  color: var(--oxide);
  font-weight: 900;
}

.process-strip h3 {
  position: relative;
  z-index: 1;
  align-self: start;
  margin: 0;
  white-space: nowrap;
}

.process-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #655e55;
  line-height: 1.36;
}

.works {
  background: #f8f3eb;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 250, 241, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.08), transparent 42%),
    var(--console);
  color: #fffaf1;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(18, 17, 15, 0.12);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.work-card h3,
.work-card p {
  cursor: pointer;
}

.work-grid p {
  color: rgba(255, 250, 241, 0.68);
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.08);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  place-items: center;
  border: 0;
  background: rgba(11, 12, 12, 0.06);
  cursor: pointer;
}

.video-play-overlay::before {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.86));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  content: "";
}

.video-play-overlay::after {
  position: absolute;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #233a5b;
  content: "";
}

.video-frame.is-bilibili-ready:not(.is-playing) iframe {
  visibility: hidden;
}

.video-frame.is-bilibili-ready:not(.is-playing) .video-play-overlay {
  display: grid;
}

.video-frame.is-bilibili-ready:not(.is-playing) .video-cover {
  display: block;
}

.audio-showcase {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-areas: "console";
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 18px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(241, 189, 104, 0.08), transparent 25%, rgba(89, 122, 115, 0.08) 72%, transparent),
    linear-gradient(180deg, rgba(62, 61, 55, 0.98), rgba(29, 29, 26, 0.99));
  color: #fffaf1;
  padding: 22px;
  box-shadow:
    0 30px 90px rgba(18, 17, 15, 0.2),
    inset 0 1px 0 rgba(255, 250, 241, 0.12),
    inset 0 -18px 48px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.audio-showcase::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 250, 241, 0.07);
  border-radius: calc(var(--radius) - 4px);
  content: "";
  pointer-events: none;
}

.tape-deck {
  position: relative;
  grid-area: deck;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(24, 25, 26, 0.2);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.18) 29%, transparent 31% 100%),
    repeating-linear-gradient(7deg, rgba(55, 56, 52, 0.035) 0 1px, transparent 1px 13px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 18% 82%, rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 37% 34%, rgba(255, 255, 255, 0.45), transparent 10%),
    radial-gradient(circle at 49% 34%, rgba(255, 255, 255, 0.35), transparent 9%),
    linear-gradient(180deg, #d3d4cd 0%, #c4c5be 48%, #efeee7 49%, #c9c9c0 100%);
  padding: 18px 22px 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -24px 46px rgba(0, 0, 0, 0.16),
    0 20px 42px rgba(0, 0, 0, 0.16);
}

.tape-deck::before,
.tape-deck::after {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #f3efe6 0 28%, #6d6d66 32% 100%);
  content: "";
  opacity: 0.55;
}

.tape-deck::before {
  top: 18px;
  left: 18px;
  box-shadow:
    1120px 0 0 rgba(109, 109, 102, 0.8),
    0 414px 0 rgba(109, 109, 102, 0.8),
    1120px 414px 0 rgba(109, 109, 102, 0.8);
}

.tape-deck::after {
  right: 18px;
  bottom: 18px;
}

.deck-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
  color: rgba(35, 34, 31, 0.74);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deck-label strong {
  color: #7b4c25;
  letter-spacing: 0.04em;
}

.reel-row {
  position: relative;
  display: grid;
  grid-template-columns: 238px 1fr 238px;
  gap: 20px;
  align-items: center;
  max-width: 920px;
  margin: -26px auto 0;
  padding: 0 6px;
}

.reel {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(90, 92, 88, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #11120f 0 11%, transparent 12%),
    radial-gradient(circle at 50% 50%, transparent 0 25%, rgba(72, 74, 70, 0.34) 26% 28%, transparent 29% 42%, rgba(72, 74, 70, 0.3) 43% 45%, transparent 46%),
    conic-gradient(from 12deg, rgba(245, 245, 238, 0.5), rgba(138, 140, 134, 0.34), rgba(245, 245, 238, 0.22), rgba(96, 98, 92, 0.32), rgba(245, 245, 238, 0.55)),
    #babcb4;
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.16),
    0 16px 30px rgba(0, 0, 0, 0.16);
}

.reel-right {
  background:
    radial-gradient(circle at 50% 50%, #11120f 0 11%, transparent 12%),
    radial-gradient(circle at 50% 50%, transparent 0 25%, rgba(94, 69, 30, 0.35) 26% 28%, transparent 29% 42%, rgba(94, 69, 30, 0.28) 43% 45%, transparent 46%),
    conic-gradient(from 18deg, rgba(255, 228, 134, 0.62), rgba(183, 123, 45, 0.56), rgba(255, 232, 141, 0.38), rgba(134, 83, 31, 0.45), rgba(255, 228, 134, 0.66)),
    #c99b45;
}

.reel::before,
.reel::after {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  content: "";
}

.reel::before {
  background:
    conic-gradient(from 0deg, transparent 0 8%, rgba(54, 35, 25, 0.82) 8% 17%, transparent 17% 25%, rgba(54, 35, 25, 0.82) 25% 34%, transparent 34% 50%, rgba(54, 35, 25, 0.82) 50% 59%, transparent 59% 68%, rgba(54, 35, 25, 0.82) 68% 77%, transparent 77%),
    transparent;
}

.reel::after {
  inset: 34%;
  border: 12px solid rgba(18, 18, 16, 0.86);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.32), transparent 44%),
    #263042;
  box-shadow:
    inset 0 0 0 8px rgba(166, 168, 162, 0.68),
    0 0 0 1px rgba(0, 0, 0, 0.22);
}

.audio-showcase.is-playing .reel {
  animation: reel-spin 1.35s linear infinite;
}

.audio-showcase.is-playing .reel:last-child {
  animation-duration: 1.08s;
}

.tape-path {
  position: relative;
  height: 13px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(250, 234, 178, 0.75), rgba(136, 112, 74, 0.95) 50%, rgba(41, 35, 27, 0.95));
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.tape-path::before,
.tape-path::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, #161714 0 36%, #555851 38% 100%);
  content: "";
  transform: translateY(-50%);
}

.tape-path::before {
  left: -16px;
}

.tape-path::after {
  right: -16px;
}

.headblock-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 76px 90px;
  gap: 16px;
  align-items: center;
  max-width: 760px;
  margin: -18px auto 28px;
}

.guide {
  position: relative;
  height: 62px;
}

.guide::before,
.guide::after {
  position: absolute;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #f5f5ef, #999b94);
  content: "";
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.guide::before {
  width: 16px;
  height: 58px;
  transform: rotate(35deg);
}

.guide::after {
  right: 14px;
  width: 16px;
  height: 58px;
  transform: rotate(-35deg);
}

.headblock {
  position: relative;
  height: 58px;
  border: 1px solid rgba(88, 88, 82, 0.38);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #f1f1ea, #c7c8c0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 22px rgba(0, 0, 0, 0.15);
}

.headblock::before,
.headblock::after {
  position: absolute;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #888982;
  content: "";
}

.headblock::before {
  left: 64px;
}

.headblock::after {
  right: 64px;
}

.capstan {
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 10%, #a3a59f 12% 58%, #eeeeea 60% 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 8px 18px rgba(0, 0, 0, 0.17);
}

.transport-row {
  display: grid;
  grid-template-columns: 170px 210px 160px 1fr;
  gap: 16px;
  align-items: end;
  max-width: 920px;
  margin: 0 auto;
  border-top: 2px solid rgba(24, 25, 26, 0.26);
  padding-top: 18px;
}

.brand-plate {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(88, 88, 82, 0.38);
  background: #f4f2ec;
  padding: 8px 12px 7px;
  color: #4d4d48;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.brand-plate strong {
  border-bottom: 1px solid rgba(77, 77, 72, 0.25);
  color: #34342f;
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.brand-plate small {
  font-size: 0.45rem;
  letter-spacing: 0.06em;
}

.brand-plate b {
  font-size: 1.24rem;
  line-height: 1;
}

.button-bank {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.button-bank span {
  min-height: 30px;
  border: 1px solid rgba(18, 18, 16, 0.42);
  border-radius: 2px;
  background:
    linear-gradient(180deg, #deded6, #8b8d86);
  color: rgba(24, 25, 26, 0.76);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 30px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 2px 0 rgba(0, 0, 0, 0.24);
}

.button-bank span:nth-child(3) {
  color: #8a4a2f;
}

.button-bank span:nth-child(4) {
  background:
    linear-gradient(180deg, #fff8de, #e1c27a);
}

.vu-meter {
  position: relative;
  min-height: 60px;
  border: 1px solid rgba(88, 88, 82, 0.38);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 250, 220, 0.7), transparent 28%),
    linear-gradient(180deg, #ffd77b, #f3aa54);
  overflow: hidden;
}

.vu-meter::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  left: 12px;
  height: 1px;
  background:
    repeating-linear-gradient(90deg, rgba(76, 46, 28, 0.9) 0 1px, transparent 1px 12px);
  content: "";
}

.vu-meter span {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #a85e32;
  font-size: 0.66rem;
  font-weight: 900;
}

.vu-meter::before {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  height: 2px;
  background: #2c2925;
  content: "";
  transform: rotate(-8deg);
  transform-origin: left center;
}

.knob-bank {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}

.knob-bank i {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(88, 88, 82, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), transparent 45%),
    conic-gradient(from 20deg, #f5f5ee, #9b9c95, #f2f2eb, #868880, #f6f6f0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 7px 14px rgba(0, 0, 0, 0.16);
}

.knob-bank i::before {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 2px;
  height: 34%;
  border-radius: 999px;
  background: rgba(52, 52, 47, 0.78);
  content: "";
  transform: translateX(-50%) rotate(28deg);
  transform-origin: bottom center;
}

.photo-tape-deck {
  min-height: 0;
  aspect-ratio: 1064 / 584;
  background: #171815;
  padding: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 250, 241, 0.06),
    0 22px 58px rgba(12, 11, 9, 0.22);
}

.photo-tape-deck::before,
.photo-tape-deck::after {
  display: none;
}

.tape-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: calc(var(--radius) - 3px);
  filter: saturate(0.96) contrast(1.04);
}

.photo-reel {
  position: absolute;
  width: 45.9%;
  aspect-ratio: 1;
  border-radius: 50%;
  mix-blend-mode: multiply;
  opacity: 0.52;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(20, 23, 24, 0.3) 19% 20%, transparent 21% 34%, rgba(255, 255, 255, 0.16) 35% 36%, transparent 37%),
    conic-gradient(from 16deg, transparent 0 10%, rgba(43, 27, 19, 0.58) 10% 18%, transparent 18% 28%, rgba(43, 27, 19, 0.58) 28% 36%, transparent 36% 58%, rgba(43, 27, 19, 0.58) 58% 66%, transparent 66% 78%, rgba(43, 27, 19, 0.58) 78% 86%, transparent 86%);
  transform-origin: 50% 50%;
}

.photo-reel-left {
  top: -14.9%;
  left: 4.65%;
}

.photo-reel-right {
  top: -14.9%;
  right: 5.1%;
}

.audio-showcase.is-playing .photo-reel {
  animation: reel-spin 1.18s linear infinite;
}

.audio-showcase.is-playing .photo-reel-right {
  animation-duration: 0.96s;
}

.left-logo-mask {
  position: absolute;
  top: 11.5%;
  left: 28.8%;
  width: 13.2%;
  height: 8.6%;
  border-radius: 45%;
  background:
    linear-gradient(120deg, rgba(188, 190, 185, 0.54), rgba(130, 132, 128, 0.94)),
    repeating-linear-gradient(82deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 5px);
  filter: blur(0.2px);
  opacity: 0.96;
  transform: rotate(-26deg);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.36),
    0 0 18px rgba(159, 162, 157, 0.34);
}

.deck-brand-mask {
  position: absolute;
  left: 6.6%;
  bottom: 17.2%;
  display: grid;
  width: 20.4%;
  gap: 1px;
  border: 1px solid rgba(172, 174, 170, 0.9);
  background: linear-gradient(180deg, rgba(239, 241, 237, 0.98), rgba(218, 221, 217, 0.96));
  padding: 1.45% 2%;
  color: #3e4447;
  text-align: center;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.82),
    0 1px 2px rgba(0, 0, 0, 0.08);
}

.deck-brand-mask strong {
  border-bottom: 1px solid rgba(42, 46, 48, 0.25);
  color: #252a2d;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(0.84rem, 1.72vw, 1.26rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.deck-brand-mask small {
  color: #687073;
  font-size: clamp(0.34rem, 0.54vw, 0.48rem);
  font-weight: 720;
  line-height: 1;
}

.deck-brand-mask b {
  color: #32383b;
  font-size: clamp(0.82rem, 1.56vw, 1.2rem);
  line-height: 1;
}

.simple-analog-deck {
  min-height: 0;
  border-color: rgba(255, 250, 241, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.18), transparent 38%),
    linear-gradient(180deg, #474943, #2d2d29 58%, #22231f);
  padding: 18px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.16),
    inset 0 -20px 42px rgba(0, 0, 0, 0.26),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.simple-analog-deck::before,
.simple-analog-deck::after {
  display: none;
}

.analog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.analog-header strong {
  color: var(--amber-bright);
  letter-spacing: 0.04em;
}

.analog-face {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.analog-reel-row,
.analog-readout {
  border: 1px solid rgba(255, 250, 241, 0.12);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.1), transparent 52%),
    rgba(255, 250, 241, 0.055);
  box-shadow:
    inset 0 1px rgba(255, 250, 241, 0.1),
    inset 0 -10px 24px rgba(0, 0, 0, 0.16);
}

.analog-reel-row {
  display: grid;
  grid-template-columns: 132px minmax(120px, 1fr) 132px;
  gap: 16px;
  align-items: center;
  min-height: 190px;
  padding: 24px;
}

.analog-reel {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #0d1117 0 12%, transparent 13%),
    radial-gradient(circle at 50% 50%, transparent 0 32%, rgba(255, 250, 241, 0.2) 33% 35%, transparent 36% 54%, rgba(255, 250, 241, 0.16) 55% 57%, transparent 58%),
    conic-gradient(from 10deg, rgba(225, 228, 222, 0.86), rgba(104, 109, 105, 0.42), rgba(230, 231, 224, 0.74), rgba(76, 80, 78, 0.46), rgba(230, 232, 226, 0.82)),
    #a9aca6;
  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.22);
}

.analog-reel::before {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0 11%, rgba(42, 31, 24, 0.72) 11% 20%, transparent 20% 36%, rgba(42, 31, 24, 0.72) 36% 45%, transparent 45% 61%, rgba(42, 31, 24, 0.72) 61% 70%, transparent 70% 86%, rgba(42, 31, 24, 0.72) 86% 95%, transparent 95%);
  content: "";
}

.analog-reel::after {
  position: absolute;
  inset: 37%;
  border: 8px solid rgba(17, 20, 22, 0.86);
  border-radius: 50%;
  background: #314053;
  box-shadow: inset 0 0 0 5px rgba(185, 188, 183, 0.72);
  content: "";
}

.analog-reel-gold {
  background:
    radial-gradient(circle at 50% 50%, #0d1117 0 12%, transparent 13%),
    radial-gradient(circle at 50% 50%, transparent 0 32%, rgba(85, 62, 27, 0.28) 33% 35%, transparent 36% 54%, rgba(85, 62, 27, 0.22) 55% 57%, transparent 58%),
    conic-gradient(from 18deg, rgba(255, 221, 124, 0.9), rgba(161, 107, 42, 0.58), rgba(255, 225, 132, 0.72), rgba(107, 76, 35, 0.48), rgba(255, 221, 124, 0.86)),
    #c99b45;
}

.analog-tape-path {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 224, 152, 0.86), rgba(137, 105, 57, 0.95) 52%, rgba(32, 27, 21, 0.95));
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.38);
}

.analog-tape-path::before,
.analog-tape-path::after {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #161714 0 38%, #5a5d57 40% 100%);
  content: "";
  transform: translateY(-50%);
}

.analog-tape-path::before {
  left: -12px;
}

.analog-tape-path::after {
  right: -12px;
}

.analog-readout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-content: center;
  padding: 20px;
}

.analog-vu {
  position: relative;
  grid-column: 1 / -1;
  min-height: 92px;
  overflow: hidden;
  border: 1px solid rgba(48, 40, 27, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 249, 220, 0.52), transparent 34%),
    linear-gradient(180deg, #ffd980, #f0a958);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.58),
    inset 0 -12px 22px rgba(91, 51, 25, 0.16);
}

.analog-vu span {
  position: absolute;
  top: 12px;
  right: 16px;
  color: #8c4d2a;
  font-size: 0.72rem;
  font-weight: 900;
}

.analog-vu i {
  position: absolute;
  right: 18px;
  bottom: 24px;
  left: 18px;
  height: 2px;
  background: #2b2a27;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.analog-vu::after {
  position: absolute;
  inset: auto 18px 18px;
  height: 20px;
  background:
    repeating-linear-gradient(90deg, rgba(91, 51, 25, 0.72) 0 1px, transparent 1px 13px);
  content: "";
}

.analog-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.analog-buttons span {
  min-height: 34px;
  border: 1px solid rgba(18, 18, 16, 0.42);
  border-radius: 3px;
  background: linear-gradient(180deg, #e4e1d7, #8f9189);
  color: rgba(24, 25, 26, 0.78);
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 34px;
  text-align: center;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.78),
    0 2px 0 rgba(0, 0, 0, 0.24);
}

.analog-buttons span:last-child {
  background: linear-gradient(180deg, #fff7dc, #d8b365);
}

.analog-knobs {
  display: grid;
  grid-template-columns: repeat(3, 42px);
  gap: 12px;
  justify-content: end;
}

.analog-knobs span {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), transparent 45%),
    conic-gradient(from 20deg, #f5f5ee, #9b9c95, #f2f2eb, #868880, #f6f6f0);
}

.analog-knobs span::before {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 2px;
  height: 34%;
  border-radius: 999px;
  background: rgba(52, 52, 47, 0.78);
  content: "";
  transform: translateX(-50%) rotate(28deg);
  transform-origin: bottom center;
}

.audio-showcase.is-playing .analog-reel {
  animation: reel-spin 1.25s linear infinite;
}

.audio-showcase.is-playing .analog-reel-gold {
  animation-duration: 1s;
}

.now-playing {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 250, 241, 0.1);
  padding-bottom: 18px;
  min-width: 0;
}

.audio-current-cover {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: calc(var(--radius) - 2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.audio-copy .eyebrow {
  margin-bottom: 8px;
}

.audio-copy h3 {
  margin-bottom: 7px;
  color: #fffaf1;
  font-size: clamp(1.04rem, 1.3vw, 1.25rem);
  line-height: 1.2;
}

.audio-copy p:not(.eyebrow) {
  margin-bottom: 13px;
  color: rgba(255, 250, 241, 0.64);
}

.audio-copy audio {
  width: 100%;
  height: 38px;
  accent-color: var(--amber);
}

.playlist-panel {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  max-height: 280px;
  overflow: auto;
  padding-top: 18px;
  min-width: 0;
}

.player-console {
  grid-area: console;
  min-width: 0;
}

.track-row {
  display: grid;
  width: 100%;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 250, 241, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 250, 241, 0.07);
  padding: 10px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.track-row img {
  width: 56px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.track-row span {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.track-row strong,
.track-row small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-row strong {
  color: #fffaf1;
  font-size: 0.92rem;
}

.track-row small {
  color: rgba(255, 250, 241, 0.58);
}

.track-row.is-active {
  border-color: rgba(241, 189, 104, 0.5);
  background: rgba(241, 189, 104, 0.14);
}

@keyframes reel-spin {
  to {
    transform: rotate(360deg);
  }
}

.final-cta {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: #fffaf1;
  padding: clamp(80px, 12vw, 150px) max(24px, calc((100vw - 1180px) / 2));
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.86), rgba(12, 12, 10, 0.48), rgba(12, 12, 10, 0.88)),
    url("../images/offer-stage.png") center / cover;
}

.cta-content {
  position: relative;
  max-width: 1040px;
}

.cta-content h2 {
  max-width: 980px;
  margin-bottom: 34px;
  font-size: clamp(2.6rem, 5.6vw, 5.45rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.booking-body {
  min-height: 100vh;
  background: #eee7db;
}

.booking-page {
  overflow: visible;
}

.booking-shell {
  position: relative;
  min-height: 100vh;
  padding: 148px max(24px, calc((100vw - 1180px) / 2)) 96px;
}

.booking-bg {
  position: absolute;
  inset: 0 0 auto;
  height: clamp(640px, 58vh, 760px);
  background:
    linear-gradient(180deg, rgba(10, 11, 10, 0.74), rgba(10, 11, 10, 0.24) 58%, rgba(10, 11, 10, 0.48) 100%),
    linear-gradient(90deg, rgba(10, 11, 10, 0.88), rgba(10, 11, 10, 0.2), rgba(10, 11, 10, 0.74)),
    url("../images/hero-dscf4819.jpg") center / cover;
}

.booking-intro,
.booking-form {
  position: relative;
  z-index: 1;
}

.booking-intro {
  max-width: 820px;
  color: #fffaf1;
  padding-bottom: 18px;
}

.booking-intro h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.4vw, 5.45rem);
  line-height: 0.98;
}

html[lang="en"] .booking-intro {
  max-width: 1120px;
}

html[lang="en"] .booking-intro h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.35rem);
  white-space: nowrap;
}

.booking-intro > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.68;
}

.booking-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.booking-stats span {
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 250, 241, 0.08)),
    rgba(255, 250, 241, 0.12);
  color: rgba(255, 250, 241, 0.9);
  padding: 10px 14px;
  font-size: 0.86rem;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.28),
    0 10px 28px rgba(6, 7, 6, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  backdrop-filter: blur(18px) saturate(1.28);
}

.booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  margin-top: clamp(80px, 8vw, 112px);
}

.form-main,
.booking-panel {
  border: 1px solid rgba(255, 250, 241, 0.44);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 241, 0.48)),
    rgba(255, 250, 241, 0.58);
  box-shadow: 0 30px 90px rgba(32, 27, 20, 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  backdrop-filter: blur(22px) saturate(1.08);
}

.form-main {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.booking-form fieldset {
  border: 0;
  border-bottom: 1px solid rgba(24, 25, 26, 0.08);
  margin: 0;
  padding: clamp(40px, 4.4vw, 60px) clamp(34px, 4vw, 52px) clamp(34px, 4vw, 52px);
}

.booking-form fieldset:last-child {
  border-bottom: 0;
}

.booking-form legend {
  float: left;
  width: auto;
  margin-bottom: clamp(28px, 2.8vw, 40px);
  padding: 6px 0 0;
  color: var(--oxide);
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  font-weight: 860;
  line-height: 1.08;
}

.booking-form legend + * {
  clear: both;
}

.field-grid {
  display: grid;
  gap: 22px;
}

.field-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.wide-field {
  grid-column: 1 / -1;
}

.booking-form label {
  position: relative;
  display: grid;
  gap: 8px;
  color: #292724;
  font-weight: 760;
}

.booking-form label:has(input[required]) > span::after,
.booking-form label:has(select[required]) > span::after,
.booking-form label:has(textarea[required]) > span::after {
  content: " *";
  color: #b77732;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 25, 26, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: #25231f;
  font: inherit;
  font-weight: 520;
  outline: 0;
  padding: 14px 15px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.52);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(216, 157, 74, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 4px rgba(241, 189, 104, 0.16);
}

.booking-form input:invalid {
  box-shadow: none;
}

.instrument-token-control {
  display: flex;
  min-height: 51px;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 8px;
  width: 100%;
  border: 1px solid rgba(24, 25, 26, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  padding: 7px 9px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.52);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.instrument-token-control:focus-within {
  border-color: rgba(216, 157, 74, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 4px rgba(241, 189, 104, 0.16);
}

.instrument-tags {
  display: contents;
}

.instrument-tag {
  display: inline-flex;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(154, 101, 46, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(245, 190, 96, 0.25), rgba(255, 255, 255, 0.62)),
    rgba(255, 250, 241, 0.78);
  color: #2f2a24;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.1;
  padding: 6px 9px 6px 12px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.instrument-tag:hover {
  border-color: rgba(154, 101, 46, 0.54);
  background: rgba(241, 189, 104, 0.28);
  transform: translateY(-1px);
}

.instrument-tag span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.instrument-tag i {
  display: inline-grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 42, 36, 0.12);
  color: #4f453b;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1;
}

.booking-form .instrument-search-input {
  width: auto;
  min-width: min(190px, 100%);
  flex: 1 1 150px;
  border: 0;
  background: transparent;
  padding: 6px 2px;
  box-shadow: none;
}

.booking-form .instrument-search-input:focus {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.instrument-picker {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 35;
  display: grid;
  width: min(520px, 100%);
  max-height: min(460px, 58vh);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  overflow: auto;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 241, 0.78)),
    rgba(255, 250, 241, 0.82);
  padding: 12px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.68),
    0 24px 64px rgba(32, 27, 20, 0.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.instrument-picker[hidden] {
  display: none;
}

.instrument-group-heading {
  grid-column: 1 / -1;
  margin-top: 6px;
  border-top: 1px solid rgba(24, 25, 26, 0.11);
  padding: 12px 4px 2px;
  color: var(--oxide);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.instrument-group-heading:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 2px;
}

.instrument-picker button {
  min-height: 34px;
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #37322d;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 680;
  line-height: 1.2;
  text-align: left;
  overflow-wrap: anywhere;
  white-space: normal;
  padding: 8px 11px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

html[lang="en"] .instrument-picker button {
  font-size: 0.78rem;
}

.instrument-picker button.is-wide {
  grid-column: 1 / -1;
}

.instrument-picker button:hover,
.instrument-picker button:focus-visible {
  border-color: rgba(216, 157, 74, 0.5);
  background: rgba(255, 250, 241, 0.9);
  box-shadow: 0 8px 18px rgba(32, 27, 20, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.instrument-picker button.is-selected {
  border-color: rgba(216, 157, 74, 0.58);
  background:
    linear-gradient(135deg, rgba(245, 190, 96, 0.34), rgba(255, 255, 255, 0.66)),
    rgba(255, 250, 241, 0.86);
  color: #2f2a24;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.7),
    0 8px 18px rgba(32, 27, 20, 0.08);
}

.booking-form.was-validated input:invalid,
.booking-form.was-validated select:invalid {
  border-color: rgba(129, 76, 66, 0.78);
}

.booking-form small {
  color: #796f64;
  font-weight: 520;
  line-height: 1.45;
}

.estimate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
  border: 1px solid rgba(255, 250, 241, 0.6);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 250, 241, 0.38)),
    rgba(255, 250, 241, 0.54);
  padding: clamp(22px, 3vw, 30px);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 18px 50px rgba(32, 27, 20, 0.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  backdrop-filter: blur(20px) saturate(1.12);
}

.estimate-main {
  display: grid;
  gap: 10px;
  align-content: center;
}

.estimate-main span {
  color: var(--oxide);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-main strong {
  color: #1f211f;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 0.95;
}

.estimate-main p {
  max-width: 520px;
  margin: 0;
  color: #6a6258;
  font-weight: 560;
  line-height: 1.55;
}

.estimate-breakdown {
  display: grid;
  gap: 8px;
  align-content: start;
  border-left: 1px solid rgba(24, 25, 26, 0.08);
  padding-left: 20px;
}

.estimate-breakdown span,
.estimate-method-toggle {
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 8px 12px;
  color: #4a433c;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 680;
  text-align: left;
}

.estimate-method-toggle {
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.estimate-method-toggle:hover,
.estimate-method-toggle:focus-visible {
  border-color: rgba(216, 157, 74, 0.52);
  background: rgba(241, 189, 104, 0.18);
  box-shadow: 0 8px 18px rgba(32, 27, 20, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

.files-fieldset > label + label {
  margin-top: 22px;
}

.duration-control,
.date-control {
  position: relative;
  display: flex;
  align-items: center;
}

.duration-control input,
.date-control input {
  padding-right: 58px;
}

.date-control input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.duration-picker-button,
.date-picker-button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 241, 0.36)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.6),
    0 8px 18px rgba(32, 27, 20, 0.08);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  backdrop-filter: blur(12px) saturate(1.12);
}

.duration-picker-button::before {
  width: 9px;
  height: 9px;
  border-right: 1.7px solid rgba(41, 39, 36, 0.68);
  border-bottom: 1.7px solid rgba(41, 39, 36, 0.68);
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.date-picker-button::before {
  width: 16px;
  height: 15px;
  border: 1.5px solid rgba(41, 39, 36, 0.68);
  border-top-width: 4px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 32%, rgba(41, 39, 36, 0.2) 32% 36%, transparent 36% 64%, rgba(41, 39, 36, 0.2) 64% 68%, transparent 68%),
    linear-gradient(180deg, transparent 46%, rgba(41, 39, 36, 0.16) 46% 52%, transparent 52%);
  content: "";
}

.duration-picker-button:hover,
.date-picker-button:hover {
  border-color: rgba(216, 157, 74, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 241, 0.52)),
    rgba(255, 250, 241, 0.7);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 12px 24px rgba(32, 27, 20, 0.12);
  transform: translateY(-50%) translateY(-1px);
}

.duration-picker-button:focus-visible,
.date-picker-button:focus-visible {
  outline: 0;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 4px rgba(241, 189, 104, 0.16);
}

.duration-options-popover[hidden],
.date-calendar-popover[hidden] {
  display: none;
}

.duration-options-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 31;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 241, 0.74)),
    rgba(255, 250, 241, 0.82);
  padding: 10px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.7),
    0 22px 54px rgba(32, 27, 20, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.duration-option {
  min-height: 34px;
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.54);
  color: #262420;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.duration-option:hover,
.duration-option:focus-visible {
  border-color: rgba(216, 157, 74, 0.58);
  background: rgba(246, 190, 93, 0.22);
  box-shadow: 0 8px 20px rgba(32, 27, 20, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.date-calendar-popover {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: min(310px, 100%);
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 241, 0.78)),
    rgba(255, 250, 241, 0.82);
  padding: 14px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.68),
    0 24px 64px rgba(32, 27, 20, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.date-calendar-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.date-calendar-head strong {
  color: #292724;
  font-size: 0.96rem;
  text-align: center;
}

.date-calendar-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #4f473e;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 760;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.date-calendar-head button:hover {
  border-color: rgba(216, 157, 74, 0.5);
  background: rgba(255, 250, 241, 0.86);
  transform: translateY(-1px);
}

.date-weekdays,
.date-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.date-weekdays {
  margin-bottom: 6px;
}

.date-weekdays span {
  color: #8b8073;
  font-size: 0.72rem;
  font-weight: 820;
  text-align: center;
}

.date-day {
  display: grid;
  min-width: 0;
  height: 32px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #3d3832;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 680;
}

button.date-day {
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

button.date-day:hover {
  border-color: rgba(216, 157, 74, 0.42);
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 8px 16px rgba(32, 27, 20, 0.08);
  transform: translateY(-1px);
}

.date-day.is-today {
  border-color: rgba(83, 124, 116, 0.4);
}

.date-day.is-disabled {
  color: rgba(61, 56, 50, 0.26);
  text-decoration: line-through;
  cursor: not-allowed;
}

.date-day.is-selected {
  border-color: rgba(154, 101, 46, 0.62);
  background: rgba(241, 189, 104, 0.32);
  color: #1f1c18;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.72);
}

.booking-form select[data-size-select] + input[type="hidden"] + .size-picker {
  display: none;
}

.booking-body.size-picker-ready .booking-form select[data-size-select] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-body.size-picker-ready .booking-form select[data-size-select] + input[type="hidden"] + .size-picker {
  display: block;
}

.size-picker {
  position: relative;
}

.size-picker-button {
  display: flex;
  width: 100%;
  height: 49px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(24, 25, 26, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: #25231f;
  font: inherit;
  font-weight: 620;
  outline: 0;
  overflow: hidden;
  padding: 8px 15px;
  text-align: left;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.ensemble-size-tag {
  display: inline-flex;
  max-width: calc(100% - 24px);
  min-height: 24px;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(154, 101, 46, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(245, 190, 96, 0.25), rgba(255, 255, 255, 0.62)),
    rgba(255, 250, 241, 0.78);
  color: #2f2a24;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.1;
  padding: 3px 6px 3px 9px;
}

.ensemble-size-tag span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ensemble-size-tag i {
  display: inline-grid;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 42, 36, 0.12);
  color: rgba(47, 42, 36, 0.7);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1;
}

.ensemble-size-tag i:hover {
  background: rgba(47, 42, 36, 0.22);
}

.size-picker-button::after {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.56;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.size-picker.is-open .size-picker-button {
  border-color: rgba(216, 157, 74, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.72),
    0 0 0 4px rgba(241, 189, 104, 0.16);
}

.size-picker-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 25;
  display: none;
  max-height: 300px;
  overflow: auto;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 241, 0.74)),
    rgba(255, 250, 241, 0.8);
  padding: 8px;
  box-shadow: 0 24px 70px rgba(32, 27, 20, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.size-picker.is-open .size-picker-list {
  display: grid;
  gap: 4px;
}

.size-option {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #292724;
  font: inherit;
  font-weight: 620;
  padding: 9px 10px;
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.size-option:hover {
  background: rgba(241, 189, 104, 0.16);
}

.size-option.is-selected {
  background: rgba(83, 124, 116, 0.12);
  color: #183432;
}

.size-option-plus {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(154, 101, 46, 0.42);
  border-radius: 999px;
  background: rgba(241, 189, 104, 0.28);
  color: #7f5330;
  font-size: 1rem;
  font-weight: 760;
  line-height: 1;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
}

.choice-group + .choice-group {
  border-top: 1px solid rgba(24, 25, 26, 0.08);
}

.choice-group p {
  flex: 0 0 100%;
  margin: 0 0 2px;
  color: var(--oxide);
  font-weight: 850;
}

.choice-group label {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  padding: 7px 12px;
  font-weight: 680;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  -webkit-user-select: none;
  user-select: none;
}

.choice-group label:hover {
  border-color: rgba(216, 157, 74, 0.5);
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 10px 26px rgba(32, 27, 20, 0.08);
  transform: translateY(-1px);
}

.choice-group input {
  flex: 0 0 auto;
  width: 1em;
  min-width: 1em;
  height: 1em;
  min-height: 1em;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(24, 25, 26, 0.42);
  border-radius: 2px;
  background: rgba(24, 25, 26, 0.1);
  accent-color: var(--amber);
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.choice-group input[type="radio"] {
  border-radius: 999px;
}

.choice-group input:checked {
  border-color: rgba(154, 101, 46, 0.88);
  background: var(--amber);
  box-shadow: 0 0 0 2px rgba(241, 189, 104, 0.16);
}

.choice-group label:has(input:checked) {
  border-color: rgba(154, 101, 46, 0.46);
  background: rgba(241, 189, 104, 0.2);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.68);
}

.booking-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  max-height: calc(100vh - 116px);
  overflow: auto;
  padding: clamp(32px, 3vw, 42px);
}

.size-modal[hidden],
.solo-duration-modal[hidden],
.ensemble-duration-modal[hidden],
.request-modal[hidden] {
  display: none;
}

.size-modal,
.solo-duration-modal,
.ensemble-duration-modal,
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(12, 13, 12, 0.46);
  padding: 24px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.size-dialog,
.solo-duration-dialog,
.request-dialog {
  width: min(560px, 100%);
  border: 1px solid rgba(255, 250, 241, 0.46);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 241, 0.56)),
    rgba(255, 250, 241, 0.7);
  box-shadow: 0 36px 100px rgba(11, 12, 11, 0.28);
  padding: clamp(28px, 4vw, 42px);
}

.size-dialog h2,
.solo-duration-dialog h2,
.request-dialog h2 {
  margin-bottom: 24px;
  color: #1f211f;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.solo-duration-dialog {
  width: min(420px, 100%);
}

.solo-duration-dialog h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.solo-duration-field {
  display: grid;
  gap: 8px;
  color: #292724;
  font-weight: 780;
}

.solo-duration-field input {
  min-height: 48px;
  border: 1px solid rgba(24, 25, 26, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: #25231f;
  font: inherit;
  font-weight: 720;
  padding: 12px 14px;
}

.solo-duration-help {
  margin: 12px 0 0;
  color: rgba(37, 35, 31, 0.64);
  font-size: 0.86rem;
  font-weight: 560;
  line-height: 1.55;
}

.duration-error {
  margin: 8px 0 0;
  color: #9b3c2d;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.request-dialog {
  width: min(520px, 100%);
}

.request-dialog p:not(.eyebrow) {
  margin-bottom: 24px;
  color: rgba(37, 35, 31, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

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

.size-field-grid label {
  display: grid;
  gap: 8px;
  color: #292724;
  font-weight: 760;
}

.size-field-grid input {
  border: 1px solid rgba(24, 25, 26, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: #25231f;
  font: inherit;
  font-weight: 620;
  padding: 13px 14px;
}

.size-field-grid input::placeholder {
  color: rgba(37, 35, 31, 0.42);
}

html[lang="en"] .size-field-grid input::placeholder {
  font-size: 0.78rem;
}

.size-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

.size-actions .button.secondary {
  border-color: rgba(24, 25, 26, 0.18);
  background: rgba(255, 255, 255, 0.6);
  color: #292724;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.64);
}

.size-actions .button.secondary:hover {
  border-color: rgba(154, 101, 46, 0.34);
  background: rgba(255, 250, 241, 0.86);
  color: #1f211f;
}

.booking-panel h2 {
  margin-bottom: 20px;
  color: #1e1d1a;
  font-size: clamp(1.02rem, 1.22vw, 1.24rem);
  line-height: 1.12;
  text-transform: none;
}

html[lang="zh"] .booking-panel h2 {
  overflow: hidden;
  font-size: clamp(1.02rem, 1.08vw, 1.16rem);
  line-height: 1.12;
  text-overflow: clip;
  text-transform: none;
  white-space: nowrap;
}

.booking-panel ul {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.booking-panel li {
  position: relative;
  padding-left: 24px;
  color: #5e554b;
  line-height: 1.5;
}

.booking-panel li::before {
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

.panel-signal {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  height: 112px;
  margin-bottom: 24px;
  border: 1px solid rgba(24, 25, 26, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 24%, rgba(241, 189, 104, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(241, 232, 214, 0.28)),
    rgba(255, 250, 241, 0.45);
  padding: 22px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.58),
    inset 0 -18px 40px rgba(77, 59, 38, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  backdrop-filter: blur(18px) saturate(1.12);
}

.panel-signal::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent),
    repeating-linear-gradient(90deg, rgba(24, 25, 26, 0.06) 0 1px, transparent 1px 34px);
  opacity: 0.58;
  content: "";
}

.panel-signal span,
.panel-signal i,
.panel-signal b {
  position: relative;
  display: block;
  height: 16px;
  overflow: hidden;
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.52);
}

.panel-signal span::before,
.panel-signal i::before,
.panel-signal b::before {
  position: absolute;
  inset: 0 auto 0 0;
  background:
    linear-gradient(90deg, rgba(83, 124, 116, 0.62), rgba(241, 189, 104, 0.82)),
    rgba(241, 189, 104, 0.56);
  content: "";
}

.panel-signal span::before {
  width: 72%;
}

.panel-signal i::before {
  width: 54%;
}

.panel-signal b::before {
  width: 84%;
}

.panel-signal span::after,
.panel-signal i::after,
.panel-signal b::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(129, 76, 66, 0.54);
  box-shadow: 0 0 0 4px rgba(129, 76, 66, 0.08);
  transform: translateY(-50%);
  content: "";
}

.booking-readiness {
  display: grid;
  gap: 13px;
  margin: 26px 0 22px;
  border: 1px solid rgba(24, 25, 26, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(255, 250, 241, 0.28)),
    rgba(255, 250, 241, 0.44);
  padding: 16px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.56),
    0 16px 38px rgba(32, 27, 20, 0.08);
}

.readiness-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.readiness-head span {
  color: var(--oxide);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.readiness-head strong {
  color: #1d211f;
  font-size: 1.5rem;
  line-height: 1;
}

.readiness-meter {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: rgba(24, 25, 26, 0.1);
  box-shadow: inset 0 1px 2px rgba(28, 24, 18, 0.16);
}

.readiness-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--amber-bright));
  transition: width 220ms ease;
}

.booking-readiness p {
  margin: 0;
  color: #61594f;
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.45;
}

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

.readiness-checks span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(24, 25, 26, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: #6c6258;
  padding: 7px 9px;
  font-size: 0.78rem;
  font-weight: 760;
}

.readiness-checks i {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(24, 25, 26, 0.2);
}

.readiness-checks span.is-done {
  border-color: rgba(89, 122, 115, 0.24);
  background: rgba(89, 122, 115, 0.12);
  color: #25463f;
}

.readiness-checks span.is-done i {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(89, 122, 115, 0.12);
}

.booking-submit {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
  color: #746a5f;
  font-size: 0.88rem;
  line-height: 1.45;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #191918;
  color: #fffaf1;
  padding: clamp(34px, 4vw, 56px) max(24px, calc((100vw - 1180px) / 2)) clamp(24px, 3vw, 38px);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 250, 241, 0.035), transparent 42%),
    radial-gradient(circle at 76% 12%, rgba(216, 157, 74, 0.1), transparent 32%);
  content: "";
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: clamp(26px, 3.4vw, 42px);
}

.footer-socials a {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.06);
  color: rgba(255, 250, 241, 0.92);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-socials svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-socials a:hover {
  border-color: rgba(241, 189, 104, 0.42);
  background: rgba(255, 250, 241, 0.12);
  color: var(--amber-bright);
  transform: translateY(-2px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 clamp(16px, 2vw, 26px);
  color: #fffaf1;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1;
  letter-spacing: 0;
}

.footer-contact dl {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin: 0;
}

.footer-contact dt {
  margin-bottom: 5px;
  color: #fffaf1;
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  font-weight: 900;
  line-height: 1.1;
}

.footer-contact dd {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(0.82rem, 0.98vw, 0.96rem);
  font-weight: 560;
  line-height: 1.5;
}

.footer-contact a,
.footer-support a {
  color: inherit;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-contact a:hover,
.footer-support a:hover {
  color: var(--amber-bright);
}

.footer-support nav {
  display: grid;
  gap: clamp(10px, 1.4vw, 16px);
}

.footer-support a {
  width: fit-content;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(0.86rem, 1.08vw, 1rem);
  font-weight: 650;
  line-height: 1.2;
}

.footer-bottom {
  margin-top: clamp(30px, 3.8vw, 46px);
  border-top: 1px solid rgba(255, 250, 241, 0.72);
  padding-top: clamp(16px, 2vw, 24px);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 250, 241, 0.92);
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  font-weight: 860;
}

.lang-zh {
  display: none;
}

html[lang="zh-CN"] .lang-en {
  display: none;
}

html[lang="zh-CN"] .lang-zh {
  display: inline;
}

.legal-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(241, 189, 104, 0.12), transparent 30%),
    linear-gradient(135deg, #f6f0e6 0%, #eee5d8 100%);
}

.legal-page {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0 72px;
}

.legal-hero {
  margin-bottom: 24px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 24px;
  border: 1px solid rgba(62, 53, 43, 0.16);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 250, 241, 0.66);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.legal-back:hover {
  border-color: rgba(216, 157, 74, 0.42);
  background: rgba(255, 250, 241, 0.95);
  color: var(--oxide);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 6px 0 14px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.4vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #6d6257;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  font-weight: 560;
  line-height: 1.7;
}

.legal-card {
  display: grid;
  gap: 24px;
  border: 1px solid rgba(62, 53, 43, 0.1);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 250, 241, 0.8);
  box-shadow: 0 26px 70px rgba(70, 54, 35, 0.12);
}

.legal-updated {
  margin: 0;
  color: var(--amber-deep);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-section {
  border-top: 1px solid rgba(62, 53, 43, 0.1);
  padding-top: 22px;
}

.legal-updated + .legal-section,
.faq-card .legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  margin: 0 0 10px;
  color: var(--oxide);
  font-size: clamp(1.04rem, 1.45vw, 1.32rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-section p {
  margin: 0;
  color: #4f4942;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 540;
  line-height: 1.78;
}

.legal-section a {
  color: var(--oxide);
  font-weight: 840;
  text-decoration-color: rgba(139, 70, 55, 0.32);
  text-underline-offset: 3px;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 90;
  color: #fffaf1;
}

.chat-bubble,
.chat-close,
.chat-faq,
.chat-action {
  font: inherit;
}

.chat-bubble {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  padding: 9px 15px 9px 11px;
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.14), rgba(255, 250, 241, 0.06)),
    rgba(30, 31, 30, 0.72);
  color: #fffaf1;
  box-shadow:
    0 16px 44px rgba(9, 10, 9, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  backdrop-filter: blur(20px) saturate(1.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.chat-bubble:hover {
  border-color: rgba(241, 189, 104, 0.56);
  transform: translateY(-2px);
  box-shadow:
    0 20px 54px rgba(9, 10, 9, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-bubble-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(241, 189, 104, 0.16);
  box-shadow: inset 0 0 0 1px rgba(241, 189, 104, 0.42);
}

.chat-bubble-icon::before,
.chat-bubble-icon::after {
  position: absolute;
  display: block;
  content: "";
}

.chat-bubble-icon::before {
  inset: 7px 6px 9px;
  border: 2px solid var(--amber-bright);
  border-radius: 7px;
  background: transparent;
}

.chat-bubble-icon::after {
  right: 7px;
  bottom: 7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--amber-bright);
  border-bottom: 2px solid var(--amber-bright);
  border-radius: 0 0 4px 0;
  background: rgba(30, 31, 30, 0.72);
  transform: rotate(38deg);
}

.chat-bubble-text {
  font-size: 0.92rem;
  font-weight: 780;
  white-space: nowrap;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(392px, calc(100vw - 32px));
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.18), rgba(255, 250, 241, 0.08)),
    rgba(28, 31, 29, 0.82);
  box-shadow:
    0 30px 82px rgba(8, 9, 8, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(26px) saturate(1.22);
  backdrop-filter: blur(26px) saturate(1.22);
  transform-origin: right bottom;
  animation: chat-panel-in 180ms ease both;
}

.chat-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.chat-panel h2 {
  max-width: 290px;
  margin: 3px 0 0;
  color: #fffaf1;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.04;
}

.chat-close {
  min-width: 58px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 250, 241, 0.08);
  color: rgba(255, 250, 241, 0.82);
  cursor: pointer;
}

.chat-subtitle,
.chat-message,
.chat-answer p {
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.chat-subtitle {
  margin: 10px 0 14px;
}

.chat-thread {
  display: grid;
  gap: 10px;
}

.chat-message,
.chat-answer {
  margin: 0;
  border: 1px solid rgba(255, 250, 241, 0.13);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 250, 241, 0.07);
}

.chat-answer {
  background: rgba(241, 189, 104, 0.12);
}

.chat-answer span {
  display: block;
  margin-bottom: 6px;
  color: var(--amber-bright);
  font-size: 0.68rem;
  font-weight: 840;
  text-transform: uppercase;
}

.chat-answer strong {
  display: block;
  color: #fffaf1;
  font-size: 0.96rem;
  line-height: 1.3;
}

.chat-answer p {
  margin: 6px 0 0;
}

.chat-faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.chat-faq {
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 250, 241, 0.07);
  color: rgba(255, 250, 241, 0.84);
  font-size: 0.78rem;
  font-weight: 720;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.chat-faq:hover,
.chat-faq.is-active {
  border-color: rgba(241, 189, 104, 0.58);
  background: rgba(241, 189, 104, 0.18);
  color: #fffaf1;
  transform: translateY(-1px);
}

.chat-input {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 250, 241, 0.08);
  color: #fffaf1;
  font: inherit;
  line-height: 1.45;
  outline: none;
}

.chat-input::placeholder {
  color: rgba(255, 250, 241, 0.48);
}

.chat-input:focus {
  border-color: rgba(241, 189, 104, 0.66);
  box-shadow: 0 0 0 3px rgba(241, 189, 104, 0.12);
}

.chat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.chat-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 0.86rem;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.chat-action.primary {
  border: 0;
  background: var(--amber-bright);
  color: #1a1610;
}

.chat-action.secondary {
  border: 1px solid rgba(255, 250, 241, 0.22);
  background: rgba(255, 250, 241, 0.08);
  color: #fffaf1;
}

@keyframes chat-panel-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (hover: hover) {
  .work-card:hover {
    border-color: rgba(216, 157, 74, 0.42);
    box-shadow: 0 24px 70px rgba(55, 43, 25, 0.18);
    transform: translateY(-5px);
  }

  .work-card:hover {
    border-color: rgba(255, 250, 241, 0.28);
  }

  .work-card:hover::before {
    opacity: 1;
  }

  .offer-button:hover {
    background: #ffd084;
    color: #1a1610;
    box-shadow: 0 16px 36px rgba(241, 189, 104, 0.28);
  }

  .track-row:hover {
    border-color: rgba(241, 189, 104, 0.36);
    background: rgba(255, 250, 241, 0.1);
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .quick-proof,
  .feature-grid,
  .room-list,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audio-showcase {
    grid-template-areas:
      "deck"
      "console";
    grid-template-columns: 1fr;
  }

  .analog-face {
    grid-template-columns: 1fr;
  }

  .reel-row {
    grid-template-columns: minmax(120px, 1fr) 90px minmax(120px, 1fr);
  }

  .transport-row {
    grid-template-columns: 1fr 1fr;
  }

  .knob-bank {
    grid-column: 1 / -1;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

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

  .booking-panel {
    position: relative;
    top: auto;
  }

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

  .process-strip li {
    min-height: auto;
    grid-template-rows: auto;
    gap: 14px;
  }

  .process-strip span {
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 20px;
  }

  .brand strong {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.25rem);
    line-height: 1.02;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .booking-shell {
    padding: 110px 18px 64px;
  }

  html[lang="en"] .booking-intro h1 {
    white-space: normal;
  }

  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .legal-page {
    width: calc(100% - 36px);
    padding: 108px 0 54px;
  }

  .legal-back {
    margin-bottom: 18px;
  }

  .legal-hero {
    margin-bottom: 20px;
  }

  .legal-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .legal-card {
    gap: 20px;
    padding: 22px;
  }

  .footer-socials {
    gap: 8px;
    margin-bottom: 24px;
  }

  .footer-socials a {
    width: 30px;
    height: 30px;
  }

  .site-footer h2 {
    margin-bottom: 16px;
    font-size: clamp(1.45rem, 8vw, 2.15rem);
  }

  .footer-contact dl {
    gap: 16px;
  }

  .footer-support nav {
    gap: 10px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 16px;
  }

  .booking-intro h1 {
    font-size: clamp(2.4rem, 11vw, 3.55rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading,
  .session-layout,
  .philosophy {
    grid-template-columns: 1fr;
  }

  .field-grid.two {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    grid-template-columns: 1fr;
  }

  .estimate-breakdown {
    border-top: 1px solid rgba(24, 25, 26, 0.08);
    border-left: 0;
    padding-top: 14px;
    padding-left: 0;
  }

  .booking-form fieldset,
  .booking-panel {
    padding: 22px;
  }

  .readiness-checks {
    grid-template-columns: 1fr;
  }

  .quick-proof,
  .feature-grid,
  .room-list,
  .work-grid,
  .audio-showcase {
    grid-template-areas:
      "deck"
      "console";
    grid-template-columns: 1fr;
  }

  .analog-reel-row {
    grid-template-columns: 92px minmax(60px, 1fr) 92px;
    min-height: 146px;
    padding: 18px;
  }

  .analog-readout {
    grid-template-columns: 1fr;
  }

  .analog-knobs {
    justify-content: start;
  }

  .reel-row {
    grid-template-columns: minmax(88px, 1fr) 58px minmax(88px, 1fr);
  }

  .headblock-row {
    grid-template-columns: 54px 1fr 54px;
  }

  .guide-right {
    display: none;
  }

  .transport-row {
    grid-template-columns: 1fr;
  }

  .now-playing {
    grid-template-columns: 112px 1fr;
  }

  .audio-current-cover {
    width: 112px;
  }

  .quick-proof div {
    min-height: 112px;
  }

  .feature-card {
    min-height: auto;
  }

  .fader-bank {
    width: min(100%, 280px);
  }

  .final-cta {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
