:root {
  --ink: #171717;
  --muted: #666c76;
  --line: #e4e0d8;
  --paper: #f7f4ef;
  --surface: #fffdf9;
  --surface-2: #f0f5f4;
  --teal: #0a8c89;
  --coral: #e5554f;
  --gold: #d99a27;
  --green: #25835b;
  --plum: #493657;
  --shadow: 0 22px 60px rgba(30, 24, 20, 0.12);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 120;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.55), rgba(247, 244, 239, 0.96)),
    var(--paper);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 67px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(247, 244, 239, 0.9);
  border-bottom: 1px solid rgba(228, 224, 216, 0.82);
  backdrop-filter: blur(18px);
  transition:
    min-height 260ms ease,
    padding 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.scrolled {
  min-height: 56px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(247, 244, 239, 0.96);
  box-shadow: 0 12px 32px rgba(30, 24, 20, 0.08);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-weight: 900;
  transition:
    width 260ms ease,
    height 260ms ease;
}

.site-header.scrolled .brand-mark {
  width: 32px;
  height: 32px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.top-nav a,
.qq-link,
.header-action,
.secondary-action,
.primary-action,
.submit-button,
.ghost-button,
.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.top-nav a {
  color: var(--muted);
}

.top-nav a:hover {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.top-nav a.is-active,
.top-nav a[aria-current="location"] {
  color: var(--ink);
  background: #fff;
  border-color: var(--teal);
  box-shadow: inset 0 -3px 0 var(--teal);
}

.qq-link {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(10, 140, 137, 0.22);
}

.header-action {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 8px 20px rgba(229, 85, 79, 0.22);
}

.header-action:hover {
  background: #ce433e;
}

.secondary-header-action {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
}

.secondary-header-action:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.qq-link.disabled {
  color: var(--muted);
  background: #fff;
  border-color: var(--line);
  box-shadow: none;
  pointer-events: none;
}

.service-notice {
  position: relative;
  z-index: 20;
  padding: 12px clamp(16px, 4vw, 48px);
  color: #7a271f;
  background: #fff0ed;
  border-bottom: 1px solid rgba(229, 85, 79, 0.28);
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.service-notice[hidden] {
  display: none;
}

.qq-link svg,
.header-action svg,
.primary-action svg,
.secondary-action svg,
.submit-button svg,
.ghost-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

main {
  overflow: hidden;
}

.hero-copy {
  width: min(780px, 100%);
  padding-bottom: clamp(24px, 5vw, 64px);
}

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

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 72px;
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action {
  --magnet-x: 0px;
  --magnet-y: 0px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 30px rgba(229, 85, 79, 0.28);
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition:
    transform 180ms ease-out,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.secondary-action {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-meter {
  position: absolute;
  left: clamp(16px, 5vw, 72px);
  right: clamp(16px, 5vw, 72px);
  bottom: 32px;
  display: flex;
  gap: 8px;
  max-width: 520px;
}

.hero-meter span {
  height: 3px;
  flex: 1;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 99px;
  overflow: hidden;
}

.hero-meter span::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  background: #fff;
}

.hero-meter span.active::before {
  width: 100%;
  transition: width 5200ms linear;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  overflow: hidden;
  min-height: max(760px, calc(100vh - 67px));
  align-items: center;
  padding: clamp(72px, 7vw, 104px) clamp(16px, 4vw, 64px) clamp(64px, 7vw, 96px);
  background: #090b0f;
  --mouse-x: 50%;
  --mouse-y: 50%;
}

.portfolio-page .hero {
  min-height: max(520px, calc(100svh - 180px));
  padding-top: clamp(44px, 5vw, 56px);
  padding-right: clamp(20px, 3vw, 44px);
  padding-bottom: clamp(44px, 5vw, 56px);
  padding-left: clamp(20px, 3vw, 44px);
}

.portfolio-page .hero-photo-wall {
  height: min(700px, calc(100svh - 250px));
  min-height: 480px;
}

.portfolio-page .hero-layout {
  grid-template-columns: minmax(280px, 0.55fr) minmax(560px, 1.45fr);
  gap: clamp(24px, 3vw, 44px);
  width: min(1540px, 100%);
}

.portfolio-page .portfolio-section {
  margin-top: 48px;
}

.service-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 88px);
  min-height: 330px;
  padding: clamp(52px, 8vw, 92px) max(16px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: #202124;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-intro > div:first-child {
  max-width: 720px;
}

.service-intro h1 {
  margin-bottom: 16px;
  font-size: 56px;
  line-height: 1.04;
}

.service-intro > div:first-child > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.service-intro-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.service-intro .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.booking-page .overview-band {
  margin-top: -34px;
}

.booking-page .privacy-section {
  margin-top: 76px;
}

.hero-slider,
.hero-slide,
.hero-slide-back,
.hero-texture,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -4;
  top: -12vh;
  bottom: -12vh;
  overflow: hidden;
  will-change: transform;
}

.hero-slide {
  opacity: 0;
  overflow: hidden;
  inset: -8%;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.22) contrast(1.08) brightness(0.62);
  transform: scale(1.16);
  transition:
    opacity 1400ms ease,
    visibility 1000ms ease;
  visibility: hidden;
}

.hero-slide.active {
  opacity: 1;
  animation: heroBackdropEnter 2400ms cubic-bezier(0.16, 0.72, 0.2, 1) both;
  visibility: visible;
}

.hero-slide-back {
  inset: -7%;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.18) contrast(1.08) brightness(0.7);
  transform: scale(1.08);
}

.hero-slide.active .hero-slide-back {
  animation: heroDrift 7200ms ease forwards;
}

.hero-slide-frame {
  position: absolute;
  top: clamp(98px, 16vh, 170px);
  right: clamp(18px, 9vw, 128px);
  width: min(38vw, 520px);
  min-width: 300px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.45),
    0 0 0 10px rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateX(90px) rotate(4deg) scale(0.94);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.18, 0.78, 0.22, 1);
}

.hero-slide.previous .hero-slide-frame {
  transform: translateX(-54px) rotate(-3deg) scale(0.9);
}

.hero-slide.active .hero-slide-frame {
  opacity: 0.96;
  transform: translateX(0) rotate(2.5deg) scale(1);
}

.hero-slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-slide.active .hero-slide-frame img {
  animation: heroImagePush 5200ms ease forwards;
}

.hero-slide-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 6px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

.hero-slide-caption span {
  width: fit-content;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-slide-caption strong {
  font-size: 26px;
}

.hero-texture {
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 58px),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 50%, transparent 58%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.hero-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 420px at var(--mouse-x) var(--mouse-y), rgba(229, 85, 79, 0.2), transparent 68%),
    radial-gradient(circle 760px at var(--mouse-x) var(--mouse-y), rgba(217, 154, 39, 0.1), transparent 76%);
  opacity: 0.62;
  transition: opacity 220ms ease-out;
}

.hero:hover .hero-texture::before {
  opacity: 1;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.92) 0%, rgba(7, 8, 11, 0.72) 34%, rgba(7, 8, 11, 0.28) 72%, rgba(7, 8, 11, 0.54) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.9), rgba(7, 8, 11, 0.03) 48%, rgba(7, 8, 11, 0.34));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  padding-bottom: 0;
  color: #fff;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > p:not(.eyebrow),
.hero-copy .hero-actions > a,
.hero-copy .hero-category-rail {
  --hero-enter-x: 0px;
  --hero-enter-y: 24px;
  --magnet-x: 0px;
  --magnet-y: 0px;
  opacity: 1;
  transform: none;
}

