:root {
  --paper: #f2ece2;
  --paper-soft: #f8f4ec;
  --sage: #7c8a73;
  --olive: #5d6955;
  --moss: #465143;
  --gold: #b7985a;
  --ink: #2f322d;
  --muted: rgba(47, 50, 45, 0.66);
  --line: rgba(70, 81, 67, 0.16);
  --glow: rgba(255, 246, 229, 0.56);
  --shadow: 0 32px 70px rgba(51, 44, 31, 0.08);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content: min(1180px, calc(100vw - 48px));
  --heading: "Times New Roman", "Songti SC", "SimSun", serif;
  --body: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --progress: 0;
  --cursor-x: 50%;
  --cursor-y: 20%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 251, 244, 0.88), transparent 40%),
    linear-gradient(180deg, #eee5d8 0%, #f7f1e8 35%, #f3ede4 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(255, 251, 242, 0.72), transparent 18%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 25%),
    radial-gradient(circle at 20% 18%, rgba(255, 248, 236, 0.92), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(214, 223, 205, 0.38), transparent 24%);
  pointer-events: none;
  z-index: -3;
  animation: mist-pan 24s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: -10%;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 56%, transparent 100%);
  pointer-events: none;
  z-index: -2;
  animation: grid-float 30s linear infinite;
}

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

[hidden] {
  display: none !important;
}

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

.site-shell {
  position: relative;
  counter-reset: section;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.site-shell::before {
  top: 12vh;
  left: -12vw;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 201, 181, 0.46), transparent 64%);
  filter: blur(22px);
  animation: drift 18s ease-in-out infinite alternate;
}

.site-shell::after {
  right: -14vw;
  bottom: 2vh;
  width: 32vw;
  height: 24vw;
  border-radius: 46%;
  background: radial-gradient(circle, rgba(235, 216, 179, 0.38), transparent 66%);
  filter: blur(18px);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 20px 0;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(246, 239, 228, 0.86), rgba(246, 239, 228, 0.46));
  border-bottom: 1px solid rgba(70, 81, 67, 0.08);
}

.topbar__inner {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__inner::after {
  content: "";
  position: absolute;
  left: clamp(220px, 28vw, 320px);
  right: 0;
  bottom: -12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 108, 86, 0.18), rgba(95, 108, 86, 0));
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-left: 6px;
}

.brand::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(183, 152, 90, 0.14);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08);
  opacity: 0.8;
}

.brand img {
  width: clamp(176px, 18vw, 230px);
}

.brand__meta {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  --mag-x: 0px;
  --mag-y: 0px;
  --nav-scale: 1;
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(var(--nav-scale));
  transition: transform 240ms ease, color 240ms ease, background-color 240ms ease, border-color 240ms ease;
  border: 1px solid transparent;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 108, 86, 0.46), rgba(95, 108, 86, 0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(70, 81, 67, 0.14);
  --nav-scale: 1.03;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  --btn-scale: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(70, 81, 67, 0.16);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  transition: transform 260ms ease, border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
  box-shadow: 0 10px 26px rgba(65, 53, 34, 0.06);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(var(--btn-scale));
}

.button::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -120%;
  width: 70%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: transform 560ms ease, opacity 260ms ease;
  z-index: -1;
}

.button:hover {
  --btn-scale: 1.05;
  border-color: rgba(93, 105, 85, 0.32);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 32px rgba(65, 53, 34, 0.1);
}

.button:hover::before {
  opacity: 0.82;
  transform: translateX(250%) skewX(-18deg);
}

.button--solid {
  border-color: rgba(93, 105, 85, 0.22);
  background: linear-gradient(135deg, rgba(99, 114, 91, 0.95), rgba(74, 84, 67, 0.96));
  color: #f8f4ec;
}

.button--solid:hover {
  border-color: rgba(99, 114, 91, 0.38);
  background: linear-gradient(135deg, rgba(109, 125, 101, 0.98), rgba(78, 88, 70, 0.98));
}

.page {
  width: var(--content);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: center;
  padding: 52px 0 80px;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  right: -20px;
  top: 12vh;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(47, 50, 45, 0.34);
  writing-mode: vertical-rl;
}

.hero::after {
  left: 0;
  top: 20px;
  font-family: var(--heading);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: rgba(47, 50, 45, 0.36);
}

body[data-page="home"] .hero::before { content: "花艺工作室"; }
body[data-page="custom"] .hero::before { content: "鲜花定制"; }
body[data-page="workshop"] .hero::before { content: "花艺体验"; }
body[data-page="photo"] .hero::before { content: "摄影"; }
body[data-page="booking"] .hero::before { content: "预约"; }

body[data-page="home"] .hero::after { content: "01"; }
body[data-page="custom"] .hero::after { content: "02"; }
body[data-page="workshop"] .hero::after { content: "03"; }
body[data-page="photo"] .hero::after { content: "04"; }
body[data-page="booking"] .hero::after { content: "05"; }

.hero__wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 38px;
  align-items: center;
}

.hero-cover {
  position: relative;
  min-height: min(88vh, 920px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  max-width: 31rem;
}

.hero-cover__copy {
  position: absolute;
  left: clamp(34px, 4.8vw, 68px);
  bottom: clamp(148px, 18vh, 220px);
  z-index: 3;
  width: min(34rem, calc(100% - 108px));
  display: grid;
  gap: 20px;
  padding: clamp(24px, 2.8vw, 36px);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.12)),
    rgba(248, 243, 236, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 44px rgba(76, 65, 45, 0.1);
  backdrop-filter: blur(14px);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: none;
  color: rgba(47, 50, 45, 0.56);
}

h1,
h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.05rem, 4.8vw, 4.4rem);
}

h2 {
  font-size: clamp(1.22rem, 2.9vw, 2.2rem);
}

.hero__copy p,
.section__heading p,
.story-note,
.info-list li,
.mini-card p,
.entry-card p,
.service-grid li,
.cta-panel p,
.footer p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--muted);
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-links,
.hero-options {
  display: grid;
  gap: 12px;
}

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

.hero-links a,
.hero-option {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(95, 108, 86, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 28px rgba(76, 65, 45, 0.06);
  backdrop-filter: blur(10px);
}

.hero-links strong,
.hero-option strong {
  font-family: var(--heading);
  font-size: 0.92rem;
  line-height: 1.08;
  color: rgba(47, 50, 45, 0.9);
}

.hero-links span,
.hero-option span {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-options {
  margin-top: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-facts {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: min(34rem, 100%);
}

.hero-facts li {
  margin: 0;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(95, 108, 86, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(249, 245, 238, 0.18)),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 24px rgba(76, 65, 45, 0.06);
  backdrop-filter: blur(10px);
}

.hero-facts strong,
.hero-facts span {
  font-size: 0.86rem;
  line-height: 1.8;
}

.hero-facts strong {
  color: rgba(53, 60, 49, 0.86);
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero-facts span {
  color: var(--muted);
  word-break: break-word;
}

.hero-facts span a {
  color: inherit;
}

.hero-art {
  position: relative;
  min-height: 74vh;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(236, 228, 214, 0.08)),
    linear-gradient(160deg, rgba(226, 236, 222, 0.94), rgba(242, 234, 223, 0.92));
  border: 1px solid rgba(95, 108, 86, 0.12);
}

.hero-cover__primary-logo {
  position: absolute;
  left: clamp(28px, 4vw, 56px);
  top: clamp(34px, 4vw, 54px);
  z-index: 3;
  width: clamp(220px, 28vw, 420px);
  opacity: 0.92;
  filter: drop-shadow(0 14px 28px rgba(90, 68, 31, 0.1));
  transform: rotate(-2deg);
  pointer-events: none;
}

.hero-cover__accent-logo {
  position: absolute;
  top: clamp(88px, 13vw, 168px);
  right: clamp(38px, 7vw, 110px);
  z-index: 3;
  width: clamp(58px, 6vw, 88px);
  opacity: 0.84;
  filter: drop-shadow(0 12px 24px rgba(78, 88, 70, 0.18));
  transform: rotate(-10deg);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-art::before,
.hero-art::after,
.hero-art__layer {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
}

.hero-art__couture {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  min-width: 126px;
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(95, 108, 86, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(45deg, rgba(95, 108, 86, 0.06) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(-45deg, rgba(183, 152, 90, 0.05) 0 1px, transparent 1px 8px);
  box-shadow: 0 10px 24px rgba(76, 65, 45, 0.08);
  backdrop-filter: blur(10px);
  letter-spacing: 0.12em;
  text-transform: none;
  font-size: 0.7rem;
  color: rgba(47, 50, 45, 0.68);
  pointer-events: none;
}

.hero-art__couture::before {
  content: attr(data-label);
}

.hero-art__couture::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(183, 152, 90, 0.72);
  box-shadow: 0 0 0 5px rgba(183, 152, 90, 0.08);
}

.hero-art::before {
  inset: 12% 12%;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top left, rgba(255, 248, 236, 0.9), transparent 32%);
  box-shadow: inset 0 0 0 1px rgba(95, 108, 86, 0.08);
}

.hero-art::after {
  width: 54%;
  height: 54%;
  right: 10%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 251, 245, 0.9), transparent 66%);
  filter: blur(12px);
  animation: breathe 8s ease-in-out infinite;
}

.hero-art__layer--arch {
  left: 19%;
  right: 19%;
  top: 14%;
  bottom: 10%;
  border-radius: 320px 320px 38px 38px;
  border: 1px solid rgba(95, 108, 86, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(240, 232, 220, 0.08)),
    radial-gradient(circle at 52% 30%, rgba(255, 251, 244, 0.78), transparent 40%);
}

.hero-art__layer--stem {
  width: 44%;
  height: 74%;
  left: 14%;
  bottom: -10%;
  border-radius: 52% 48% 58% 42%;
  background:
    radial-gradient(circle at 40% 26%, rgba(244, 232, 220, 0.86), transparent 24%),
    linear-gradient(180deg, rgba(120, 143, 108, 0.76), rgba(69, 82, 64, 0.26));
  filter: blur(6px);
  transform: rotate(-14deg);
  animation: sway 14s ease-in-out infinite;
}

.hero-art__layer--petal {
  width: 36%;
  height: 28%;
  right: 10%;
  bottom: 18%;
  border-radius: 44% 56% 52% 48%;
  background: linear-gradient(160deg, rgba(241, 221, 188, 0.82), rgba(192, 167, 124, 0.18));
  filter: blur(2px);
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-art__caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 108, 86, 0.12);
}

.hero-art__caption strong,
.mini-card strong,
.entry-card strong,
.cta-panel strong,
.info-list strong {
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero-art__caption span {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
}

.section {
  position: relative;
  counter-increment: section;
  padding: 26px 0 108px;
}

.section::after {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  color: rgba(47, 50, 45, 0.34);
}

.section__heading {
  position: relative;
  max-width: 36rem;
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
  padding-left: 42px;
}

.section__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 108, 86, 0.62), rgba(95, 108, 86, 0));
}

