﻿:root {
  color-scheme: dark;
  --bg: #010101;
  --panel: #070707;
  --panel-2: #101010;
  --line: rgba(255, 255, 255, 0.2);
  --line-strong: rgba(255, 255, 255, 0.44);
  --ink: #f8f8f8;
  --muted: #a8a8a8;
  --cyan: #ffffff;
  --pink: #d4d4d4;
  --blue-soft: #b8b8b8;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(circle at 86% 2%, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-position:
    0 0,
    0 0,
    0 0,
    0 0,
    0 0,
    0 0;
  background-size:
    auto,
    auto,
    54px 54px,
    54px 54px,
    9px 9px,
    9px 9px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

body.preload-active {
  overflow: hidden;
}

body.viewer-open {
  overflow: hidden;
}

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

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

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(145, 220, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 155, 216, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 42% 44%, rgba(255, 155, 216, 0.22), transparent 25%),
    radial-gradient(circle at 62% 50%, rgba(145, 220, 255, 0.18), transparent 29%),
    #080814;
  background-size:
    48px 48px,
    48px 48px,
    auto,
    auto;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loader-logo {
  display: grid;
  place-items: center;
  width: min(360px, 78vw);
  min-height: 126px;
  padding: 18px 24px;
  border: 1px solid rgba(242, 248, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 48%),
    rgba(5, 7, 11, 0.78);
  box-shadow:
    0 0 0 1px rgba(130, 221, 255, 0.08) inset,
    0 24px 72px rgba(0, 0, 0, 0.35);
  animation: loaderFloat 1.9s ease-in-out infinite;
}

.image-logo img {
  display: block;
  width: 100%;
  max-width: 310px;
  height: auto;
  object-fit: contain;
}

.loader-monogram {
  width: 70px;
  height: 55px;
}

.loader-monogram b {
  font-size: 41px;
}

.loader-logo small {
  margin-top: 9px;
  color: rgba(154, 168, 185, 0.94);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.page-loader p {
  position: absolute;
  bottom: calc(50% - 112px);
  left: 50%;
  margin: 0;
  color: rgba(243, 247, 251, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.loader-line {
  position: absolute;
  bottom: calc(50% - 144px);
  left: 50%;
  width: min(220px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(242, 248, 255, 0.16);
  transform: translateX(-50%);
}

.loader-line span {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  animation: loaderLine 1.1s ease-in-out infinite;
}

.site-header,
main,
.site-footer {
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

body.preload-active .site-header,
body.preload-active main,
body.preload-active .site-footer {
  opacity: 0;
  transform: translateY(10px);
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(250%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo,
  .loader-line span {
    animation: none;
  }

  .page-loader,
  .site-header,
  main,
  .site-footer {
    transition: none;
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 5vw, 68px);
}

.brand-mark {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 8px 7px 6px;
  border: 1px solid rgba(242, 248, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 46%),
    rgba(5, 7, 11, 0.76);
  box-shadow:
    0 0 0 1px rgba(130, 221, 255, 0.08) inset,
    0 16px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.image-brand {
  display: flex;
  width: clamp(138px, 15vw, 210px);
  height: 58px;
  padding: 7px 10px;
}

.image-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  border-color: rgba(130, 221, 255, 0.9);
  transform: translateY(-1px);
}

.brand-monogram {
  position: relative;
  display: grid;
  width: 42px;
  height: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.brand-monogram::before,
.brand-monogram::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-monogram::before {
  inset: 4px 2px 3px;
  border-top: 1px solid rgba(232, 165, 219, 0.72);
  border-bottom: 1px solid rgba(130, 221, 255, 0.68);
}

.brand-monogram::after {
  top: 5px;
  right: 14px;
  bottom: 5px;
  width: 1px;
  background: linear-gradient(var(--cyan), var(--pink));
  transform: rotate(28deg);
  transform-origin: center;
}

.brand-monogram b {
  position: absolute;
  color: var(--ink);
  font-size: 25px;
  text-shadow: 0 0 18px rgba(130, 221, 255, 0.18);
}

.brand-monogram b:first-child {
  top: -1px;
  left: 0;
}

.brand-monogram b:last-child {
  right: 0;
  bottom: -2px;
  color: rgba(243, 247, 251, 0.88);
}

.brand-mark small {
  color: rgba(154, 168, 185, 0.9);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.nav-pill {
  display: flex;
  gap: clamp(18px, 3.5vw, 42px);
  align-items: center;
  padding: 15px 25px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(15, 17, 38, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.nav-pill a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-pill a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-pill a:hover,
.nav-pill a:focus-visible {
  color: var(--ink);
}

.nav-pill a:hover::after,
.nav-pill a:focus-visible::after {
  transform: scaleX(1);
}

.section {
  position: relative;
  min-height: 100svh;
  padding: 150px clamp(22px, 6vw, 88px) 90px;
  border-bottom: 1px solid var(--line);
}

.home-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  align-content: center;
  gap: 8vw;
  overflow: hidden;
}

.home-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 20, 0.34), rgba(8, 8, 20, 0.08) 56%, rgba(30, 16, 44, 0.28)),
    linear-gradient(to bottom, rgba(8, 8, 20, 0.1), rgba(8, 8, 20, 0.42));
}

.home-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(1) contrast(1.02) brightness(1.2);
  transition: opacity 0.24s ease;
}

.home-background img.is-ready {
  opacity: 0.98;
}

.home-copy {
  align-self: center;
  position: relative;
  z-index: 1;
}

.kicker,
.section-index,
.signal-label,
.schedule-note span,
.price-footnote span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-copy h1,
h2 {
  margin: 24px 0 0;
  font-weight: 800;
  letter-spacing: 0;
}

.home-copy h1 {
  font-size: clamp(64px, 11vw, 156px);
  line-height: 0.91;
}

.home-intro {
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 30px);
}

.home-detail {
  margin: 10px 0 26px;
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--pink);
  font-weight: 800;
}

.text-link:hover {
  color: var(--cyan);
}

.home-signal {
  align-self: center;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(145, 220, 255, 0.2), rgba(255, 155, 216, 0.22)),
    rgba(13, 15, 35, 0.84);
  box-shadow: var(--shadow);
}

.home-signal strong {
  font-size: clamp(23px, 3vw, 34px);
}

.signal-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  color: #f3f7fb;
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.08;
}

.signal-service {
  border: 0;
  padding: 0;
  color: #f3f7fb;
  background: transparent;
  line-height: 1;
  text-shadow: 0 14px 44px rgba(130, 221, 255, 0.18);
}

.signal-service-field {
  color: #ffffff;
  background: transparent;
}

.signal-service-half {
  color: #ffffff;
  background: transparent;
}

.signal-service-full {
  color: #ffffff;
  background: transparent;
}

.signal-separator {
  color: #82ddff;
}

.home-signal small {
  color: #82ddff;
  font-size: 14px;
  font-weight: 700;
}

.signal-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: clamp(22px, 6vw, 88px);
  bottom: 34px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
}

.section-topline {
  display: flex;
  gap: 20px;
  align-items: center;
}

.section-index {
  color: var(--pink);
}

.section-intro,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 8vw, 140px);
  align-items: end;
  margin-top: 34px;
}