.js-motion .hero-copy > .eyebrow,
.js-motion .hero-copy > h1,
.js-motion .hero-copy > p:not(.eyebrow),
.js-motion .hero-copy .hero-actions > a,
.js-motion .hero-copy .hero-category-rail {
  opacity: 0;
  transform: translate(var(--hero-enter-x), var(--hero-enter-y));
}

.js-motion .hero-copy.in-view > .eyebrow {
  --hero-enter-y: 0px;
  animation: heroFadeInUp 1200ms ease forwards;
  animation-delay: 260ms;
}

.js-motion .hero-copy.in-view > h1 {
  animation: heroFadeInUp 1320ms cubic-bezier(0.16, 0.72, 0.2, 1) forwards;
  animation-delay: 620ms;
}

.js-motion .hero-copy.in-view > p:not(.eyebrow) {
  --hero-enter-y: 0px;
  animation: heroFadeInUp 1220ms ease forwards;
  animation-delay: 1020ms;
}

.js-motion .hero-copy.in-view .hero-actions > a {
  --hero-enter-y: 0px;
  animation: heroFadeInUp 1260ms cubic-bezier(0.16, 0.72, 0.2, 1) forwards;
  animation-delay: 1420ms;
}

.js-motion .hero-copy.in-view .hero-category-rail {
  --hero-enter-y: 0px;
  animation: heroFadeInUp 1160ms cubic-bezier(0.16, 0.72, 0.2, 1) forwards;
  animation-delay: 1780ms;
}

.js-motion .hero-copy.in-view .hero-actions > a:first-child {
  --hero-enter-x: -44px;
}

.js-motion .hero-copy.in-view .hero-actions > a:last-child {
  --hero-enter-x: 44px;
}

.hero-copy h1 {
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.52);
}

.hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.hero-category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero-category-rail span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-photo-wall {
  position: relative;
  z-index: 4;
  height: min(760px, calc(100vh - 116px));
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  opacity: 1;
  transform: none;
  mask-image: linear-gradient(180deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.hero-photo-wall::before,
.hero-photo-wall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  height: 92px;
  pointer-events: none;
}

.hero-photo-wall::before {
  top: 0;
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.72), transparent);
}

.hero-photo-wall::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(9, 11, 15, 0.72), transparent);
}

.hero-photo-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 24px);
  height: 100%;
  transform: rotate(-1.2deg);
}

.hero-photo-column {
  min-width: 0;
  overflow: hidden;
}

.hero-photo-column.down {
  padding-top: 48px;
}

.hero-photo-track {
  display: grid;
  gap: clamp(12px, 1.8vw, 24px);
  will-change: transform;
  animation: heroColumnUp 36s linear infinite;
}

.hero-photo-column.down .hero-photo-track {
  animation-name: heroColumnDown;
  animation-duration: 17s;
}

.hero-photo-card {
  --hero-card-delay: 0ms;
  --hover-x: 50%;
  --hover-y: 50%;
  --hover-rotate-x: 0deg;
  --hover-rotate-y: 0deg;
  position: relative;
  min-height: clamp(260px, 37vh, 440px);
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.045) inset;
  cursor: zoom-in;
  opacity: 1;
  transform: none;
  animation: heroCardEnter 1900ms cubic-bezier(0.16, 0.72, 0.2, 1) both;
  animation-delay: calc(760ms + var(--hero-card-delay));
}

.portfolio-page .hero-photo-card {
  height: clamp(150px, calc((100svh - 390px) / 3), 210px);
  min-height: 0;
  z-index: 1;
  translate: 0 0;
  scale: 1;
  transition:
    translate 260ms cubic-bezier(0.16, 0.72, 0.2, 1),
    scale 260ms cubic-bezier(0.16, 0.72, 0.2, 1),
    border-color 220ms ease,
    box-shadow 260ms ease;
}

.portfolio-page .hero-photo-column.down {
  padding-top: 16px;
}

.portfolio-page .hero-photo-column.up .hero-photo-card {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.portfolio-page .hero-photo-column.down .hero-photo-card {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.portfolio-page .hero-photo-column.up .hero-photo-card img {
  min-height: 0;
}

.portfolio-page .hero-photo-card:hover,
.portfolio-page .hero-photo-card:focus-visible {
  z-index: 4;
  translate: 0 -6px;
  scale: 1.035;
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.hero-photo-card.active {
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: perspective(900px) rotateX(var(--hover-rotate-x)) rotateY(var(--hover-rotate-y)) scale(1.04);
  transition:
    filter 420ms ease,
    transform 240ms ease-out;
}

.portfolio-page .hero-photo-card img {
  min-height: 0;
}

.hero-photo-card:hover img,
.hero-photo-card:focus-visible img {
  filter: saturate(1.18) contrast(1.08) brightness(1.06);
  transform: perspective(900px) rotateX(var(--hover-rotate-x)) rotateY(var(--hover-rotate-y)) scale(1.12);
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle 180px at var(--hover-x) var(--hover-y), rgba(255, 255, 255, 0.3), transparent 72%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms ease;
}

.hero-photo-card:hover::before,
.hero-photo-card:focus-visible::before {
  opacity: 1;
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 46%),
    linear-gradient(120deg, transparent 0 54%, rgba(255, 255, 255, 0.12) 62%, transparent 70%);
  opacity: 0.94;
}

.hero-photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 7px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
  opacity: 0.84;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.hero-photo-card:hover figcaption,
.hero-photo-card:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.hero-photo-card span {
  width: fit-content;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-photo-card strong {
  font-size: 19px;
  line-height: 1.2;
}

.hero-film {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 14px;
  padding: 14px;
  color: #fff;
  background: rgba(13, 16, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-film-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-film-head b {
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.hero-film-strip {
  display: grid;
  gap: 10px;
}

.hero-film-frame {
  position: relative;
  min-height: 78px;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-align: left;
  transform: translateX(0);
  transition:
    border-color 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.hero-film-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16));
}

.hero-film-frame span,
.hero-film-frame b {
  position: relative;
  z-index: 1;
  display: block;
  padding-left: 12px;
}

.hero-film-frame span {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.hero-film-frame b {
  padding-top: 6px;
  padding-bottom: 10px;
  font-size: 15px;
}

.hero-film-frame:hover,
.hero-film-frame.active {
  border-color: rgba(255, 255, 255, 0.72);
  filter: saturate(1.08) contrast(1.05);
  transform: translateX(-8px);
}

.hero-meter {
  z-index: 4;
  max-width: 680px;
}

.hero-meter span {
  height: 4px;
}

@keyframes heroBackdropEnter {
  from {
    opacity: 0;
    transform: scale(1.26);
  }

  to {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes heroWallEnter {
  from {
    opacity: 0;
    transform: translateX(54px) scale(0.96);
  }

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

@keyframes heroCardEnter {
  from {
    opacity: 0;
    transform: translateY(120px) scale(0.82);
  }

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

@keyframes heroColumnUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes heroColumnDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.11) translateX(0);
  }

  to {
    transform: scale(1.18) translateX(-1.8%);
  }
}

@keyframes heroImagePush {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translate(
      calc(var(--hero-enter-x, 0px) + var(--magnet-x, 0px)),
      calc(var(--hero-enter-y, 24px) + var(--magnet-y, 0px))
    );
  }

  to {
    opacity: 1;
    transform: translate(var(--magnet-x, 0px), var(--magnet-y, 0px));
  }
}

.overview-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  margin: -42px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}

.stat {
  min-height: 94px;
  display: grid;
  gap: 6px;
  place-items: center;
  background: var(--surface);
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.stat strong {
  font-size: 34px;
}

.section-grid,
.booking-area,
.manage-area,
.table-area,
.portfolio-section,
.signature-band {
  width: min(1120px, calc(100% - 32px));
  margin: 76px auto 0;
}

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

.section-title h2 {
  margin-bottom: 0;
  font-size: 42px;
  letter-spacing: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 235px;
  gap: 14px;
  perspective: 1000px;
}

.gallery-empty {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px dashed #d7d2c9;
  border-radius: 8px;
  font-weight: 900;
}

.work-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 28px;
  --border-x: 0px;
  --border-y: 0px;
  --card-delay: 0ms;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
  box-shadow: 0 14px 32px rgba(24, 21, 18, 0.12);
  cursor: pointer;
  opacity: 0;
  transform: translateY(var(--lift-y)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition:
    opacity 700ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
  transition-delay: var(--card-delay), 0ms, 0ms;
}

.work-card.in-view {
  --lift-y: 0px;
  opacity: 1;
}

.work-card:first-child {
  grid-row: span 2;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  opacity: 0;
  transform: translate3d(var(--border-x), var(--border-y), 34px) scale(0.98);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1.02);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.work-card:hover img {
  transform: translateZ(18px) scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.work-card:hover {
  --lift-y: -6px;
  box-shadow: 0 24px 54px rgba(24, 21, 18, 0.18);
}

.work-card:hover::before {
  opacity: 1;
  transform: translate3d(var(--border-x), var(--border-y), 34px) scale(1);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.04) 62%),
    linear-gradient(110deg, transparent 0 44%, rgba(255, 255, 255, 0.12) 50%, transparent 58%);
  opacity: 0.98;
}

.work-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  transform: translateZ(42px);
}

.work-meta span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.work-meta h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.work-meta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-pill {
  min-height: 36px;
  color: var(--muted);
  background: #fff;
  border-color: var(--line);
  cursor: pointer;
  font-weight: 800;
}

.filter-pill.active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.signature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(10, 140, 137, 0.94), rgba(73, 54, 87, 0.94)),
    var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signature-band .eyebrow {
  color: #ffe1a3;
}

.signature-band h2 {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.12;
}

.signature-band p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
}

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

.event-card,
.package-card,
.booking-form,
.order-panel,
.manage-form,
.table-panel,
.admin-table-panel,
.admin-lock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(30, 24, 20, 0.055);
}