.section__heading::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 0.72rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(95, 108, 86, 0.24);
  background: rgba(255, 255, 255, 0.54);
  animation: pulse-soft 8s ease-in-out infinite;
}

.entry-grid,
.mini-grid {
  display: grid;
  gap: 18px;
}

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

.entry-card,
.mini-card,
.cta-panel,
.story-note,
.service-grid,
.frame-panel,
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(95, 108, 86, 0.12);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.entry-card,
.mini-card,
.cta-panel,
.story-note,
.frame-panel,
.contact-card,
.service-grid li {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --lift: 0px;
  --zoom: 1;
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease, background-color 360ms ease;
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift)) scale(var(--zoom));
  transform-style: preserve-3d;
  will-change: transform;
}

.entry-card:hover,
.mini-card:hover,
.cta-panel:hover,
.story-note:hover,
.frame-panel:hover,
.contact-card:hover,
.service-grid li:hover {
  --lift: -8px;
  --zoom: 1.012;
  border-color: rgba(95, 108, 86, 0.22);
  box-shadow: 0 22px 48px rgba(51, 44, 31, 0.12);
}

.entry-card {
  min-height: 420px;
  padding: 28px;
  display: flex;
  align-items: end;
}

.entry-card::before,
.mini-card::before,
.frame-panel::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(246, 240, 231, 0.02));
  pointer-events: none;
}

.entry-card::after,
.mini-card::after,
.cta-panel::after,
.story-note::after,
.frame-panel::after,
.contact-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(95, 108, 86, 0.22);
  border-right: 1px solid rgba(95, 108, 86, 0.22);
  border-radius: 0 18px 0 0;
  opacity: 0.56;
  pointer-events: none;
  transition: width 320ms ease, height 320ms ease, opacity 320ms ease;
}

.entry-card:hover::after,
.mini-card:hover::after,
.cta-panel:hover::after,
.story-note:hover::after,
.frame-panel:hover::after,
.contact-card:hover::after {
  width: 70px;
  height: 70px;
  opacity: 0.82;
}

.entry-card__visual,
.frame-panel__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: transform 420ms ease, filter 420ms ease;
}

.entry-card__visual::before,
.entry-card__visual::after,
.frame-panel__visual::before,
.frame-panel__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.entry-card__copy,
.mini-card__copy,
.cta-panel__copy,
.contact-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  transform: translateZ(22px);
}

.entry-card__copy h3,
.mini-card h3,
.contact-card h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(0.92rem, 1.16vw, 1.16rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.entry-card__copy .button {
  width: fit-content;
}

.entry-card--custom .entry-card__visual {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 252, 247, 0.7), transparent 24%),
    linear-gradient(160deg, rgba(235, 224, 207, 0.94), rgba(200, 213, 192, 0.58));
}

.entry-card--custom .entry-card__visual::before {
  width: 56%;
  height: 72%;
  left: 4%;
  bottom: -12%;
  background: linear-gradient(180deg, rgba(92, 113, 82, 0.78), rgba(92, 113, 82, 0));
  transform: rotate(-10deg);
  filter: blur(7px);
}

.entry-card--custom .entry-card__visual::after {
  width: 44%;
  height: 30%;
  right: 10%;
  top: 14%;
  background: linear-gradient(160deg, rgba(243, 230, 204, 0.88), rgba(184, 160, 119, 0.16));
  animation: drift 10s ease-in-out infinite alternate;
}