h2 {
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
}

.section-intro p,
.section-subtitle {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
}

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

.filter-button {
  min-height: 34px;
  border: 1px solid var(--line);
  padding: 7px 12px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  margin-top: 48px;
}

.work-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(145, 220, 255, 0.08), rgba(255, 155, 216, 0.07)),
    var(--panel);
}

.work-card.hero-work {
  grid-column: auto;
  grid-row: auto;
}

.work-card.tall-work {
  aspect-ratio: 3 / 4;
}

.work-card.wide-work {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.work-card img.is-ready {
  opacity: 1;
}

.work-card img:not(.is-ready) {
  opacity: 0;
}

.view-work-button {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  min-height: 34px;
  border: 1px solid rgba(242, 248, 255, 0.72);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--ink);
  background: rgba(5, 7, 11, 0.72);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.work-card:hover .view-work-button,
.work-card:focus-within .view-work-button {
  opacity: 1;
  transform: translateY(0);
}

.view-work-button:hover,
.view-work-button:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.work-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.work-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(5, 7, 11, 0.55), transparent 42%);
}

.work-card figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.work-card figcaption span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.work-card figcaption strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.work-card.is-hidden {
  display: none;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 16px;
  padding: 70px clamp(16px, 4vw, 48px) 28px;
  background: rgba(3, 5, 8, 0.94);
  backdrop-filter: blur(18px);
}