.event-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.event-card.ended {
  color: var(--muted);
  background: #f1ede6;
  opacity: 0.72;
}

.event-card.ended::before {
  background: #c8c1b5;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}

.status-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.status-pill.closed {
  background: var(--muted);
}

.event-card h3,
.package-card h3,
.order-panel h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.event-card p,
.package-card p,
.order-card p {
  color: var(--muted);
  line-height: 1.65;
}

.event-card time {
  font-weight: 900;
}

.booking-area {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  scroll-margin-top: 90px;
}

.booking-area .section-title {
  grid-column: 1 / -1;
}

.booking-form,
.manage-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.booking-form {
  align-self: start;
  align-content: start;
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.booking-form.slot-selection-active {
  border-color: rgba(10, 140, 137, 0.62);
  animation: bookingSelectionPulse 900ms ease-out 2;
}

.booking-selection-hint {
  margin: 0;
  padding: 12px 14px;
  color: #15583f;
  background: #edf9f3;
  border: 1px solid rgba(37, 131, 91, 0.28);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.booking-selection-hint[hidden] {
  display: none;
}

@keyframes bookingSelectionPulse {
  0%,
  100% {
    box-shadow: 0 10px 26px rgba(30, 24, 20, 0.055);
  }

  45% {
    box-shadow: 0 0 0 7px rgba(10, 140, 137, 0.14), 0 18px 38px rgba(10, 92, 89, 0.14);
  }
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d7d2c9;
  border-radius: 8px;
  outline: none;
}

textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 140, 137, 0.12);
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 140, 137, 0.72);
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.privacy-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.privacy-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.privacy-consent a {
  margin: 0 3px;
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-message {
  min-height: 1.5em;
  margin: 0;
  color: var(--coral);
  font-weight: 800;
}

.wide-field,
.submit-button,
.manage-form > label,
.manage-actions,
.schedule-admin,
.gallery-admin {
  grid-column: 1 / -1;
}

.submit-button,
.ghost-button {
  cursor: pointer;
  font-weight: 900;
}

.submit-button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition:
    transform 180ms ease-out,
    background-color 180ms ease,
    border-color 180ms ease;
}

.submit-button:hover {
  background: #000;
}

.ghost-button {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.order-panel {
  min-height: 100%;
  padding: 22px;
}

.success-card {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px;
  background: #f1fbf6;
  border: 1px solid rgba(37, 131, 91, 0.22);
  border-radius: 8px;
}

.success-card[hidden] {
  display: none;
}

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

.order-credentials {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.order-credentials div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 10px;
}

.order-credentials dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.order-credentials dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: Consolas, "SFMono-Regular", Menlo, monospace;
  font-weight: 800;
}

.success-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.success-actions > button {
  width: 100%;
}

.copy-hint {
  min-height: 22px;
  font-size: 13px;
}

.query-card {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.query-card h3 {
  margin-bottom: 6px;
}

.query-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.query-card .ghost-button {
  width: 100%;
}

.query-message {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
}

.query-results {
  display: grid;
  gap: 10px;
}

.query-result-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.query-result-card strong {
  line-height: 1.35;
}

.query-result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.query-result-card .order-status {
  justify-self: start;
}

.query-countdown {
  color: #8a5600 !important;
  font-weight: 800;
}

.empty-state {
  display: grid;
  min-height: 176px;
  place-items: center;
  color: var(--muted);
  border: 1px dashed #d7d2c9;
  border-radius: 8px;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.order-card strong {
  display: block;
  margin-bottom: 6px;
}

.order-card button {
  width: 100%;
  margin-top: 10px;
}

.table-panel,
.admin-table-panel {
  padding: clamp(16px, 3vw, 24px);
}

.admin-table-panel {
  margin-top: 16px;
}

.compact-title {
  align-items: start;
  margin-bottom: 14px;
}

.compact-title h3 {
  margin-bottom: 0;
  font-size: 22px;
}

.count-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  color: #744600;
  background: #fff1c7;
  border: 1px solid #e9ca71;
  border-radius: 999px;
  font-size: 12px;
  vertical-align: middle;
}

.count-badge[hidden] {
  display: none;
}

.admin-order-tools {
  display: grid;
  grid-template-columns: 180px minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.admin-order-tools .ghost-button {
  min-height: 44px;
}

.public-filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
}

.admin-table {
  min-width: 1080px;
}

.admin-table td:nth-child(4),
.admin-table td:nth-child(8),
.admin-table td:nth-child(9) {
  white-space: nowrap;
}

.data-table th,
.data-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  line-height: 1.5;
}

.data-table th {
  color: var(--muted);
  background: #f1ede6;
  font-size: 13px;
  font-weight: 900;
}

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

.slot-date-group th {
  padding-top: 18px;
  color: var(--ink);
  background: #eef7f5;
  border-top: 2px solid rgba(10, 140, 137, 0.34);
}

.slot-date-group:first-child th {
  border-top: 0;
}

.status-open,
.status-booked {
  font-weight: 900;
}

.status-open {
  color: var(--green);
}

.slot-row-open td {
  transition: background-color 180ms ease;
}

.slot-row-open:hover td {
  background: #f4fbf7;
}

.status-booked {
  color: var(--coral);
}

.order-status {
  font-weight: 900;
}

.order-status.pending {
  color: #a66800;
}

.order-status.confirmed {
  color: var(--green);
}

.order-status.cancelled {
  color: var(--muted);
}

.order-status.expired {
  color: var(--muted);
  background: #f1f1f1;
}

.note-cell {
  max-width: 260px;
  white-space: normal;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.table-action {
  min-height: 34px;
  padding: 0 10px;
  color: #fff;
  background: var(--coral);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
}

.confirm-action {
  background: var(--teal);
}

.table-action:disabled {
  cursor: default;
  color: var(--muted);
  background: #ebe7df;
}

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

.package-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.package-card strong {
  color: var(--coral);
  font-size: 30px;
}

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

.admin-lock {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.admin-lock p {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--coral);
  font-weight: 800;
}

.manage-area[hidden],
.admin-content[hidden],
.admin-lock[hidden] {
  display: none;
}

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

.upload-row {
  grid-template-columns: minmax(0, 1fr) 170px 220px auto;
  align-items: end;
}

.upload-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.upload-destinations label {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.upload-destinations input,
.work-toggle input {
  width: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--teal);
}

.upload-destinations span {
  color: var(--ink);
}

.work-library-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.work-library-toolbar p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.work-library-toolbar label {
  width: min(220px, 100%);
  flex: 0 0 auto;
}

.work-library-help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.schedule-admin,
.gallery-admin {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #f7f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-section-heading .compact-title {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.admin-section-heading .ghost-button {
  flex: 0 0 auto;
}

.admin-hint {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.work-data-field {
  display: none;
}

.event-data-field {
  display: none;
}

.event-manager {
  display: grid;
  gap: 12px;
}

.event-manager-empty {
  display: grid;
  min-height: 112px;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed #d7d2c9;
  border-radius: 8px;
}

.event-admin-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(30, 24, 20, 0.05);
}

.event-admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.event-admin-header h4 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-admin-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.admin-icon-button {
  display: grid;
  width: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: #f7f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.admin-icon-button:last-child {
  color: var(--coral);
}

.admin-icon-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.admin-icon-button svg {
  width: 18px;
  height: 18px;
}

.event-admin-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.event-admin-field {
  min-width: 0;
}

.event-field-wide {
  grid-column: span 2;
}

.work-manager {
  display: grid;
  gap: 12px;
}

.work-manager-empty {
  display: grid;
  min-height: 128px;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed #d7d2c9;
  border-radius: 8px;
}

.work-admin-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(30, 24, 20, 0.05);
  cursor: default;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.work-admin-card[draggable="true"] {
  cursor: grab;
}

.work-admin-card.dragging {
  opacity: 0.58;
  cursor: grabbing;
}

.work-admin-card.drag-over {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 140, 137, 0.12);
  transform: translateY(-2px);
}

.work-admin-thumb {
  position: relative;
  min-height: 108px;
  overflow: hidden;
  background-color: #171717;
  border-radius: 8px;
}

.work-admin-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-admin-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
}