.entry-card--workshop .entry-card__visual {
  background:
    linear-gradient(180deg, rgba(251, 247, 240, 0.72), rgba(232, 241, 230, 0.92)),
    linear-gradient(90deg, rgba(130, 146, 122, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(130, 146, 122, 0.08) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}

.entry-card--workshop .entry-card__visual::before {
  width: 56%;
  height: 56%;
  left: 24%;
  top: 16%;
  border-radius: 28px;
  border: 1px solid rgba(95, 108, 86, 0.12);
  background: rgba(255, 255, 255, 0.34);
}

.entry-card--workshop .entry-card__visual::after {
  width: 40%;
  height: 20%;
  right: 10%;
  bottom: 10%;
  background: linear-gradient(140deg, rgba(120, 143, 108, 0.76), rgba(120, 143, 108, 0));
  filter: blur(6px);
  animation: sway 12s ease-in-out infinite;
}

.entry-card--photo .entry-card__visual {
  background:
    radial-gradient(circle at top, rgba(255, 251, 240, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(50, 53, 44, 0.96), rgba(99, 88, 73, 0.9));
}

.entry-card--photo .entry-card__visual::before {
  inset: 12% 12%;
  position: absolute;
  border-radius: 26px;
  border: 1px solid rgba(244, 236, 220, 0.22);
  box-shadow: inset 0 0 0 1px rgba(244, 236, 220, 0.08);
}

.entry-card--photo .entry-card__visual::after {
  width: 20%;
  height: 70%;
  left: 18%;
  top: -12%;
  background: linear-gradient(180deg, rgba(255, 243, 212, 0.24), rgba(255, 243, 212, 0));
  filter: blur(8px);
  transform: rotate(10deg);
}

.entry-card--photo .entry-card__copy,
.entry-card--photo .entry-card__copy p {
  color: #f1ebe1;
}

.entry-card--photo .button {
  background: rgba(255, 255, 255, 0.14);
  color: #f1ebe1;
  border-color: rgba(255, 255, 255, 0.2);
}

.entry-card:hover .entry-card__visual,
.frame-panel:hover .frame-panel__visual {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.story-note {
  padding: 34px;
}

.story-note::before {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -24%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(95, 108, 86, 0.12);
  opacity: 0.42;
  animation: orbit-soft 16s linear infinite;
}

.story-note strong {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(47, 50, 45, 0.56);
}

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

.mini-card {
  min-height: 280px;
  padding: 28px;
}

.mini-card__visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: transform 420ms ease, filter 420ms ease;
}

.mini-card__visual::before,
.mini-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.mini-card--gift .mini-card__visual::before {
  width: 52%;
  height: 34%;
  left: 18%;
  top: 20%;
  background: linear-gradient(160deg, rgba(242, 228, 197, 0.74), rgba(185, 165, 126, 0.08));
}

.mini-card--gift .mini-card__visual::after {
  width: 18%;
  height: 54%;
  left: 32%;
  bottom: -10%;
  background: linear-gradient(180deg, rgba(111, 131, 102, 0.78), rgba(111, 131, 102, 0));
  transform: rotate(-8deg);
}

.mini-card--experience .mini-card__visual::before {
  inset: 18% 18%;
  border-radius: 24px;
  border: 1px solid rgba(95, 108, 86, 0.11);
}

.mini-card--experience .mini-card__visual::after {
  width: 32%;
  height: 12%;
  right: 12%;
  bottom: 16%;
  background: linear-gradient(140deg, rgba(117, 132, 109, 0.72), rgba(117, 132, 109, 0));
}

.mini-card--photo .mini-card__visual::before {
  inset: 14% 14%;
  border-radius: 22px;
  border: 1px solid rgba(244, 236, 220, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.mini-card--photo .mini-card__visual::after {
  width: 18%;
  height: 66%;
  left: 14%;
  top: -10%;
  background: linear-gradient(180deg, rgba(255, 243, 212, 0.18), rgba(255, 243, 212, 0));
}

.mini-card--photo {
  background: linear-gradient(180deg, rgba(51, 55, 45, 0.92), rgba(92, 83, 70, 0.86));
}

.mini-card--photo h3,
.mini-card--photo p {
  color: #f2ebe1;
}

.mini-card:hover .mini-card__visual {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-grid li {
  position: relative;
  padding: 26px;
  min-height: 170px;
  border-right: 1px solid rgba(95, 108, 86, 0.12);
  display: grid;
  align-content: end;
  gap: 10px;
  overflow: hidden;
}

.service-grid li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 26px;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 143, 108, 0.34), rgba(120, 143, 108, 0));
  animation: pulse-soft 7s ease-in-out infinite;
}

.service-grid li:last-child {
  border-right: 0;
}

.service-grid strong {
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.frame-panel {
  min-height: 520px;
  padding: 34px;
  display: grid;
  align-items: end;
}

.frame-panel--custom .frame-panel__visual {
  background:
    radial-gradient(circle at top left, rgba(255, 252, 245, 0.84), transparent 20%),
    linear-gradient(180deg, rgba(234, 224, 207, 0.95), rgba(207, 219, 199, 0.74));
}

.frame-panel--custom .frame-panel__visual::before {
  inset: 11% 14%;
  border-radius: 280px 280px 34px 34px;
  border: 1px solid rgba(95, 108, 86, 0.14);
  background: rgba(255, 255, 255, 0.18);
}

.frame-panel--custom .frame-panel__visual::after {
  width: 24%;
  height: 70%;
  left: 20%;
  bottom: -10%;
  background: linear-gradient(180deg, rgba(115, 135, 104, 0.8), rgba(115, 135, 104, 0));
  filter: blur(8px);
  transform: rotate(-7deg);
}

.frame-panel--workshop .frame-panel__visual {
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.92), rgba(226, 236, 222, 0.94)),
    linear-gradient(90deg, rgba(95, 108, 86, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(95, 108, 86, 0.06) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.frame-panel--workshop .frame-panel__visual::before {
  inset: 15% 20%;
  border-radius: 26px;
  border: 1px solid rgba(95, 108, 86, 0.14);
  background: rgba(255, 255, 255, 0.26);
}

.frame-panel--workshop .frame-panel__visual::after {
  width: 40%;
  height: 14%;
  right: 10%;
  bottom: 16%;
  background: linear-gradient(140deg, rgba(120, 143, 108, 0.72), rgba(120, 143, 108, 0));
  filter: blur(8px);
}

.frame-panel--photo .frame-panel__visual {
  background:
    radial-gradient(circle at top, rgba(255, 251, 240, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(51, 56, 47, 0.97), rgba(83, 70, 58, 0.94));
}

.frame-panel--photo .frame-panel__visual::before {
  inset: 10% 12%;
  border-radius: 26px;
  border: 1px solid rgba(244, 236, 220, 0.2);
}

.frame-panel--photo .frame-panel__visual::after {
  width: 20%;
  height: 72%;
  left: 18%;
  top: -10%;
  background: linear-gradient(180deg, rgba(255, 245, 218, 0.2), rgba(255, 245, 218, 0));
  filter: blur(8px);
  transform: rotate(10deg);
}

.frame-panel__copy {
  position: relative;
  z-index: 1;
  max-width: 22rem;
  display: grid;
  gap: 12px;
  transform: translateZ(26px);
}

.frame-panel__copy h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(0.98rem, 1.56vw, 1.38rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.frame-panel--photo .frame-panel__copy,
.frame-panel--photo .frame-panel__copy p {
  color: #f1ebe1;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.info-list li {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr);
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(95, 108, 86, 0.12);
}

.info-list li span {
  max-width: none;
  text-align: left;
  word-break: break-word;
}

.cta-panel,
.contact-card {
  padding: 34px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: end;
}

.consult-card {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(220px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.consult-card .info-list a {
  color: inherit;
  text-decoration: none;
}

.consult-card__qr {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.consult-card__qr-frame {
  width: min(100%, 250px);
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(95, 108, 86, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 231, 0.96)),
    radial-gradient(circle at top, rgba(214, 224, 208, 0.18), transparent 38%);
  box-shadow: 0 16px 34px rgba(51, 44, 31, 0.08);
}

.consult-card__qr-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.consult-card__qr p {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(47, 50, 45, 0.58);
}

.consult-card.is-open {
  animation: booking-success-in 420ms ease both;
}

.cta-panel__copy h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(0.98rem, 1.52vw, 1.34rem);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.footer {
  padding: 0 0 54px;
}

.footer__inner {
  width: var(--content);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(95, 108, 86, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
}

.footer__inner p {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(47, 50, 45, 0.58);
}

.scroll-progress {
  position: fixed;
  right: 20px;
  top: 110px;
  bottom: 24px;
  width: 18px;
  z-index: 25;
  pointer-events: none;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.scroll-progress::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(95, 108, 86, 0.14);
}

.scroll-progress__fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(95, 108, 86, 0.84), rgba(183, 152, 90, 0.54));
  transform-origin: top center;
  transform: scaleY(var(--progress));
  box-shadow: 0 0 16px rgba(183, 152, 90, 0.24);
}

.scroll-progress__dot {
  position: absolute;
  top: calc(var(--progress) * (100% - 22px));
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(95, 108, 86, 0.22);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  transition: top 140ms ease-out;
}

.hero-art__caption::before,
.contact-card__copy::before,
.cta-panel__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 108, 86, 0.36), rgba(95, 108, 86, 0));
}

.hero-art__caption::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  animation: pulse-soft 6s ease-in-out infinite;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-home .hero-art {
  min-height: 86vh;
  border-radius: 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(230, 218, 196, 0.08)),
    linear-gradient(160deg, rgba(233, 224, 208, 0.96), rgba(214, 228, 206, 0.86));
}

.page-home .hero-art::before {
  inset: 8% 7% 12% 18%;
  border-radius: 58px;
}

.page-home .hero-art::after {
  width: 44%;
  height: 44%;
  right: 4%;
  top: 6%;
}

.page-home .hero-art__couture {
  left: auto;
  right: 28px;
  top: 26px;
}

.page-home .hero-art__layer--arch {
  left: 18%;
  right: 8%;
  top: 9%;
  bottom: 8%;
}

.page-home .hero-art__layer--stem {
  width: 26%;
  height: 90%;
  left: 9%;
  bottom: -20%;
}

.page-home .hero-art__layer--petal {
  width: 30%;
  height: 26%;
  right: 6%;
  bottom: 16%;
}

.page-home h1 {
  font-size: clamp(1.92rem, 4vw, 3.68rem);
  line-height: 1.12;
  max-width: 10em;
}

.page-home .hero::before,
.page-home .hero::after {
  display: none;
}

.page-home .hero-cover__copy p {
  max-width: 22rem;
  font-size: 1.02rem;
}

.page-home .hero-links {
  margin-top: 4px;
}

.page-custom h1,
.page-workshop h1,
.page-photo h1,
.page-booking h1 {
  font-size: clamp(1.34rem, 2.8vw, 2.42rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
  max-width: 9em;
}

.page-booking .hero-facts {
  max-width: 32rem;
  gap: 12px;
}

.page-booking .hero__copy {
  max-width: 24rem;
  gap: 18px;
}

.page-custom .hero__wrap {
  grid-template-columns: minmax(320px, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 42px;
}

.page-custom .hero__copy {
  max-width: 24rem;
  gap: 18px;
  padding: 4vh 0 0 18px;
}

.page-custom .hero-art {
  min-height: 78vh;
  border-radius: 62px 24px 62px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(236, 228, 214, 0.06)),
    linear-gradient(160deg, rgba(238, 225, 206, 0.96), rgba(217, 226, 206, 0.92));
}

.page-custom .hero-art::before {
  inset: 10% 10% 12% 22%;
  border-radius: 40px;
}

.page-custom .hero-art__layer--arch {
  left: 24%;
  right: 14%;
  top: 10%;
  bottom: 16%;
  border-radius: 280px 280px 44px 44px;
}

.page-custom .hero-art__layer--stem {
  width: 26%;
  height: 76%;
  left: 12%;
  bottom: -14%;
  transform: rotate(-7deg);
}

.page-custom .hero-art__layer--petal {
  width: 28%;
  height: 24%;
  right: 14%;
  top: 18%;
  bottom: auto;
}

.page-custom .hero-art__caption {
  left: auto;
  right: 24px;
  width: min(360px, calc(100% - 48px));
}

.page-workshop .hero__wrap {
  grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 42px;
}

.page-workshop .hero__copy {
  max-width: 24rem;
  justify-items: start;
  text-align: left;
  padding: 3vh 0 0 18px;
}

.page-workshop .hero-options {
  width: auto;
}

.page-workshop .hero__actions {
  justify-content: flex-start;
}

.page-workshop .hero-art {
  width: auto;
  min-height: 72vh;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(250, 247, 241, 0.86), rgba(231, 239, 229, 0.96)),
    linear-gradient(90deg, rgba(95, 108, 86, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(95, 108, 86, 0.06) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}

.page-workshop .hero-art::before {
  inset: 14% 18%;
  border-radius: 30px;
}

.page-workshop .hero-art::after {
  width: 30%;
  height: 30%;
  left: 35%;
  top: 18%;
}

.page-workshop .hero-art__layer--arch {
  left: 30%;
  right: 30%;
  top: 16%;
  bottom: 28%;
  border-radius: 30px;
}

.page-workshop .hero-art__layer--stem {
  width: 46%;
  height: 14%;
  left: 27%;
  bottom: 19%;
  border-radius: 999px;
  background: linear-gradient(140deg, rgba(120, 143, 108, 0.74), rgba(120, 143, 108, 0.04));
  filter: blur(8px);
  transform: none;
  animation: breathe 10s ease-in-out infinite;
}

.page-workshop .hero-art__layer--petal {
  width: 18%;
  height: 18%;
  right: 18%;
  bottom: 22%;
}

.page-workshop .hero-art__caption {
  left: auto;
  right: 24px;
  width: min(380px, calc(100% - 48px));
  transform: none;
  justify-content: flex-start;
  text-align: left;
}

.page-photo .hero__wrap {
  grid-template-columns: minmax(540px, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 42px;
}

.page-photo .hero__copy {
  order: 1;
  max-width: 24rem;
  gap: 18px;
  padding: 3vh 0 0 18px;
}

.page-photo .hero .eyebrow,
.page-photo .hero__copy p {
  color: rgba(47, 50, 45, 0.68);
}

.page-photo .hero-art {
  order: 2;
  min-height: 82vh;
  border-radius: 40px;
  background:
    radial-gradient(circle at top, rgba(255, 251, 240, 0.36), transparent 26%),
    linear-gradient(180deg, rgba(90, 83, 72, 0.78), rgba(221, 213, 199, 0.94));
}

.page-photo .hero-art::before {
  inset: 8% 10%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top left, rgba(255, 245, 221, 0.26), transparent 28%);
}

.page-photo .hero-art::after {
  width: 18%;
  height: 86%;
  left: 14%;
  top: -6%;
  right: auto;
  background: linear-gradient(180deg, rgba(255, 242, 210, 0.22), rgba(255, 242, 210, 0));
  filter: blur(8px);
}

.page-photo .hero-art__layer--arch {
  left: 22%;
  right: 18%;
  top: 14%;
  bottom: 14%;
  border-radius: 26px;
  border-color: rgba(244, 236, 220, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.page-photo .hero-art__layer--stem {
  width: 34%;
  height: 56%;
  left: auto;
  right: 18%;
  bottom: 10%;
  background:
    radial-gradient(circle at 40% 24%, rgba(244, 232, 220, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(129, 114, 91, 0.42), rgba(129, 114, 91, 0));
  filter: blur(3px);
  transform: none;
  animation: breathe 12s ease-in-out infinite;
}

.page-photo .hero-art__layer--petal {
  width: 24%;
  height: 70%;
  right: 12%;
  top: -8%;
  bottom: auto;
  border-radius: 40%;
  background: linear-gradient(180deg, rgba(255, 245, 218, 0.18), rgba(255, 245, 218, 0));
}

.page-photo .hero-art__caption {
  left: auto;
  right: 26px;
  width: min(380px, calc(100% - 52px));
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(95, 108, 86, 0.12);
}

.page-photo .hero-art__caption strong,
.page-photo .hero-art__caption span {
  color: rgba(242, 235, 225, 0.82);
}

.page-booking .hero__wrap {
  grid-template-columns: minmax(280px, 0.62fr) minmax(500px, 1.08fr);
  gap: 46px;
}

.page-booking .hero__copy {
  max-width: 20rem;
  gap: 16px;
}

.page-booking .hero-art {
  min-height: 72vh;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.92), rgba(234, 240, 232, 0.82)),
    linear-gradient(180deg, rgba(95, 108, 86, 0.03), rgba(95, 108, 86, 0.03));
}

.page-booking .hero-art::before {
  inset: 10% 10%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(
      0deg,
      rgba(95, 108, 86, 0.05),
      rgba(95, 108, 86, 0.05) 1px,
      transparent 1px,
      transparent 34px
    );
}

.page-booking .hero-art::after {
  width: 42%;
  height: 42%;
  right: 8%;
  top: auto;
  bottom: 10%;
  background: radial-gradient(circle, rgba(214, 223, 205, 0.42), transparent 66%);
}

.page-booking .hero-art__layer--arch {
  left: 18%;
  right: 42%;
  top: 16%;
  bottom: 20%;
  border-radius: 28px;
}

.page-booking .hero-art__layer--stem {
  width: 34%;
  height: 2px;
  left: 22%;
  bottom: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 143, 108, 0.58), rgba(120, 143, 108, 0));
  filter: none;
  transform: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.page-booking .hero-art__layer--petal {
  width: 18%;
  height: 18%;
  right: 18%;
  bottom: 18%;
}

.page-booking .hero-art__caption {
  left: 24px;
  right: auto;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  justify-content: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.page-booking .hero-facts li {
  padding: 14px 16px;
  border-radius: 22px;
}

.page-booking .hero-facts strong,
.page-booking .hero-facts span {
  font-size: 0.84rem;
}

.page-booking .hero-art {
  min-height: 72vh;
}

.page-photo {
  background:
    radial-gradient(circle at top left, rgba(145, 127, 102, 0.22), transparent 36%),
    linear-gradient(180deg, #eee5d8 0%, #f2eadf 32%, #f0e7db 100%);
}

.page-photo .topbar {
  background: linear-gradient(180deg, rgba(240, 232, 221, 0.88), rgba(240, 232, 221, 0.52));
}

.page-photo .hero-art,
.page-photo .frame-panel,
.page-photo .mini-card--photo,
.page-photo .entry-card--photo {
  box-shadow: 0 34px 74px rgba(42, 34, 24, 0.18);
}

.hero--cinema {
  min-height: auto;
  padding: 28px 0 72px;
}

.hero--cinema::before,
.hero--cinema::after {
  display: none;
}

.hero-stage {
  --stage-shift: 0px;
  --pointer-x: 0px;
  --pointer-y: 0px;
  position: relative;
  overflow: hidden;
  min-height: min(86vh, 880px);
  border-radius: 56px;
  border: 1px solid rgba(95, 108, 86, 0.14);
  box-shadow: 0 42px 92px rgba(51, 44, 31, 0.14);
  background: #d9cfbf;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 18% 18%, rgba(255, 250, 242, 0.22), transparent 28%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mix-blend-mode: soft-light;
  opacity: 0.14;
  pointer-events: none;
}

.hero-stage--home {
  min-height: min(90vh, 920px);
}

.hero-stage--split {
  display: grid;
  grid-template-columns: minmax(310px, 0.62fr) minmax(0, 1fr);
  align-items: stretch;
  background: linear-gradient(90deg, rgba(244, 238, 229, 0.96) 0%, rgba(244, 238, 229, 0.92) 36%, rgba(244, 238, 229, 0.06) 58%, rgba(244, 238, 229, 0) 100%);
}

.hero-stage__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-stage__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(calc(var(--pointer-x) * 0.18), calc(var(--stage-shift) * -1), 0) scale(1.045);
  filter: saturate(0.94) contrast(0.96);
  transition: transform 700ms ease, filter 700ms ease;
}

.hero-stage__beam,
.hero-stage__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stage__beam {
  z-index: 2;
  background:
    linear-gradient(108deg, transparent 22%, rgba(255, 245, 226, 0.08) 34%, rgba(255, 247, 232, 0.44) 50%, rgba(255, 248, 236, 0.08) 64%, transparent 76%);
  transform: translate3d(calc(var(--pointer-x) * 0.24), calc(var(--stage-shift) * -0.36), 0);
  mix-blend-mode: screen;
  opacity: 0.74;
  animation: beam-sweep 18s ease-in-out infinite alternate;
}

.hero-stage__beam--photo {
  background:
    linear-gradient(102deg, transparent 36%, rgba(255, 240, 215, 0.08) 48%, rgba(255, 244, 224, 0.26) 56%, rgba(255, 240, 215, 0.08) 64%, transparent 74%);
  opacity: 0.56;
}

.hero-stage__veil {
  z-index: 2;
  background: linear-gradient(90deg, rgba(35, 28, 18, 0.64) 0%, rgba(35, 28, 18, 0.34) 22%, rgba(35, 28, 18, 0.1) 44%, rgba(35, 28, 18, 0) 68%);
}

.hero-stage__veil--dark {
  background: linear-gradient(90deg, rgba(26, 21, 17, 0.28) 0%, rgba(26, 21, 17, 0.08) 38%, rgba(26, 21, 17, 0) 70%);
}

.hero-stage__copy {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  gap: 18px;
  max-width: 29rem;
  padding: clamp(34px, 5vw, 68px);
}

.hero-stage__copy--cover {
  position: absolute;
  left: clamp(34px, 5vw, 72px);
  bottom: 148px;
  max-width: min(31rem, 42vw);
  padding: 0;
  color: #f8f3ea;
}

.hero-stage__copy--cover .eyebrow,
.hero-stage__copy--cover p,
.hero-stage__copy--cover h1 {
  color: inherit;
}

.hero-stage__copy--cover .eyebrow {
  color: rgba(248, 243, 234, 0.78);
}

.hero-stage__copy--cover p {
  color: rgba(248, 243, 234, 0.82);
}

.hero-stage__copy h1 {
  max-width: 9.4em;
}

.hero-stage__caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: min(360px, calc(100% - 48px));
  max-width: calc(100% - 48px);
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 34px rgba(44, 36, 24, 0.12);
  color: #f8f3ea;
}

.hero-stage__caption strong,
.hero-stage__caption span {
  color: inherit;
}

.hero-stage__caption strong {
  display: block;
  margin-bottom: 6px;
}

.cover-directory {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  transform: translateY(calc(var(--stage-shift) * 0.12));
}

.cover-directory a,
.cover-directory button {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  min-height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(44, 36, 24, 0.12);
  transition: transform 320ms ease, border-color 320ms ease, background-color 320ms ease;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.cover-directory a:hover,
.cover-directory button:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.cover-directory strong {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: rgba(248, 243, 234, 0.72);
}

.cover-directory span {
  font-family: var(--heading);
  font-size: 1.06rem;
  line-height: 1.18;
  color: #f8f3ea;
}

.section--tight {
  padding-top: 0;
  padding-bottom: 72px;
}

.mode-switch,
.scene-switch,
.flow-line,
.booking-rules {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(95, 108, 86, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.26)),
    rgba(255, 255, 255, 0.44);
  box-shadow: 0 24px 48px rgba(51, 44, 31, 0.08);
}

.mode-switch,
.scene-switch,
.flow-line {
  padding: 28px;
}

.mode-switch::before,
.scene-switch::before,
.flow-line::before,
.booking-rules::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 250, 244, 0.74), transparent 28%);
  pointer-events: none;
}

.mode-switch__tabs,
.scene-switch__tabs {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.mode-switch__tab,
.scene-switch__tab {
  appearance: none;
  border: 1px solid rgba(95, 108, 86, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(47, 50, 45, 0.72);
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 220ms ease, color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.mode-switch__tab:hover,
.scene-switch__tab:hover,
.mode-switch__tab.is-active,
.scene-switch__tab.is-active {
  color: var(--ink);
  border-color: rgba(95, 108, 86, 0.26);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-2px);
}

.mode-switch__panel,
.scene-switch__panel {
  position: relative;
  z-index: 1;
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(247, 242, 234, 0.82);
  border: 1px solid rgba(95, 108, 86, 0.1);
}

.mode-switch__pane,
.scene-switch__note {
  display: none;
  gap: 14px;
  max-width: 40rem;
}

.mode-switch__pane.is-active,
.scene-switch__note.is-active {
  display: grid;
}

.mode-switch__index {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: rgba(47, 50, 45, 0.46);
}

.mode-switch h2,
.scene-switch h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.28rem, 2vw, 1.86rem);
  line-height: 1.2;
}

.mode-switch p,
.scene-switch p,
.inline-rule {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--muted);
}

.inline-rule {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(95, 108, 86, 0.12);
}

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

.flow-line::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 152, 90, 0.08), rgba(183, 152, 90, 0.44), rgba(183, 152, 90, 0.08));
}