.image-viewer[hidden] {
  display: none;
}

.image-viewer img {
  width: auto;
  max-width: min(100%, 1180px);
  max-height: calc(100svh - 142px);
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.image-viewer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.viewer-close {
  position: absolute;
  top: 20px;
  right: clamp(16px, 4vw, 48px);
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--ink);
  background: rgba(5, 7, 11, 0.74);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.viewer-close:hover,
.viewer-close:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
}

.price-list,
.calendar-board {
  border-top: 1px solid var(--line);
}

.price-row {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 102px;
  border-bottom: 1px solid var(--line);
}

.price-row div {
  min-width: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}

.price-row span {
  color: var(--pink);
  font-size: 12px;
}

.price-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 26px;
}

.price-row b {
  color: var(--cyan);
  font-size: 18px;
  white-space: nowrap;
}

.price-footnote,
.schedule-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding: 18px 20px;
}

.price-footnote + .price-footnote {
  margin-top: 12px;
}

.price-footnote p,
.schedule-note p {
  min-width: 0;
  margin: 0;
  color: rgba(243, 247, 251, 0.76);
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.calendar-board {
  padding-top: 24px;
}

.schedule-board {
  display: grid;
  gap: 34px;
  padding-top: 24px;
}

.schedule-section .split-section {
  grid-template-columns: 1fr;
  gap: 32px;
}

.schedule-section .section-subtitle {
  max-width: 620px;
}

.schedule-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.schedule-tab {
  min-width: 78px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 21px;
  color: var(--muted);
  background: rgba(243, 247, 251, 0.04);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.schedule-tab.active {
  border-color: var(--cyan);
  color: var(--ink);
  background: rgba(130, 221, 255, 0.12);
  box-shadow: 0 0 24px rgba(130, 221, 255, 0.12);
}

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

.schedule-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(84px, auto) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(130, 221, 255, 0.26);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(130, 221, 255, 0.13), transparent 32%),
    linear-gradient(110deg, rgba(12, 23, 35, 0.9), rgba(17, 8, 27, 0.82));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.schedule-date {
  min-width: 0;
  color: var(--cyan);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1;
  white-space: nowrap;
}

.schedule-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.schedule-main h3 {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.schedule-main p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.schedule-toggle {
  flex: 0 0 auto;
  min-width: 84px;
  min-height: 36px;
  border: 1px solid rgba(213, 255, 83, 0.5);
  border-radius: 999px;
  padding: 6px 18px;
  color: #d5ff53;
  background: rgba(213, 255, 83, 0.04);
  cursor: pointer;
  font-weight: 900;
}

.schedule-card.is-open .schedule-toggle {
  border-color: rgba(255, 125, 166, 0.56);
  color: #ffa2c6;
  background: rgba(255, 125, 166, 0.06);
}

.schedule-slots {
  display: none;
  min-width: 0;
  grid-column: 2 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding-top: 2px;
}

.schedule-card.is-open .schedule-slots {
  display: grid;
}

.schedule-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 125, 139, 0.34);
  border-radius: 7px;
  padding: 8px 10px;
  color: rgba(243, 247, 251, 0.82);
  background: rgba(255, 125, 139, 0.08);
  font-size: 14px;
}

.schedule-slot.available {
  border-color: rgba(112, 224, 135, 0.48);
  background: rgba(112, 224, 135, 0.09);
}

.schedule-slot i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ff91a3;
  background: rgba(255, 125, 139, 0.18);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.schedule-slot.available i {
  color: #86f39c;
  background: rgba(112, 224, 135, 0.2);
}