.work-admin-order {
  position: absolute;
  left: 10px;
  bottom: 8px;
  z-index: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.work-admin-badges {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.work-admin-badges b {
  padding: 4px 7px;
  color: #17201b;
  background: rgba(242, 247, 243, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
}

.work-admin-card.is-featured .work-admin-badges b:last-child {
  color: #fff;
  background: rgba(185, 95, 87, 0.94);
}

.work-admin-fields {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(150px, 0.8fr));
  gap: 12px;
  align-content: center;
}

.work-toggle-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  width: fit-content;
  color: var(--ink);
  background: #f7f4ef;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.work-toggle span {
  color: var(--ink);
}

.work-admin-caption {
  grid-column: 1 / -1;
}

.work-admin-caption textarea {
  min-height: 76px;
  resize: vertical;
  font-family: inherit;
  line-height: 1.55;
}

.work-admin-caption textarea:disabled {
  color: #918b83;
  background: #eeeae3;
  cursor: not-allowed;
}

.work-admin-actions {
  display: grid;
  gap: 10px;
  align-content: center;
}

.drag-hint {
  display: inline-flex;
  justify-content: center;
  padding: 7px 10px;
  color: var(--muted);
  background: #f7f4ef;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.manage-form textarea {
  font-family: Consolas, "SFMono-Regular", Menlo, monospace;
}

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

.load-more-button {
  width: 100%;
  margin-top: 14px;
}

.admin-notifications {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.admin-notification-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.admin-notification-heading h3 {
  margin: 0;
  font-size: 20px;
}

.admin-notification-heading .eyebrow {
  margin-bottom: 5px;
}

.admin-notifications .admin-hint {
  min-height: 22px;
}

.notification-table {
  min-width: 900px;
}

.notification-error {
  max-width: 280px;
  color: var(--coral);
  white-space: normal;
  overflow-wrap: anywhere;
}

.notification-channel-list {
  display: grid;
  gap: 3px;
  min-width: 110px;
}

.notification-state {
  font-weight: 900;
}

.notification-state.sent {
  color: var(--green);
}

.notification-state.failed,
.notification-state.abandoned {
  color: var(--coral);
}

.notification-state.pending,
.notification-state.sending {
  color: #8a5600;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(22px, 6vw, 90px);
  align-items: start;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 6vw, 82px);
  background: var(--surface-2);
  border-top: 1px solid var(--line);
}

.privacy-section h2 {
  margin-bottom: 0;
}

.privacy-section > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 78px;
  padding: 30px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-record {
  white-space: nowrap;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(7, 8, 11, 0.88);
  backdrop-filter: blur(14px);
}

.lightbox-close {
  position: absolute;
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 3vw, 28px);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-frame {
  width: min(1040px, 100%);
  max-height: min(82vh, 860px);
  display: grid;
  gap: 14px;
  margin: 0;
  color: #fff;
}

.lightbox-frame img {
  width: 100%;
  max-height: calc(82vh - 118px);
  object-fit: contain;
  background: #101114;
  border-radius: 8px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.48);
}

.lightbox-frame figcaption {
  display: grid;
  gap: 6px;
}