.flow-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 26px 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(95, 108, 86, 0.1);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.flow-step::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(183, 152, 90, 0.3);
  box-shadow: 0 0 0 10px rgba(183, 152, 90, 0.06);
}

.flow-step.is-active,
.flow-step:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 152, 90, 0.22);
  box-shadow: 0 18px 36px rgba(51, 44, 31, 0.08);
}

.flow-step strong {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: rgba(47, 50, 45, 0.46);
}

.flow-step h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 1.2rem;
  line-height: 1.18;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.scene-switch__panel {
  min-height: 210px;
}

.scene-switch__note h2 {
  max-width: 16em;
}

.booking-rules {
  padding: 34px;
}

.booking-rules .info-list {
  gap: 0;
}

.booking-rules .info-list li {
  grid-template-columns: 7rem minmax(0, 1fr);
}

.button.is-pressed {
  transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(0.98);
}

.page-home .page {
  width: min(1320px, calc(100vw - 40px));
}

.page-home .hero-stage__copy--cover {
  left: clamp(30px, 4.4vw, 64px);
  bottom: 164px;
  max-width: min(28rem, 35vw);
  gap: 16px;
}

.page-home .hero-stage__beam {
  opacity: 0.42;
}

.page-home .hero-stage__veil {
  background: linear-gradient(90deg, rgba(35, 28, 18, 0.76) 0%, rgba(35, 28, 18, 0.44) 22%, rgba(35, 28, 18, 0.16) 44%, rgba(35, 28, 18, 0) 68%);
}