.schedule-empty {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(8, 11, 17, 0.68);
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.calendar-head div {
  display: grid;
  gap: 5px;
}

.calendar-head span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.calendar-head strong {
  font-size: 36px;
  line-height: 1;
}

.calendar-head p {
  margin: 0;
  color: var(--muted);
}

.public-month-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.public-month-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.public-month-controls select {
  min-width: 86px;
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(7, 11, 18, 0.82);
  outline: none;
}

.public-month-controls select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(130, 221, 255, 0.12);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.calendar-weekdays span {
  min-height: 34px;
  border-right: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
}

.calendar-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.calendar-empty,
.calendar-day {
  min-height: 76px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 9px;
  color: var(--ink);
  background: rgba(7, 11, 18, 0.6);
}

.calendar-day {
  display: grid;
  align-content: space-between;
  gap: 8px;
  text-align: left;
  cursor: pointer;
}

.calendar-day b {
  font-size: 16px;
  line-height: 1;
}

.calendar-day small {
  color: var(--muted);
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-day.available {
  background: rgba(130, 221, 255, 0.09);
}

.calendar-day.available small {
  color: var(--cyan);
}

.calendar-day.tentative {
  background: rgba(232, 165, 219, 0.09);
}

.calendar-day.tentative small {
  color: var(--pink);
}

.calendar-day.event {
  background: rgba(232, 165, 219, 0.14);
}

.calendar-day.event small {
  color: var(--pink);
}

.calendar-day.shoot {
  background: rgba(157, 244, 189, 0.11);
}

.calendar-day.shoot small {
  color: #9df4bd;
}

.calendar-day.field {
  background: rgba(193, 183, 255, 0.12);
}

.calendar-day.field small {
  color: #c1b7ff;
}

.calendar-day.booked {
  color: rgba(243, 247, 251, 0.34);
  background: rgba(255, 255, 255, 0.025);
}

.calendar-day.idle small {
  color: #c1b7ff;
}

.calendar-day:not(.booked):hover,
.calendar-day.active {
  border: 1px solid var(--cyan);
  box-shadow: inset 0 0 0 1px var(--cyan);
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.calendar-legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.available-dot {
  background: var(--cyan);
}

.tentative-dot {
  background: var(--pink);
}

.event-dot {
  background: var(--pink);
}

.shoot-dot {
  background: #9df4bd;
}

.booked-dot {
  background: rgba(243, 247, 251, 0.34);
}

.idle-dot {
  background: #c1b7ff;
}

.day-detail {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(8, 11, 17, 0.68);
}

.day-detail > div:first-child {
  display: grid;
  gap: 6px;
  align-content: start;
}

.day-detail span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.day-detail strong {
  font-size: 18px;
}

.slot-list {
  display: grid;
  gap: 10px;
}

.slot-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.all-day-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(130, 221, 255, 0.08);
}

.all-day-card span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.all-day-card strong {
  font-size: clamp(20px, 3vw, 30px);
}

.all-day-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.all-day-card.event {
  border-color: rgba(232, 165, 219, 0.5);
  background: rgba(232, 165, 219, 0.1);
}

.all-day-card.event span {
  color: var(--pink);
}

.all-day-card.shoot {
  border-color: rgba(157, 244, 189, 0.5);
  background: rgba(157, 244, 189, 0.08);
}

.all-day-card.shoot span {
  color: #9df4bd;
}

.all-day-card.booked {
  border-color: rgba(255, 125, 139, 0.45);
  background: rgba(255, 125, 139, 0.08);
}

.all-day-card.booked span {
  color: var(--pink);
}

.time-slot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(7, 11, 18, 0.8);
  text-align: left;
  cursor: pointer;
}

.time-slot b {
  font-size: 15px;
}

.time-slot small {
  color: var(--muted);
  max-width: min(220px, 42vw);
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.time-slot.available small {
  color: var(--cyan);
}

.time-slot.tentative small {
  color: var(--pink);
}

.time-slot.event small {
  color: var(--pink);
}

.time-slot.shoot small {
  color: #9df4bd;
}

.time-slot.field small {
  color: #c1b7ff;
}

.time-slot.idle small {
  color: #c1b7ff;
}

.time-slot.booked {
  color: rgba(243, 247, 251, 0.4);
  cursor: not-allowed;
}

.time-slot.booked small {
  color: rgba(243, 247, 251, 0.4);
}

.time-slot:hover,
.time-slot.active {
  border-color: var(--cyan);
}

.contact-intro {
  align-items: center;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 40px 38px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(125deg, rgba(145, 220, 255, 0.26), rgba(255, 155, 216, 0.28)),
    rgba(14, 16, 36, 0.84);
  box-shadow: var(--shadow);
}

.contact-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-card strong {
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
}

.contact-card small {
  color: var(--muted);
}

.contact-card svg {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--pink);
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 100px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cyan);
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

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

  .nav-pill {
    gap: 16px;
    padding: 13px 17px;
  }

  .nav-pill a {
    font-size: 12px;
  }

  .home-section,
  .section-intro,
  .split-section {
    grid-template-columns: 1fr;
  }

  .home-signal {
    max-width: 430px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card.hero-work,
  .work-card.wide-work {
    grid-column: 1 / -1;
  }

  .schedule-card {
    grid-template-columns: 92px 1fr auto;
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    padding: 7px 6px 5px;
  }

  .image-brand {
    width: 126px;
    height: 48px;
    padding: 6px 8px;
  }

  .brand-monogram {
    width: 34px;
    height: 27px;
  }

  .brand-monogram b {
    font-size: 20px;
  }

  .brand-mark small {
    font-size: 7px;
  }

  .nav-pill {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 8px 14px;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .nav-pill a::after {
    bottom: -4px;
  }

  .section {
    min-height: auto;
    padding: 132px 18px 72px;
  }

  .home-section {
    min-height: 100svh;
    padding-bottom: 90px;
  }

  .home-copy h1 {
    font-size: clamp(56px, 17vw, 86px);
  }

  .scroll-cue {
    display: none;
  }

  h2 {
    font-size: 54px;
  }

  .schedule-card {
    grid-template-columns: 1fr auto;
    gap: 10px 16px;
    padding: 18px;
  }

  .schedule-date {
    grid-column: 1 / -1;
  }

  .schedule-slots {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .schedule-toggle {
    align-self: end;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }

  .work-card,
  .work-card.hero-work,
  .work-card.tall-work,
  .work-card.wide-work {
    min-height: 0;
    border-radius: 6px;
  }

  .work-card[data-order="1"],
  .work-card[data-order="2"],
  .work-card[data-order="3"],
  .work-card[data-order="4"] {
    grid-column: auto;
    aspect-ratio: 3 / 4;
  }

  .work-card.wide-work {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 9;
  }

  .work-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .work-card figcaption span {
    font-size: 9px;
  }

  .work-card figcaption strong {
    margin-top: 2px;
    font-size: 15px;
  }

  .view-work-button {
    top: 9px;
    right: 9px;
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
    opacity: 1;
    transform: none;
  }

  .image-viewer {
    padding: 62px 12px 22px;
  }

  .image-viewer img {
    max-height: calc(100svh - 126px);
  }

  .viewer-close {
    top: 14px;
    right: 12px;
  }

  .price-row {
    min-height: 84px;
  }

  .price-row strong {
    font-size: 21px;
  }

  .price-row b {
    font-size: 14px;
  }

  .price-footnote,
  .schedule-note,
  .day-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .calendar-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-month-controls {
    justify-content: flex-start;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-card strong {
    font-size: 42px;
  }

  .site-footer {
    padding: 24px 18px;
    text-align: center;
  }
}
.schedule-slots-empty {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 7px;
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(8, 11, 17, 0.5);
  font-size: 14px;
}

/* Black-and-white loader only */
.page-loader {
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.11), transparent 28%),
    #000;
}

.loader-logo {
  border-color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 48%),
    rgba(0, 0, 0, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 24px 72px rgba(0, 0, 0, 0.46);
}

.page-loader p {
  color: rgba(255, 255, 255, 0.78);
}

.loader-line {
  background: rgba(255, 255, 255, 0.16);
}

.loader-line span {
  background: linear-gradient(90deg, transparent, #ffffff, #9a9a9a, transparent);
}

/* Monochrome color scheme */
.home-signal,
.work-card,
.schedule-card,
.contact-card {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(4, 4, 4, 0.94);
}

.schedule-toggle,
.schedule-card.is-open .schedule-toggle {
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.schedule-slot,
.schedule-slot.available {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.schedule-slot i,
.schedule-slot.available i {
  color: #070707;
  background: #ffffff;
}

.schedule-slot.available {
  border-color: rgba(112, 224, 135, 0.55);
  background: rgba(112, 224, 135, 0.1);
}

.schedule-slot.available i {
  color: #06150a;
  background: #74e88c;
}

.schedule-slot.unavailable {
  border-color: rgba(255, 106, 125, 0.58);
  background: rgba(255, 106, 125, 0.1);
}

.schedule-slot.unavailable i {
  color: #180406;
  background: #ff6a7d;
}

.calendar-day::before,
.time-slot.available::before,
.time-slot.event::before,
.time-slot.shoot::before,
.time-slot.field::before,
.time-slot.idle::before,
.time-slot.tentative::before {
  background: #ffffff;
}

.time-slot.event small,
.time-slot.shoot small,
.time-slot.field small,
.time-slot.idle small,
.day-button.event small,
.day-button.shoot small,
.day-button.field small,
.day-button.idle small,
.day-button.available small,
.day-button.tentative small {
  color: #d8d8d8;
}

.time-slot.booked,
.time-slot.booked small {
  color: rgba(255, 255, 255, 0.42);
}

/* Button accents from Xiaoen site */
.filter-button,
.schedule-tab,
.schedule-toggle,
.view-work-button,
.viewer-close {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.filter-button,
.schedule-tab {
  border-color: rgba(130, 221, 255, 0.28);
  color: #9aa8b9;
  background: rgba(5, 7, 11, 0.42);
}

.filter-button.active,
.filter-button:hover,
.schedule-tab.active,
.schedule-tab:hover {
  border-color: #82ddff;
  color: #82ddff;
  background: rgba(130, 221, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(130, 221, 255, 0.08) inset;
}

.schedule-toggle {
  border-color: rgba(232, 165, 219, 0.56);
  color: #e8a5db;
  background: rgba(232, 165, 219, 0.08);
}

.schedule-card.is-open .schedule-toggle {
  border-color: rgba(130, 221, 255, 0.62);
  color: #82ddff;
  background: rgba(130, 221, 255, 0.12);
}

.view-work-button,
.viewer-close {
  border-color: rgba(144, 218, 247, 0.46);
  color: #f3f7fb;
  background: rgba(5, 7, 11, 0.74);
}

.view-work-button:hover,
.view-work-button:focus-visible,
.viewer-close:hover,
.viewer-close:focus-visible {
  border-color: #82ddff;
  color: #82ddff;
  background: rgba(130, 221, 255, 0.12);
}

.price-row .price-private {
  border: 1px solid rgba(130, 221, 255, 0.62);
  border-radius: 999px;
  padding: 8px 14px;
  color: #82ddff;
  background: rgba(130, 221, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(130, 221, 255, 0.08) inset;
}

.price-notice {
  margin-top: 12px;
  border: 1px solid rgba(232, 165, 219, 0.42);
  border-radius: 7px;
  padding: 18px 18px;
  background: rgba(232, 165, 219, 0.08);
}

.price-notice span {
  color: #e8a5db;
}

.price-notice p {
  color: rgba(243, 247, 251, 0.86);
}

/* Editorial emphasis */
.home-copy h1,
h2 {
  color: #f3f7fb;
  background: linear-gradient(96deg, #ffffff 0%, #82ddff 54%, #e8a5db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 18px 62px rgba(130, 221, 255, 0.18);
}

.home-copy h1 {
  background: none;
  color: #f3f7fb;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 18px 62px rgba(0, 0, 0, 0.28);
}

h2 {
  width: fit-content;
  background: none;
  color: #f3f7fb;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 18px 62px rgba(0, 0, 0, 0.28);
}

.section-topline {
  color: #82ddff;
}

.section-index {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  border: 1px solid rgba(130, 221, 255, 0.5);
  border-radius: 999px;
  color: #82ddff;
  background: rgba(130, 221, 255, 0.11);
}

.kicker {
  color: #e8a5db;
}

.section-subtitle,
.home-intro {
  color: rgba(243, 247, 251, 0.82);
}

.home-detail {
  color: #82ddff;
}

.text-link {
  width: fit-content;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  padding: 10px 17px;
  color: #f3f7fb;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 16px 42px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 18px 50px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.price-row strong,
.schedule-main h3 {
  color: #f3f7fb;
}

.contact-card strong {
  color: #82ddff;
  text-shadow: 0 18px 62px rgba(130, 221, 255, 0.18);
}

.price-footnote span,
.schedule-note span {
  width: fit-content;
  border: 1px solid rgba(130, 221, 255, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(130, 221, 255, 0.08);
  line-height: 1;
}

/* Frosted glass finish */
:root {
  --glass-surface: rgba(13, 15, 22, 0.58);
  --glass-surface-strong: rgba(9, 11, 17, 0.72);
  --glass-line: rgba(255, 255, 255, 0.2);
  --glass-highlight: rgba(255, 255, 255, 0.14);
}

@supports ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
  .page-loader,
  .brand-mark,
  .nav-pill,
  .home-signal,
  .work-card,
  .price-row,
  .price-notice,
  .schedule-board,
  .schedule-card,
  .schedule-toggle,
  .schedule-slot,
  .schedule-note,
  .contact-card,
  .filter-button,
  .schedule-tab,
  .view-work-button,
  .viewer-close {
    border-color: var(--glass-line);
    background:
      linear-gradient(135deg, var(--glass-highlight), rgba(255, 255, 255, 0.025) 45%, transparent 70%),
      var(--glass-surface);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(255, 255, 255, 0.05),
      0 18px 60px rgba(0, 0, 0, 0.26);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    backdrop-filter: blur(20px) saturate(1.15);
  }

  .brand-mark,
  .home-signal,
  .work-card,
  .price-row,
  .price-notice,
  .schedule-board,
  .schedule-card,
  .schedule-slot,
  .schedule-note,
  .contact-card {
    border-radius: 18px;
  }

  .work-card {
    overflow: hidden;
  }

  .schedule-board {
    padding: 22px;
  }

  .page-loader {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 52%),
      rgba(0, 0, 0, 0.76);
  }

  .brand-mark,
  .nav-pill,
  .home-signal,
  .contact-card {
    position: relative;
    overflow: hidden;
  }

  .brand-mark::before,
  .nav-pill::before,
  .home-signal::before,
  .contact-card::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 32%, transparent 72%, rgba(255, 255, 255, 0.035));
  }

  .brand-mark > *,
  .nav-pill > *,
  .home-signal > *,
  .contact-card > * {
    position: relative;
    z-index: 1;
  }

  .price-row,
  .price-notice,
  .schedule-card,
  .schedule-slot {
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 55%, transparent),
      var(--glass-surface-strong);
  }

  .work-card img {
    filter: saturate(0.96) contrast(1.03);
  }

  .filter-button.active,
  .filter-button:hover,
  .schedule-tab.active,
  .schedule-tab:hover,
  .schedule-toggle:hover,
  .view-work-button:hover,
  .viewer-close:hover {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 18px 60px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(130, 221, 255, 0.1);
  }
}

.brand-mark,
.nav-pill,
.home-signal,
.work-card,
.price-row,
.price-notice,
.schedule-board,
.schedule-card,
.schedule-toggle,
.schedule-slot,
.schedule-note,
.contact-card,
.filter-button,
.schedule-tab,
.view-work-button,
.viewer-close {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.work-card:hover,
.price-row:hover,
.price-notice:hover,
.schedule-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

@media (max-width: 620px) {
  .schedule-board {
    padding: 16px;
  }

  .work-card:hover,
  .price-row:hover,
  .price-notice:hover,
  .schedule-card:hover,
  .contact-card:hover {
    transform: none;
  }
}