.lightbox-frame span {
  width: fit-content;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lightbox-frame strong {
  font-size: 30px;
}

.lightbox-frame p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js-motion .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-photo-wall.reveal {
  opacity: 1;
  transform: none;
}

.js-motion .hero-photo-wall.reveal {
  opacity: 0;
  transform: translateX(34px) scale(0.98);
}

.js-motion .hero-photo-wall.reveal.in-view {
  animation: heroWallEnter 1900ms cubic-bezier(0.16, 0.72, 0.2, 1) 720ms forwards;
}

.motion-fallback .reveal,
.motion-fallback .hero-copy > .eyebrow,
.motion-fallback .hero-copy > h1,
.motion-fallback .hero-copy > p:not(.eyebrow),
.motion-fallback .hero-copy .hero-actions > a {
  animation: none !important;
  transition:
    opacity 700ms ease,
    transform 700ms ease !important;
}

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

  .hero-slide,
  .hero-slide-back,
  .hero-slide-frame,
  .hero-slide-frame img,
  .hero-film-frame,
  .hero-photo-wall,
  .hero-photo-card img,
  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > p:not(.eyebrow),
  .hero-copy .hero-actions > a,
  .hero-copy .hero-category-rail,
  .site-header,
  .brand-mark,
  .primary-action,
  .submit-button,
  .booking-form,
  .slot-book-button,
  .work-card img,
  .work-card,
  .work-card::before,
  .reveal,
  .hero-meter span.active::before {
    animation: none;
    transition: none;
  }

  .hero-slider,
  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > p:not(.eyebrow),
  .hero-copy .hero-actions > a,
  .hero-copy .hero-category-rail,
  .hero-photo-wall,
  .hero-photo-card img,
  .primary-action,
  .submit-button,
  .work-meta {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 981px) and (max-height: 850px) {
  .hero {
    min-height: calc(100svh - 96px);
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .hero-photo-wall {
    height: calc(100svh - 180px);
    min-height: 480px;
  }

  .hero-photo-card {
    min-height: 240px;
  }

  .hero-meter {
    bottom: 20px;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .portfolio-page .hero-layout {
    grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
    gap: 24px;
  }

  .portfolio-page .hero h1 {
    font-size: 64px;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .brand {
    flex: 1 1 220px;
  }

  .service-intro {
    align-items: start;
    flex-direction: column;
    min-height: 300px;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .portfolio-page .hero {
    min-height: min(680px, calc(100svh - 220px));
  }

  h1 {
    font-size: 58px;
  }

  .section-title h2,
  .signature-band h2 {
    font-size: 36px;
  }

  .hero-layout {
    display: block;
  }

  .hero-photo-wall {
    display: none;
  }

  .hero-photo-card {
    min-height: 260px;
  }

  .hero-slide-frame {
    top: 86px;
    right: 18px;
    width: min(50vw, 330px);
    min-width: 230px;
    opacity: 0;
  }

  .hero-slide.active .hero-slide-frame {
    opacity: 0.58;
  }

  .hero-film {
    width: 100%;
    padding: 12px;
  }

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

  .hero-film-frame {
    min-height: 74px;
  }

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

  .event-list,
  .package-list,
  .booking-area,
  .public-filters,
  .admin-order-tools,
  .signature-band,
  .upload-row,
  .work-admin-card,
  .work-admin-fields,
  .privacy-section {
    grid-template-columns: 1fr;
  }

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

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

  .admin-order-tools .admin-order-search {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

  .work-admin-actions {
    grid-template-columns: 1fr 1fr;
  }

  .work-admin-thumb {
    min-height: 220px;
  }

  .overview-band {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .filter-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 8px 12px;
  }

  .work-library-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .work-library-toolbar label {
    width: 100%;
  }

  .upload-destinations,
  .work-toggle-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .upload-destinations label,
  .work-toggle {
    width: 100%;
  }

  .admin-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .success-actions,
  .admin-order-tools {
    grid-template-columns: 1fr;
  }

  .admin-order-tools .admin-order-search {
    grid-column: auto;
    grid-row: auto;
  }

  .admin-notification-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-notification-heading .ghost-button {
    width: 100%;
  }

  .admin-section-heading .ghost-button {
    width: 100%;
  }

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

  .event-field-wide {
    grid-column: auto;
  }

  .brand {
    min-width: 0;
    flex: 1 1 180px;
  }

  .brand small {
    display: none;
  }

  .top-nav {
    order: 3;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 0 9px;
    font-size: 13px;
  }

  .qq-link,
  .header-action {
    width: auto;
    min-height: 38px;
    flex: 0 0 auto;
    padding: 0 10px;
  }

  .portfolio-page .hero {
    min-height: min(560px, calc(100svh - 190px));
    padding: 64px 16px 72px;
  }

  .portfolio-page .portfolio-section {
    margin-top: 36px;
  }

  .service-intro {
    min-height: 0;
    padding: 44px 16px 58px;
  }

  .service-intro h1 {
    font-size: 42px;
  }

  .service-intro-actions,
  .service-intro-actions > a {
    width: 100%;
  }

  .hero {
    min-height: min(560px, calc(100svh - 128px));
    padding: 64px 16px 72px;
  }

  .service-notice:not([hidden]) + .hero {
    min-height: min(520px, calc(100svh - 176px));
  }

  .hero-layout {
    display: block;
  }

  .hero-photo-wall {
    display: none;
  }

  .hero-slider {
    top: 0;
    bottom: 0;
  }

  .hero-slide {
    inset: -3%;
    filter: saturate(1.08) contrast(1.04) brightness(0.58);
    transform: scale(1.08);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 11, 0.9), rgba(7, 8, 11, 0.58)),
      linear-gradient(0deg, rgba(7, 8, 11, 0.88), rgba(7, 8, 11, 0.18) 64%, rgba(7, 8, 11, 0.5));
  }

  .hero-meter {
    bottom: 24px;
  }

  .hero-photo-columns,
  .hero-photo-track {
    gap: 10px;
  }

  .hero-photo-column.down {
    padding-top: 34px;
  }

  .hero-photo-card {
    min-height: 220px;
  }

  .hero-slide-frame {
    top: 78px;
    right: -28px;
    width: 70vw;
    min-width: 0;
    opacity: 0;
  }

  .hero-slide.active .hero-slide-frame {
    opacity: 0.34;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: 44px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .section-title h2,
  .signature-band h2 {
    font-size: 32px;
  }

  .stat strong {
    font-size: 28px;
  }

  .lightbox-frame strong {
    font-size: 26px;
  }

  .hero-film-head {
    display: none;
  }

  .hero-film-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-film-frame {
    min-height: 66px;
  }

  .overview-band,
  .booking-form,
  .admin-lock,
  .manage-row {
    grid-template-columns: 1fr;
  }

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

  .work-card:first-child {
    grid-row: span 1;
  }

  .booking-form,
  .manage-form {
    padding: 18px;
  }

  .stat {
    min-height: 76px;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .portfolio-page .hero {
    padding-top: 32px;
    padding-bottom: 44px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 38px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero-category-rail {
    display: none;
  }

  .hero-meter {
    bottom: 16px;
  }
}

@media (max-width: 360px) {
  .qq-link,
  .header-action {
    width: 38px;
    padding: 0;
  }

  .qq-link > span,
  .header-action > span {
    display: none;
  }
}

/* Featured editorial page */
html:has(> body.featured-page) {
  background: #101312;
  scroll-snap-type: y proximity;
}

.featured-page {
  color: #e8ece9;
  background: #101312;
}

.featured-page main {
  overflow: visible;
  background: #101312;
}

.featured-page .skip-link {
  color: #101312;
  background: #e8ece9;
}

.featured-page .site-header,
.featured-page .site-header.scrolled {
  min-height: 67px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #e8ece9;
  background: rgba(16, 19, 18, 0.92);
  border-bottom-color: rgba(232, 236, 233, 0.12);
  box-shadow: none;
}

.featured-page .site-header.scrolled {
  background: rgba(13, 16, 15, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.featured-page .brand strong {
  color: #eef2ef;
}

.featured-page .brand small {
  color: #929c96;
}

.featured-page .brand-mark {
  color: #101312;
  background: #e8ece9;
}

.featured-page .top-nav a {
  color: #aab3ae;
}

.featured-page .top-nav a:hover {
  color: #f2f5f3;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 236, 233, 0.16);
}

.featured-page .top-nav a[aria-current="page"],
.featured-page .top-nav a[aria-current="location"],
.featured-page .top-nav a.is-active {
  color: #f2f5f3;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(164, 194, 176, 0.56);
  box-shadow: inset 0 -3px 0 #9fbaa9;
}

.featured-page .header-action {
  color: #fff;
  background: #b95f57;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.featured-page .header-action:hover {
  background: #cc6d64;
}

.featured-masthead {
  position: relative;
  isolation: isolate;
  height: calc(100vh - 67px);
  height: calc(100svh - 67px);
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px clamp(24px, 6vw, 96px) 108px;
  color: #eef2ef;
  background:
    radial-gradient(circle at 72% 24%, rgba(133, 160, 143, 0.2), transparent 38%),
    #0d100f;
  border-bottom: 1px solid rgba(232, 236, 233, 0.08);
  scroll-margin-top: 67px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.featured-backdrop,
.featured-masthead-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.featured-backdrop {
  z-index: -2;
  overflow: hidden;
  background: #0d100f;
}

.featured-backdrop-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1800ms cubic-bezier(0.16, 0.72, 0.2, 1);
}

.featured-backdrop-slide.is-active {
  z-index: 2;
  opacity: 1;
}

.featured-backdrop-slide.is-previous {
  z-index: 1;
}

.featured-backdrop-slide img {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.86) contrast(1.05) brightness(0.78);
  transform: translate3d(-1.2%, -0.8%, 0) scale(1.07);
  will-change: transform;
}

.featured-backdrop-slide.is-active img {
  animation: featuredBackdropDrift 7600ms cubic-bezier(0.16, 0.72, 0.2, 1) both;
}

.featured-masthead-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.72) 0%, rgba(7, 10, 9, 0.34) 55%, rgba(7, 10, 9, 0.46) 100%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.22) 0%, rgba(7, 10, 9, 0.12) 36%, rgba(7, 10, 9, 0.86) 100%);
}

@keyframes featuredBackdropDrift {
  from {
    transform: translate3d(-1.2%, -0.8%, 0) scale(1.07);
  }

  to {
    transform: translate3d(1.2%, 0.8%, 0) scale(1.025);
  }
}

.featured-masthead-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.48);
}

.featured-masthead .eyebrow {
  color: #9fb8a9;
}

.featured-masthead h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #f1f4f2;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: 0;
}

.featured-masthead-inner > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: #b5bdb8;
  font-size: 18px;
  line-height: 1.9;
}