.page-home .hero-stage__copy h1 {
  max-width: none;
  font-size: clamp(2.32rem, 4.7vw, 4.46rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-home .hero-stage__copy h1 span {
  display: block;
}

.page-home .hero-stage__copy p {
  max-width: 17rem;
  font-size: 1rem;
  line-height: 1.72;
}

.page-home .hero__actions {
  margin-top: 2px;
}

.page-home .cover-directory {
  left: 22px;
  right: 22px;
  bottom: 22px;
  gap: 12px;
}

.page-home .cover-directory a {
  min-height: 84px;
  padding: 16px 18px 18px;
  gap: 6px;
  background: linear-gradient(180deg, rgba(41, 33, 24, 0.4), rgba(41, 33, 24, 0.16));
  border-color: rgba(255, 255, 255, 0.14);
}

.page-home .cover-directory span {
  font-size: 1rem;
}

.page-custom .hero-stage__media,
.page-workshop .hero-stage__media,
.page-booking .hero-stage__media {
  min-height: 100%;
}

.page-photo .hero-stage {
  background: linear-gradient(90deg, rgba(236, 230, 221, 0.96) 0%, rgba(236, 230, 221, 0.92) 34%, rgba(236, 230, 221, 0.06) 54%, rgba(236, 230, 221, 0) 100%);
}

.page-photo .hero-stage__caption {
  background: linear-gradient(180deg, rgba(29, 24, 18, 0.42), rgba(29, 24, 18, 0.18));
}

.page-booking .hero-stage__caption {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.32));
}

.page-booking .hero-stage__caption strong,
.page-booking .hero-stage__caption span {
  color: inherit;
}

.page-booking .hero--cinema {
  padding-bottom: 152px;
}

.page-booking .hero-stage {
  min-height: min(72vh, 760px);
}

.page-booking .hero-stage--split {
  grid-template-columns: minmax(252px, 0.42fr) minmax(0, 1fr);
  background: linear-gradient(90deg, rgba(244, 238, 229, 0.9) 0%, rgba(244, 238, 229, 0.82) 22%, rgba(244, 238, 229, 0.14) 44%, rgba(244, 238, 229, 0) 62%);
}

.page-booking .hero-stage__copy {
  align-self: center;
  max-width: 21rem;
  gap: 14px;
  padding: clamp(34px, 4vw, 52px);
}

.page-booking .hero-stage__copy h1 {
  max-width: 5em;
  font-size: clamp(2.1rem, 3.1vw, 3.4rem);
  line-height: 1.04;
}

.page-booking .hero-stage__copy p {
  max-width: 18rem;
}

.hero-start-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(183, 152, 90, 0.18);
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(47, 50, 45, 0.68);
}

.hero-start-note::before {
  content: "";
  width: 16px;
  height: 1px;
  background: rgba(183, 152, 90, 0.5);
}

.page-booking .hero-stage__caption {
  min-width: auto;
  max-width: none;
  padding: 12px 18px;
}

.page-booking .booking-shell {
  position: relative;
  z-index: 4;
  margin-top: -112px;
}

.booking-shell {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.booking-main,
.booking-side {
  display: grid;
  gap: 22px;
}

.booking-side {
  position: sticky;
  top: 110px;
}

.booking-panel {
  --mag-x: 0px;
  --mag-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-shift: 0px;
  position: relative;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(70, 81, 67, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(250, 246, 238, 0.92)),
    radial-gradient(circle at top right, rgba(255, 247, 229, 0.34), transparent 40%);
  box-shadow: 0 24px 56px rgba(51, 44, 31, 0.08);
  overflow: hidden;
  transform:
    translate3d(var(--mag-x), var(--mag-y), 0)
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--tilt-shift));
  transform-style: preserve-3d;
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    background-color 280ms ease;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(183, 152, 90, 0.12);
  pointer-events: none;
}