.featured-sequence {
  scroll-margin-top: 67px;
}

.featured-story-list {
  width: 100%;
}

.featured-story {
  height: calc(100vh - 67px);
  height: calc(100svh - 67px);
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 5vh, 58px) clamp(24px, 5vw, 80px);
  color: #e8ece9;
  background: #101312;
  border-top: 1px solid rgba(232, 236, 233, 0.08);
  scroll-margin-top: 67px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.featured-story:nth-child(even) {
  background: #131716;
}

.featured-story-inner {
  width: min(1480px, 100%);
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(260px, 0.72fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  margin: 0 auto;
}

.featured-story:nth-child(even) .featured-media {
  order: 2;
}

.featured-story:nth-child(even) .featured-copy {
  order: 1;
}

.featured-media {
  height: min(74svh, 760px);
  max-height: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  margin: 0;
}

.featured-photo-button {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 2px;
  cursor: zoom-in;
}

.featured-photo-button img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
  border-radius: 2px;
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.42);
  transition:
    transform 500ms ease,
    box-shadow 500ms ease;
}

.featured-photo-button:hover img,
.featured-photo-button:focus-visible img {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 36px 88px rgba(0, 0, 0, 0.56);
}

.featured-photo-button:focus-visible {
  outline: 3px solid #a5c1b0;
  outline-offset: 8px;
}

.featured-copy {
  max-width: 390px;
  padding-left: 28px;
  border-left: 1px solid rgba(206, 219, 211, 0.24);
}

.featured-sequence-number {
  margin-bottom: 54px;
  color: #737d77;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.featured-copy .eyebrow {
  margin-bottom: 12px;
  color: #9fb8a9;
}

.featured-copy h2 {
  margin-bottom: 24px;
  color: #eef2ef;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.featured-description {
  margin-bottom: 0;
  color: #b5bdb8;
  font-size: 16px;
  line-height: 2;
  overflow-wrap: anywhere;
}

.featured-status {
  min-height: 46svh;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 64px 24px;
  color: #b5bdb8;
  background: #101312;
  text-align: center;
}

.featured-page .site-footer {
  flex-wrap: wrap;
  margin-top: 0;
  color: #99a39d;
  background: #0d100f;
  border-top-color: rgba(232, 236, 233, 0.1);
}

.featured-page .site-footer a:hover {
  color: #f2f5f3;
}

.featured-story.reveal,
.js-motion .featured-story.reveal,
.js-motion .featured-story.reveal.in-view {
  opacity: 1;
  transform: none;
  transition: none;
}

.featured-story .featured-media {
  --parallax-y: 0px;
  opacity: 1;
  transform: translateY(var(--parallax-y, 0px));
  scale: 1;
  transition:
    opacity 1200ms cubic-bezier(0.16, 0.72, 0.2, 1),
    scale 1200ms cubic-bezier(0.16, 0.72, 0.2, 1);
  transform-origin: center;
  will-change: transform, opacity, scale;
}

.featured-story .featured-copy {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms cubic-bezier(0.16, 0.72, 0.2, 1),
    transform 900ms cubic-bezier(0.16, 0.72, 0.2, 1);
}

.featured-copy > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms cubic-bezier(0.16, 0.72, 0.2, 1),
    transform 700ms cubic-bezier(0.16, 0.72, 0.2, 1);
}

.js-motion .featured-story.reveal:not(.in-view) .featured-media {
  opacity: 0;
  scale: 1.04;
}

.js-motion .featured-story.reveal:not(.in-view) .featured-copy {
  opacity: 0;
  transform: translateY(60px);
}

.js-motion .featured-story.reveal.in-view .featured-copy {
  transition-delay: 200ms;
}

.js-motion .featured-story.reveal:not(.in-view) .featured-copy > * {
  opacity: 0;
  transform: translateY(24px);
}

.js-motion .featured-story.reveal.in-view .featured-copy > :nth-child(1) {
  transition-delay: 300ms;
}

.js-motion .featured-story.reveal.in-view .featured-copy > :nth-child(2) {
  transition-delay: 400ms;
}

.js-motion .featured-story.reveal.in-view .featured-copy > :nth-child(3) {
  transition-delay: 500ms;
}

.js-motion .featured-story.reveal.in-view .featured-copy > :nth-child(4) {
  transition-delay: 600ms;
}

@media (max-width: 980px) {
  .featured-page .site-header,
  .featured-page .site-header.scrolled {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .featured-page .brand {
    min-width: 0;
    flex: 0 1 auto;
  }

  .featured-page .brand small {
    display: none;
  }

  .featured-page .top-nav {
    order: initial;
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .featured-page .top-nav::-webkit-scrollbar {
    display: none;
  }

  .featured-masthead {
    min-height: 540px;
    padding-top: 76px;
    padding-bottom: 84px;
  }

  .featured-masthead h1 {
    font-size: 54px;
  }

  .featured-story {
    min-height: 620px;
    padding: 40px clamp(22px, 5vw, 48px);
  }

  .featured-story-inner {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 30px;
  }

  .featured-story:nth-child(even) .featured-media,
  .featured-story:nth-child(even) .featured-copy {
    order: initial;
  }

  .featured-photo-button {
    min-height: 0;
  }

  .featured-media {
    width: 100%;
    height: min(52svh, 500px);
  }

  .featured-copy {
    max-width: 720px;
  }

  .featured-sequence-number {
    margin-bottom: 28px;
  }
}

@media (max-width: 620px) {
  .featured-page .site-header,
  .featured-page .site-header.scrolled {
    gap: 8px;
    padding: 8px 10px;
  }

  .featured-page .brand {
    flex: 0 0 auto;
  }

  .featured-page .brand > span:last-child {
    display: none;
  }

  .featured-page .brand-mark,
  .featured-page .site-header.scrolled .brand-mark {
    width: 36px;
    height: 36px;
  }

  .featured-page .top-nav {
    justify-content: center;
  }

  .featured-page .top-nav a {
    min-height: 34px;
    padding: 0 7px;
    font-size: 12px;
  }

  .featured-page .header-action {
    width: 36px;
    min-height: 36px;
    padding: 0;
  }

  .featured-page .header-action > span {
    display: none;
  }

  .featured-masthead {
    min-height: 500px;
    padding: 54px 18px 66px;
  }

  .featured-masthead h1 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  .featured-masthead-inner > p:last-child {
    font-size: 16px;
    line-height: 1.75;
  }

  .featured-story {
    min-height: 560px;
    padding: 26px 16px 30px;
  }

  .featured-story-inner {
    gap: 20px;
  }

  .featured-media {
    height: min(44svh, 380px);
  }

  .featured-copy {
    padding-left: 18px;
  }

  .featured-copy h2 {
    margin-bottom: 16px;
    font-size: 30px;
  }

  .featured-description {
    font-size: 14px;
    line-height: 1.75;
  }

  .featured-sequence-number {
    margin-bottom: 16px;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .featured-story {
    padding: 18px 14px 20px;
  }

  .featured-story-inner {
    gap: 14px;
  }

  .featured-media {
    height: min(38svh, 270px);
  }

  .featured-sequence-number {
    margin-bottom: 10px;
  }

  .featured-copy h2 {
    margin-bottom: 12px;
  }

  .featured-description {
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-backdrop-slide,
  .featured-backdrop-slide img,
  .featured-story .featured-media,
  .featured-story .featured-copy,
  .featured-copy > *,
  .featured-photo-button img {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    transition: none !important;
  }

  .featured-backdrop-slide:not(.is-active) {
    opacity: 0 !important;
  }
}

/* ===== 公开档期快捷预约 ===== */
.public-table {
  min-width: 720px;
}

.public-table .slot-action-cell {
  width: 1%;
  text-align: center;
  white-space: nowrap;
}

.slot-book-button.ghost-button {
  min-height: 32px;
  padding: 0 11px;
  color: #176647;
  background: #f8fcfa;
  border-color: rgba(37, 131, 91, 0.32);
  font-size: 13px;
}

.slot-book-button.ghost-button:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.slot-book-button:focus-visible {
  outline: 3px solid rgba(10, 140, 137, 0.28);
  outline-offset: 2px;
}

.booking-form {
  scroll-margin-top: 90px;
}

/* ===== 预约表单价格与步骤提示 ===== */
.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 2px clamp(4px, 2vw, 18px) 8px;
  list-style: none;
}

.booking-progress-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted);
  text-align: center;
}

.booking-progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 13px;
  left: calc(50% + 13px);
  width: calc(100% - 26px);
  height: 1px;
  background: var(--line);
}

.booking-progress-step.is-complete:not(:last-child)::after {
  background: var(--teal);
}