.booking-panel::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(183, 152, 90, 0.16);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
  opacity: 0.62;
  pointer-events: none;
}

.booking-panel::before,
.booking-panel::after {
  display: none;
}

.booking-panel--primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 244, 235, 0.96)),
    radial-gradient(circle at 84% 12%, rgba(214, 223, 205, 0.28), transparent 28%),
    radial-gradient(circle at 12% 10%, rgba(255, 244, 222, 0.34), transparent 32%);
}

.booking-panel--primary::before,
.booking-panel--primary::after,
.booking-panel--form::before {
  display: block;
}

.booking-panel--form::after,
.booking-panel--summary::before,
.booking-panel--summary::after {
  display: none;
}

.booking-panel--summary {
  padding: 24px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 16px 32px rgba(51, 44, 31, 0.05);
}

.booking-step__head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.booking-step__head h2 {
  margin: 4px 0 0;
  font-family: var(--heading);
  font-size: clamp(1.34rem, 1.7vw, 1.74rem);
  line-height: 1.16;
  letter-spacing: 0.01em;
}

.booking-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(183, 152, 90, 0.16);
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--heading);
  font-size: 0.98rem;
  color: var(--gold);
  box-shadow: none;
}

.booking-choice-grid,
.booking-session-grid {
  display: grid;
  gap: 16px;
}

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

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

.booking-choice,
.booking-session-card {
  --mag-x: 0px;
  --mag-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-shift: 0px;
  position: relative;
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(70, 81, 67, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
  transform:
    translate3d(var(--mag-x), var(--mag-y), 0)
    perspective(1200px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--tilt-shift));
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

.booking-choice::before,
.booking-session-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.28) 42%, transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0;
  transform: translateX(-16%);
  transition: opacity 280ms ease, transform 320ms ease;
  pointer-events: none;
}

.booking-choice::after,
.booking-session-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 152, 90, 0.46), rgba(183, 152, 90, 0));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.24;
  transition: transform 260ms ease, opacity 260ms ease;
}

.booking-choice:hover,
.booking-choice.is-active,
.booking-session-card:hover,
.booking-session-card.is-active {
  border-color: rgba(183, 152, 90, 0.28);
  box-shadow: 0 12px 22px rgba(51, 44, 31, 0.05);
}

.booking-choice:hover::before,
.booking-choice.is-active::before,
.booking-session-card:hover::before,
.booking-session-card.is-active::before {
  opacity: 1;
  transform: translateX(0);
}

.booking-choice:hover::after,
.booking-choice.is-active::after,
.booking-session-card:hover::after,
.booking-session-card.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.booking-choice.is-active,
.booking-session-card.is-active {
  background: rgba(255, 251, 244, 0.92);
}

.booking-choice[disabled],
.booking-session-card[disabled],
.booking-session-card.is-disabled {
  cursor: default;
  opacity: 0.68;
  box-shadow: none;
}

.booking-choice strong,
.booking-session-card strong {
  font-family: var(--heading);
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.18;
}

.booking-choice p,
.booking-choice__desc,
.booking-choice__summary,
.booking-choice__tail,
.booking-session-card__desc,
.booking-session-card__meta {
  color: var(--muted);
  line-height: 1.62;
}

.booking-choice p {
  margin: 0;
}

.booking-choice__desc {
  font-size: 0.92rem;
}

.booking-choice__serial,
.booking-session-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: rgba(47, 50, 45, 0.46);
  text-transform: uppercase;
}

.booking-choice__serial::before,
.booking-session-card__eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(183, 152, 90, 0.46);
}

.booking-choice__tail {
  font-size: 0.9rem;
}

.booking-choice--category,
.booking-choice--option {
  min-height: auto;
  box-shadow: none;
}

.booking-choice--category::before,
.booking-choice--category::after,
.booking-choice--option::before,
.booking-choice--option::after {
  display: none;
}

.booking-choice--category:hover,
.booking-choice--category.is-active,
.booking-choice--option:hover,
.booking-choice--option.is-active {
  transform: none;
  box-shadow: none;
}

.booking-choice--category {
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.booking-choice--category.is-active {
  border-color: rgba(183, 152, 90, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(247, 239, 225, 0.88)),
    rgba(255, 251, 244, 0.94);
  box-shadow:
    0 14px 28px rgba(51, 44, 31, 0.06),
    inset 0 0 0 1px rgba(183, 152, 90, 0.14);
}

.booking-choice--category.is-active strong {
  color: rgba(47, 38, 26, 0.96);
}

.booking-choice--category.is-active .booking-choice__summary,
.booking-choice--category.is-active .booking-choice__serial {
  color: rgba(92, 72, 33, 0.72);
}

.booking-choice--category.is-active .booking-choice__serial::before {
  background: rgba(183, 152, 90, 0.72);
}

.booking-choice--category strong {
  font-size: 1.1rem;
}

.booking-choice--category .booking-choice__summary,
.booking-choice--option .booking-choice__summary {
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-choice--option {
  gap: 6px;
  padding: 16px 18px;
  border-radius: 18px;
}

.booking-choice--option-rich strong {
  margin-top: 2px;
}

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

.booking-session-card {
  padding: 0;
  gap: 0;
}

.booking-session-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 0.94;
  overflow: hidden;
}

.booking-session-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.booking-session-card:hover .booking-session-card__media img,
.booking-session-card.is-active .booking-session-card__media img {
  transform: scale(1.04);
}

.booking-session-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.booking-status {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  backdrop-filter: blur(12px);
}

.booking-status--upcoming {
  color: #243424;
  background: rgba(214, 235, 209, 0.82);
  border: 1px solid rgba(73, 108, 70, 0.12);
}

.booking-status--ended {
  color: rgba(47, 50, 45, 0.74);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(70, 81, 67, 0.12);
}

.booking-next-note,
.booking-selected,
.booking-empty {
  margin: 0;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid rgba(183, 152, 90, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 241, 229, 0.78));
  color: var(--muted);
  line-height: 1.7;
}

.booking-selected.is-empty {
  padding: 22px 20px;
  color: rgba(47, 50, 45, 0.78);
  border-style: dashed;
}

.booking-preview {
  display: grid;
}

.booking-preview__card {
  --mag-x: 0px;
  --mag-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-shift: 0px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 24px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(70, 81, 67, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 244, 235, 0.96)),
    radial-gradient(circle at top right, rgba(212, 222, 206, 0.24), transparent 32%);
  box-shadow: 0 28px 56px rgba(51, 44, 31, 0.08);
  overflow: hidden;
  transform:
    translate3d(var(--mag-x), var(--mag-y), 0)
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(var(--tilt-shift));
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.booking-preview__media {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
}

.booking-preview__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 22, 16, 0.04), rgba(28, 22, 16, 0.18)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 48%);
  pointer-events: none;
}

.booking-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 460ms ease;
}

.booking-preview__card:hover .booking-preview__media img {
  transform: scale(1.05);
}

.booking-preview__copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 8px 4px 8px 0;
}

.booking-preview__copy h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.72rem, 2.1vw, 2.3rem);
  line-height: 1.12;
}

.booking-preview__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.86;
}

.booking-preview__facts,
.booking-rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-preview__facts {
  display: grid;
  gap: 10px;
}

.booking-preview__facts li,
.booking-rule-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.booking-preview__facts li::before,
.booking-rule-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(183, 152, 90, 0.62);
  box-shadow: 0 0 0 8px rgba(183, 152, 90, 0.08);
}

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

.booking-preview__stats div,
.booking-preview__note {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.56);
}

.booking-preview__stats strong,
.booking-preview__note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(47, 50, 45, 0.48);
}

.booking-preview__stats span,
.booking-preview__note span {
  font-family: var(--heading);
  font-size: 1.1rem;
  line-height: 1.28;
}

.booking-form {
  display: grid;
  gap: 22px;
}

.booking-panel--form {
  max-width: 820px;
}

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

.booking-field,
.booking-choice-row,
.booking-dynamic__group {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.booking-field {
  display: grid;
  gap: 10px;
  padding: 18px 18px 16px;
}

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

.booking-field--check {
  align-content: start;
}

.booking-field > span,
.booking-inline-label,
.booking-group__title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(47, 50, 45, 0.5);
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(70, 81, 67, 0.16);
  border-radius: 0;
  background: transparent;
  outline: none;
  color: var(--ink);
  font: inherit;
  line-height: 1.7;
  padding-bottom: 10px;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(47, 50, 45, 0.38);
}

.booking-field textarea {
  min-height: 102px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-bottom-color: rgba(183, 152, 90, 0.48);
}