.booking-progress-dot {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.booking-progress-step.is-current {
  color: var(--ink);
}

.booking-progress-step.is-current .booking-progress-dot {
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(10, 140, 137, 0.1);
}

.booking-progress-step.is-complete {
  color: var(--teal);
}

.booking-progress-step.is-complete .booking-progress-dot {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.booking-progress-label {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.booking-package-hint {
  min-height: 0;
  line-height: 1.5;
  font-weight: 600;
}

.booking-package-hint[hidden] {
  display: none;
}

/* ===== 套餐卡片视觉升级 ===== */
.package-list {
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  isolation: isolate;
  min-height: 300px;
  gap: 34px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
  background: linear-gradient(155deg, #fff 0%, #fbfaf7 100%);
  border-radius: 20px;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    background-color 300ms ease;
}

.package-card-heading,
.package-price-block {
  position: relative;
  z-index: 1;
  display: grid;
}

.package-card-heading {
  justify-items: start;
  gap: 12px;
}

.package-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 27px);
  letter-spacing: -0.025em;
}

.package-card .package-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.package-price-block {
  gap: 12px;
  margin-top: auto;
}

.package-card .package-price {
  color: var(--ink);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.package-card .package-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.package-recommended-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.package-recommended-badge[hidden] {
  display: none;
}

.package-card.recommended {
  background:
    radial-gradient(circle at 92% 8%, rgba(10, 140, 137, 0.13), transparent 36%),
    linear-gradient(155deg, #fff 0%, #f1faf7 100%);
  border-color: var(--teal);
  box-shadow: 0 18px 42px rgba(10, 92, 89, 0.13);
}

.package-card.recommended .package-price {
  color: var(--teal);
}

@media (hover: hover) {
  .package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(30, 24, 20, 0.14);
  }

  .package-card.recommended:hover {
    box-shadow: 0 26px 58px rgba(10, 92, 89, 0.2);
  }
}

@media (max-width: 620px) {
  .package-list {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 270px;
    padding: 26px;
  }

  .package-card.recommended {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-card {
    transition: none;
  }

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

/* ===== 作品图片模糊渐清 ===== */
.work-card img,
.hero-photo-card img,
.featured-photo-button img {
  filter: blur(8px);
  transform: scale(1.04);
  opacity: 0;
  transition:
    filter 600ms ease,
    transform 600ms ease,
    opacity 400ms ease;
}

.work-card img.loaded,
.hero-photo-card img.loaded,
.featured-photo-button img.loaded {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
}

.work-card:hover img.loaded {
  filter: saturate(1.08) contrast(1.04);
  transform: translateZ(18px) scale(1.08);
}

.hero-photo-card:hover img.loaded,
.hero-photo-card:focus-visible img.loaded {
  filter: saturate(1.18) contrast(1.08) brightness(1.06);
  transform: perspective(900px) rotateX(var(--hover-rotate-x)) rotateY(var(--hover-rotate-y)) scale(1.12);
}

.featured-photo-button:hover img.loaded,
.featured-photo-button:focus-visible img.loaded {
  filter: blur(0);
  transform: translateY(-4px) scale(1.01);
}

@media (prefers-reduced-motion: reduce) {
  .work-card img,
  .hero-photo-card img,
  .featured-photo-button img,
  .work-card img.loaded,
  .hero-photo-card img.loaded,
  .featured-photo-button img.loaded {
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ===== 下单成功体验升级 ===== */
.success-card:not([hidden]) {
  animation: successCardEnter 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes successCardEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.success-card-heading {
  display: flex;
  gap: 12px;
  align-items: center;
}

.success-card-heading h3 {
  margin: 1px 0 0;
}

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

.success-card .success-actions .submit-button {
  grid-column: auto;
}

.success-check-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #176647;
  background: rgba(37, 131, 91, 0.12);
  border: 1px solid rgba(37, 131, 91, 0.18);
  border-radius: 50%;
  place-items: center;
}

.success-check-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.success-card p.success-contact-hint {
  margin: 0;
  padding: 10px 12px;
  color: #176647;
  background: #e5f6ed;
  border: 1px solid rgba(37, 131, 91, 0.2);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
}

.success-card p.success-contact-hint[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .success-card:not([hidden]) {
    animation: none;
  }
}

/* ===== 首页加载幕与缓慢入场 ===== */
.home-intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  gap: 20px;
  place-items: center;
  color: #f4f5f2;
  background: #090b0f;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    transform 1000ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 1000ms;
}

html.home-intro-pending,
html.home-intro-pending body.portfolio-page {
  overflow: hidden;
}

html.home-intro-pending .home-intro-loader,
html.home-intro-leaving .home-intro-loader {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

html.home-intro-pending .home-intro-loader {
  transform: translateY(0);
}

html.home-intro-leaving:not(.home-intro-pending) .home-intro-loader {
  transform: translateY(-100%);
}

.home-intro-loader-brand {
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: min(320px, calc(100vw - 48px));
}

.home-intro-loader-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: #090b0f;
  background: #f4f5f2;
  border-radius: 8px;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

.home-intro-loader-name {
  font-size: 20px;
  font-weight: 800;
}

.home-intro-loader-track {
  position: relative;
  grid-row: 3;
  width: min(320px, calc(100vw - 48px));
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.home-intro-loader-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: var(--coral);
  transform: translateX(-110%);
}

html.home-intro-pending .home-intro-loader-track span {
  animation: homeIntroLoaderSweep 1150ms cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.home-intro-loader-edition {
  grid-row: 4;
  align-self: start;
  width: min(320px, calc(100vw - 48px));
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

html.home-intro-leaving .home-intro-loader-brand,
html.home-intro-leaving .home-intro-loader-track,
html.home-intro-leaving .home-intro-loader-edition {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 360ms ease,
    transform 480ms cubic-bezier(0.16, 0.72, 0.2, 1);
}

html.home-intro-pending body.portfolio-page .site-header,
html.home-intro-pending body.portfolio-page .hero-meter {
  opacity: 0;
}

html.home-intro-pending body.portfolio-page .hero-slide.active,
html.home-intro-pending body.portfolio-page .hero-photo-wall.reveal.in-view,
html.home-intro-pending body.portfolio-page .hero-photo-card,
html.home-intro-pending body.portfolio-page .hero-photo-track,
html.home-intro-pending body.portfolio-page .hero-copy.in-view > .eyebrow,
html.home-intro-pending body.portfolio-page .hero-copy.in-view > h1,
html.home-intro-pending body.portfolio-page .hero-copy.in-view > p:not(.eyebrow),
html.home-intro-pending body.portfolio-page .hero-copy.in-view .hero-actions > a,
html.home-intro-pending body.portfolio-page .hero-copy.in-view .hero-category-rail {
  animation-play-state: paused !important;
}

html.home-intro-pending body.portfolio-page .hero-meter span.active::before {
  width: 0;
  transition: none;
}

html.home-intro-leaving:not(.home-intro-pending) body.portfolio-page .site-header {
  animation: homeIntroHeaderEnter 1100ms cubic-bezier(0.16, 0.72, 0.2, 1) 160ms both;
}

html.home-intro-leaving:not(.home-intro-pending) body.portfolio-page .hero-meter {
  animation: homeIntroMeterEnter 1200ms ease 1900ms both;
}

@keyframes homeIntroLoaderSweep {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(390%);
  }
}

@keyframes homeIntroHeaderEnter {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

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

@keyframes homeIntroMeterEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .home-intro-loader {
    display: none !important;
  }

  .portfolio-page .site-header,
  .portfolio-page .hero-meter {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== 跨页悬浮预约入口 ===== */
.floating-booking-action {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 18px;
  overflow: hidden;
  color: #fff;
  background: var(--coral);
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(229, 85, 79, 0.22);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition:
    width 250ms cubic-bezier(0.16, 0.72, 0.2, 1),
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.16, 0.72, 0.2, 1),
    visibility 0s linear 300ms,
    box-shadow 200ms ease;
  white-space: nowrap;
}

.floating-booking-action.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    width 250ms cubic-bezier(0.16, 0.72, 0.2, 1),
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.16, 0.72, 0.2, 1),
    visibility 0s,
    box-shadow 200ms ease;
}

.floating-booking-icon {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
}

.floating-booking-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.floating-booking-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  font-weight: 800;
  transform: translateX(8px);
  transition:
    max-width 250ms cubic-bezier(0.16, 0.72, 0.2, 1),
    opacity 180ms ease,
    transform 250ms cubic-bezier(0.16, 0.72, 0.2, 1);
}

.floating-booking-action:focus-visible {
  outline: 3px solid rgba(10, 140, 137, 0.58);
  outline-offset: 4px;
}

@media (hover: hover) and (min-width: 621px) {
  .floating-booking-action.is-visible:hover,
  .floating-booking-action.is-visible:focus-visible {
    width: 150px;
    box-shadow: 0 12px 28px rgba(229, 85, 79, 0.3);
    transform: translateY(0) scale(1.06);
  }

  .floating-booking-action:hover .floating-booking-label,
  .floating-booking-action:focus-visible .floating-booking-label {
    max-width: 72px;
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 620px) {
  .floating-booking-action {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-booking-label {
    display: none;
  }

  .portfolio-page .site-footer,
  .featured-page .site-footer {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-booking-action,
  .floating-booking-action.is-visible,
  .floating-booking-label {
    transition: none;
  }
}

/* ===== 作品灯箱循环翻页 ===== */
.lightbox-frame {
  touch-action: pan-y;
}

.lightbox-frame img,
.lightbox-frame figcaption {
  opacity: 1;
  transition: opacity 150ms ease;
}

.lightbox-frame.is-switching img,
.lightbox-frame.is-switching figcaption {
  opacity: 0;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  color: #fff;
  background: rgba(15, 17, 20, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.lightbox-nav-previous {
  left: max(18px, calc(50% - 590px));
}

.lightbox-nav-next {
  right: max(18px, calc(50% - 590px));
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(229, 85, 79, 0.88);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-nav:focus-visible {
  outline: 3px solid rgba(10, 140, 137, 0.68);
  outline-offset: 4px;
}

.lightbox-frame p.lightbox-position {
  width: fit-content;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

@media (max-width: 620px) {
  .lightbox-nav {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox-frame img,
  .lightbox-frame figcaption,
  .lightbox-nav {
    transition: none;
  }
}

/* ===== 手机预约快捷导航 ===== */
.mobile-booking-nav {
  display: none;
}

@media (max-width: 768px) {
  body.booking-page {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .booking-page .mobile-booking-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: calc(60px + env(safe-area-inset-bottom));
    padding:
      5px
      max(8px, env(safe-area-inset-right))
      calc(5px + env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
    background: rgba(247, 244, 239, 0.9);
    border-top: 1px solid rgba(228, 224, 216, 0.94);
    box-shadow: 0 -12px 32px rgba(30, 24, 20, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-booking-nav a {
    display: flex;
    min-width: 0;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1;
    transition: color 180ms ease;
  }

  .mobile-booking-nav svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
  }

  .mobile-booking-nav a:hover,
  .mobile-booking-nav a.is-active,
  .mobile-booking-nav a[aria-current="location"] {
    color: var(--teal);
  }

  .mobile-booking-nav a:focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: -2px;
    border-radius: 6px;
  }

  body.booking-page.lightbox-open .mobile-booking-nav {
    display: none;
  }
}