.booking-field input[type="file"] {
  padding: 12px 14px;
  border: 1px dashed rgba(183, 152, 90, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.booking-field input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 9px 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(183, 152, 90, 0.14);
  color: var(--ink);
  cursor: pointer;
}

.booking-field small {
  color: rgba(47, 50, 45, 0.52);
}

.booking-field small.is-error {
  color: #9a4430;
}

.booking-dynamic {
  display: grid;
  gap: 16px;
}

.booking-dynamic__group {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.booking-choice-row {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.booking-choice-row--inline {
  grid-template-columns: minmax(0, 1fr);
}

.booking-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(70, 81, 67, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.booking-pill.is-active,
.booking-pill:hover {
  border-color: rgba(183, 152, 90, 0.28);
  background: rgba(255, 251, 243, 0.92);
  box-shadow: 0 14px 28px rgba(61, 47, 28, 0.08);
}

.booking-check {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  line-height: 1.66;
}

.booking-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.booking-form__error,
.booking-field__error {
  color: #9a4430;
}

.booking-form__error {
  margin: 0;
  line-height: 1.7;
}

.booking-field__error {
  display: block;
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.6;
}

.booking-field.is-invalid,
.booking-choice-row.is-invalid,
.booking-dynamic__group.is-invalid {
  border-color: rgba(154, 68, 48, 0.38);
  box-shadow: 0 0 0 4px rgba(154, 68, 48, 0.08);
}

.booking-submit {
  display: flex;
  justify-content: flex-start;
}

.booking-submit .button {
  min-width: 180px;
}

.booking-submit .button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.booking-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.booking-summary-list li {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.booking-summary-list strong {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(47, 50, 45, 0.46);
}

.booking-summary-list span {
  font-family: var(--heading);
  font-size: 0.98rem;
  line-height: 1.35;
}

.booking-rule-list {
  display: grid;
  gap: 14px;
}

.booking-success {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(35, 28, 18, 0.32);
  backdrop-filter: blur(14px);
}

.booking-success__card {
  position: relative;
  width: min(560px, 100%);
  padding: 36px;
  border-radius: 32px;
  border: 1px solid rgba(183, 152, 90, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 231, 0.98)),
    radial-gradient(circle at top right, rgba(212, 222, 206, 0.26), transparent 32%);
  box-shadow: 0 28px 66px rgba(35, 28, 18, 0.18);
  animation: booking-success-in 360ms ease;
}

.booking-success__card h3 {
  margin: 8px 0 14px;
  font-family: var(--heading);
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
  line-height: 1.14;
}

.booking-success__card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.booking-success__meta {
  margin-top: 14px !important;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.booking-success__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(70, 81, 67, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.booking-success-open {
  overflow: hidden;
}

[data-field-group][hidden] {
  display: none !important;
}

.page-booking .hero--cinema {
  padding-bottom: 118px;
}

.booking-journey {
  width: var(--content);
  margin: -88px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: start;
}

.booking-stage {
  position: relative;
}

.booking-stage__sticky {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}

.booking-stage__intro {
  display: grid;
  gap: 10px;
  padding: 0 4px;
}

.booking-stage__intro h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.82rem, 2.4vw, 2.5rem);
  line-height: 1.08;
}

.booking-stage__intro p {
  margin: 0;
  max-width: 24rem;
  color: var(--muted);
  line-height: 1.82;
}

.booking-stage__preview {
  display: grid;
}

.booking-stage__preview .booking-preview__card,
.booking-stage__placeholder {
  border-radius: 34px;
  border: 1px solid rgba(70, 81, 67, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 231, 0.98)),
    radial-gradient(circle at top right, rgba(212, 222, 206, 0.18), transparent 34%);
  box-shadow: 0 28px 62px rgba(51, 44, 31, 0.1);
  overflow: hidden;
}

.booking-stage__preview .booking-preview__card {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 12px;
}

.booking-stage__preview .booking-preview__media,
.booking-stage__placeholder-media {
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
}

.booking-stage__preview .booking-preview__media img,
.booking-stage__placeholder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-stage__preview .booking-preview__copy,
.booking-stage__placeholder-copy {
  display: grid;
  gap: 14px;
  padding: 20px 12px 14px;
}

.booking-stage__preview .booking-preview__copy h3,
.booking-stage__placeholder-copy h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.78rem, 2.1vw, 2.34rem);
  line-height: 1.12;
}

.booking-stage__preview .booking-preview__copy p,
.booking-stage__placeholder-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.booking-stage__placeholder {
  display: grid;
  gap: 0;
  padding: 12px;
}

.booking-stage__meta {
  display: grid;
  gap: 14px;
}

.booking-stage__meta-block {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 30px rgba(51, 44, 31, 0.05);
}

.booking-stage__meta-block > .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.booking-rule-list--compact {
  display: grid;
  gap: 12px;
}

.booking-flow {
  display: grid;
  gap: 22px;
  scroll-snap-type: y proximity;
}

.booking-panel--step {
  scroll-snap-align: start;
}

.booking-panel--form {
  max-width: none;
}

.booking-panel--form .booking-selected {
  margin-bottom: 2px;
}

.page-booking .hero--cinema {
  padding-bottom: 132px;
}

.page-booking .hero-stage--booking-cover {
  min-height: min(88vh, 920px);
}

.page-booking .hero-stage--booking-cover > .hero-stage__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 68% center;
}

.page-booking .hero-stage--booking-cover .hero-stage__veil--dark {
  background: linear-gradient(180deg, rgba(26, 21, 17, 0.04) 0%, rgba(26, 21, 17, 0.12) 44%, rgba(26, 21, 17, 0.54) 100%);
}

.page-booking .hero-stage--booking-cover .hero-stage__copy--cover {
  left: clamp(34px, 5vw, 72px);
  bottom: 72px;
  width: fit-content;
  max-width: none;
  display: flex;
  align-items: end;
  gap: 0;
}

.page-booking .hero-stage--booking-cover .hero-stage__copy--cover h1 {
  max-width: 6.6em;
  margin: 0;
  font-size: clamp(2.16rem, 3.4vw, 3.7rem);
  line-height: 1.04;
}

.page-booking .hero-stage--booking-cover .hero-stage__copy--cover p {
  margin: 0;
  max-width: 16em;
  font-size: 1rem;
  line-height: 1.74;
}

.hero-start-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.hero-start-link:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 152, 90, 0.28);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 30px rgba(49, 41, 28, 0.12);
}

.hero-facts--overlay {
  margin-top: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(18rem, 100%);
}

.hero-facts--overlay li {
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(12px);
}

.hero-facts--overlay strong,
.hero-facts--overlay span,
.hero-facts--overlay a {
  color: #f8f3ea;
}

.booking-journey--stack {
  width: min(980px, calc(100vw - 48px));
  margin: -96px auto 0;
  grid-template-columns: 1fr;
  gap: 22px;
}

.booking-journey--stack .booking-flow {
  gap: 24px;
}

.page-booking .booking-panel--primary {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 28px rgba(51, 44, 31, 0.04);
}

.page-booking .booking-panel--primary::before,
.page-booking .booking-panel--primary::after {
  display: none;
}

.booking-panel__lead {
  margin: -2px 0 18px;
  max-width: 18rem;
  color: var(--muted);
  line-height: 1.58;
}

.booking-panel--ghost {
  display: grid;
  gap: 14px;
  min-height: 164px;
  align-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 243, 234, 0.92)),
    radial-gradient(circle at top right, rgba(212, 222, 206, 0.14), transparent 36%);
}

.booking-panel--ghost h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.38rem, 1.7vw, 1.72rem);
  line-height: 1.24;
}

.booking-ghost-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-ghost-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(183, 152, 90, 0.14);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(47, 50, 45, 0.68);
  letter-spacing: 0.08em;
}

.booking-form__note {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.booking-result {
  display: grid;
  gap: 16px;
  padding-top: 6px;
}

.booking-result h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  line-height: 1.12;
}

.booking-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.booking-result__meta {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.56);
}

.booking-choice-grid--category .booking-choice {
  min-height: auto;
}

.booking-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.booking-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(70, 81, 67, 0.08);
  background: rgba(255, 255, 255, 0.34);
  color: rgba(47, 50, 45, 0.48);
  line-height: 1.2;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: border-color 240ms ease, background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.booking-track span + span {
  margin-left: 18px;
}

.booking-track span + span::before {
  content: "→";
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(183, 152, 90, 0.56);
  font-size: 0.92rem;
  letter-spacing: 0;
  line-height: 1;
}

.booking-track span.is-active,
.booking-track span.is-complete {
  border-color: rgba(183, 152, 90, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 229, 0.92));
  color: rgba(47, 50, 45, 0.92);
}

.booking-track span.is-active {
  transform: none;
  box-shadow: none;
}

.booking-contact-note {
  display: grid;
  gap: 8px;
  width: min(680px, 100%);
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(70, 81, 67, 0.1);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 34px rgba(51, 44, 31, 0.05);
}

.booking-contact-note strong {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(47, 50, 45, 0.48);
}

.booking-contact-note span {
  font-family: var(--heading);
  font-size: 1.06rem;
  line-height: 1.46;
}

[data-field-group][hidden] {
  display: none !important;
}

.booking-panel--step {
  scroll-margin-top: 112px;
}

@keyframes booking-success-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes beam-sweep {
  0% {
    transform: translate3d(-6%, 0, 0) scaleX(0.96);
    opacity: 0.26;
  }
  50% {
    transform: translate3d(0, -1%, 0) scaleX(1);
    opacity: 0.72;
  }
  100% {
    transform: translate3d(6%, -2%, 0) scaleX(1.02);
    opacity: 0.32;
  }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.66; }
  50% { transform: scale(1.05); opacity: 0.94; }
}

@keyframes sway {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-10px); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.42; transform: scale(1); }
  50% { opacity: 0.84; transform: scale(1.08); }
}

@keyframes orbit-soft {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes mist-pan {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2.5%, -2%, 0) scale(1.03); }
}

@keyframes grid-float {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-2.5%, 2.5%, 0); }
}

@media (max-width: 1024px) {
  .hero-stage--split,
  .flow-line,
  .cover-directory {
    grid-template-columns: 1fr;
  }

  .hero-stage__copy--cover {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 168px;
    max-width: none;
  }

  .flow-line::after {
    display: none;
  }

  .hero-stage__caption {
    min-width: 0;
    display: grid;
    justify-content: stretch;
    align-items: start;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .hero-links,
  .hero-options {
    grid-template-columns: 1fr;
  }

  .hero__wrap,
  .cta-panel,
  .consult-card {
    grid-template-columns: 1fr;
  }

  .page-workshop .hero__wrap,
  .page-photo .hero__wrap,
  .page-booking .hero__wrap,
  .page-custom .hero__wrap,
  .page-home .hero__wrap {
    grid-template-columns: 1fr;
  }

  .entry-grid,
  .mini-grid,
  .service-grid,
  .booking-choice-grid--category,
  .booking-session-grid,
  .booking-shell,
  .booking-preview__card {
    grid-template-columns: 1fr;
  }

  .booking-side {
    position: static;
  }

  .page-booking .hero--cinema {
    padding-bottom: 54px;
  }

  .cover-directory--booking {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    bottom: 108px;
  }

  .booking-journey--stack {
    width: min(100vw - 40px, 100vw - 40px);
    margin-top: -24px;
  }

  .booking-preview__media {
    min-height: 320px;
  }

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

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

  .service-grid li {
    border-right: 0;
    border-bottom: 1px solid rgba(95, 108, 86, 0.12);
  }

  .service-grid li:last-child {
    border-bottom: 0;
  }

  .hero-art {
    min-height: 56vh;
  }

  .page-workshop .hero-art__caption {
    left: 28px;
    right: 28px;
    width: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --content: calc(100vw - 28px);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  .topbar {
    position: static;
    padding: 10px 0 12px;
  }

  .topbar__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .brand {
    align-self: center;
    padding-left: 0;
    height: 104px;
    overflow: hidden;
  }

  .brand::before {
    left: -12px;
    width: 50px;
    height: 50px;
  }

  .nav {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 4px;
    overflow: visible;
    padding-bottom: 0;
  }

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

  .nav a {
    flex: 0 0 clamp(50px, 14vw, 58px);
    width: clamp(50px, 14vw, 58px);
    min-width: 0;
    min-height: 34px;
    padding: 8px 0;
    border-radius: 999px;
    font-size: 0.68rem;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.34);
    border-color: rgba(70, 81, 67, 0.1);
  }

  .nav a::after {
    left: 14px;
    right: 14px;
    bottom: 5px;
  }

  .topbar__inner::after,
  .hero::before,
  .hero::after,
  .scroll-progress {
    display: none;
  }

  .brand img {
    width: 140px;
    transform: translateY(-18px);
  }

  .hero {
    min-height: auto;
    padding: 18px 0 46px;
  }

  .hero--cinema {
    padding: 14px 0 38px;
  }

  .page-booking .hero--cinema {
    padding-bottom: 36px;
  }

  .hero__copy {
    gap: 16px;
  }

  .hero-stage,
  .hero-stage--home {
    min-height: min(72vh, 620px);
    border-radius: 28px;
  }

  .page-home .page {
    width: var(--content);
  }

  .page-home .hero-stage,
  .page-home .hero-stage--home {
    min-height: 520px;
  }

  .page-booking .hero-stage {
    min-height: 68vh;
  }

  .page-booking .hero-stage--booking-cover {
    min-height: 72vh;
  }

  .page-booking .hero-stage--booking-cover .hero-stage__copy--cover {
    left: 22px;
    right: 22px;
    bottom: 52px;
    max-width: none;
    width: fit-content;
    justify-content: flex-start;
  }

  .hero-stage__copy,
  .hero-stage__copy--cover {
    left: 20px;
    right: 20px;
    bottom: 112px;
    max-width: none;
    padding: 0;
  }

  .hero-stage__copy h1,
  .page-home .hero-stage__copy h1 {
    max-width: 8.5em;
    font-size: clamp(2.02rem, 11vw, 2.82rem);
    line-height: 1.02;
  }

  .hero-stage__copy p,
  .page-home .hero-stage__copy p {
    max-width: 18rem;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .page-home .hero-stage__copy--cover {
    left: 24px;
    right: 24px;
    bottom: 104px;
    max-width: none;
  }

  .page-home .hero-stage__image {
    object-position: 58% center;
  }

  .hero-stage--split .hero-stage__copy {
    position: absolute;
    bottom: 148px;
    color: #f8f3ea;
  }

  .hero-stage--split .hero-stage__copy .eyebrow,
  .hero-stage--split .hero-stage__copy p,
  .hero-stage--split .hero-stage__copy h1 {
    color: inherit;
  }

  .hero-stage--split .hero-stage__copy .eyebrow {
    color: rgba(248, 243, 234, 0.78);
  }

  .hero-stage--split .hero-stage__copy p {
    color: rgba(248, 243, 234, 0.82);
  }

  .booking-journey--stack {
    width: min(100vw - 28px, 100vw - 28px);
    margin-top: 0;
  }

  .booking-contact-note {
    width: 100%;
    padding: 18px 18px 20px;
  }

  .page-booking .hero-stage__caption,
  .page-booking .hero-facts--overlay,
  .page-booking .cover-directory--booking {
    display: none;
  }

  .hero-stage__veil {
    background: linear-gradient(180deg, rgba(35, 28, 18, 0.08) 0%, rgba(35, 28, 18, 0.12) 26%, rgba(35, 28, 18, 0.54) 100%);
  }

  .hero-stage__caption,
  .cover-directory {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-stage__caption {
    min-width: 0;
  }

  .page-booking .booking-shell {
    margin-top: 0;
  }

  .cover-directory,
  .page-home .cover-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cover-directory a,
  .cover-directory button,
  .page-home .cover-directory a {
    min-height: 68px;
    padding: 11px 9px 12px;
    border-radius: 18px;
    gap: 5px;
  }

  .cover-directory strong {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .cover-directory span,
  .page-home .cover-directory span {
    font-size: 0.84rem;
    line-height: 1.16;
  }

  .mode-switch,
  .scene-switch,
  .flow-line,
  .booking-rules,
  .booking-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-art,
  .page-home .hero-art,
  .page-custom .hero-art,
  .page-workshop .hero-art,
  .page-photo .hero-art,
  .page-booking .hero-art,
  .frame-panel,
  .entry-card {
    min-height: 420px;
  }

  .hero-cover__primary-logo {
    top: 24px;
    left: 24px;
    width: 190px;
  }

  .hero-cover__accent-logo {
    top: 84px;
    right: 24px;
    width: 52px;
  }

  .hero-cover__copy {
    left: 18px;
    right: 18px;
    bottom: 90px;
    width: auto;
    padding: 18px 18px 20px;
  }

  .hero-cover__copy p {
    max-width: none;
  }

  .hero-art__caption,
  .footer__inner {
    flex-direction: column;
    align-items: start;
  }

  .info-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .entry-card,
  .mini-card,
  .cta-panel,
  .story-note,
  .frame-panel,
  .contact-card,
  .booking-success__card {
    padding: 20px;
  }

  .booking-step__head {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }

  .booking-choice-grid,
  .booking-form__grid {
    grid-template-columns: 1fr;
  }

  .booking-field,
  .booking-choice-row,
  .booking-dynamic__group {
    border-radius: 18px;
  }

  .booking-field,
  .booking-choice-row {
    padding: 16px;
  }

  .booking-field input,
  .booking-field select,
  .booking-field textarea {
    font-size: 16px;
  }

  .booking-pill {
    min-height: 40px;
    padding: 8px 13px;
  }

  .booking-choice strong,
  .booking-session-card strong {
    font-size: 1.32rem;
  }

  .booking-preview__copy {
    padding-right: 0;
  }

  .booking-submit .button {
    width: 100%;
  }

  .home-guide__entries {
    grid-template-columns: 1fr;
  }

  .section__heading {
    padding-left: 32px;
  }

  .entry-card::after,
  .mini-card::after,
  .cta-panel::after,
  .story-note::after,
  .frame-panel::after,
  .contact-card::after {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage__image,
  .hero-stage__beam,
  .hero-stage__copy,
  .cover-directory {
    transform: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
