*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --progress: 0;
  --shell-max-width: min(78vw, 920px);
  --shell-max-height: min(72vh, 620px);
  --shell-radius: 22px;
  --page-bg: #faf8f5;
  --ink: #1c1814;
  --gold: #d4b896;
  --gold-light: #f0dfc4;
  --sidebar-width: min(360px, calc(100vw - 2rem));
  --header-height: 76px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.25, 0.64, 1);
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-inter: "Inter", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.sidebar-open {
  overflow: hidden;
}

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

/* ── Sidebar ── */

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 24, 20, 0);
  backdrop-filter: blur(0px) saturate(1);
  -webkit-backdrop-filter: blur(0px) saturate(1);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.7s var(--ease-fluid),
    visibility 0.7s var(--ease-fluid),
    background 0.7s var(--ease-fluid),
    backdrop-filter 0.85s var(--ease-fluid),
    -webkit-backdrop-filter 0.85s var(--ease-fluid);
}

.sidebar-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  background: rgba(28, 24, 20, 0.14);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 100;
  width: calc(var(--sidebar-width) + 2rem);
  padding: 0.85rem;
  pointer-events: none;
}

.sidebar-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 1.75rem 1.65rem 1.85rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 8px 32px rgba(28, 24, 20, 0.06),
    0 28px 80px rgba(28, 24, 20, 0.1);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  transform: translateX(calc(-115% - 1rem)) scale(0.94);
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
  transition:
    transform 0.85s var(--ease-fluid),
    opacity 0.65s var(--ease-fluid),
    filter 0.75s var(--ease-fluid);
}

.sidebar.is-open .sidebar-panel {
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.sidebar-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.38);
}

.sidebar-close {
  position: relative;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(28, 24, 20, 0.05);
  cursor: pointer;
  transition:
    background 0.4s var(--ease-fluid),
    transform 0.45s var(--ease-spring);
}

.sidebar-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.45s var(--ease-fluid);
}

.sidebar-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sidebar-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar-close:hover {
  background: rgba(28, 24, 20, 0.09);
  transform: rotate(90deg);
}

.sidebar-brand {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(28, 24, 20, 0.42);
  margin-bottom: 2.75rem;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.6s var(--ease-fluid) 0.1s,
    transform 0.75s var(--ease-fluid) 0.1s;
}

.sidebar.is-open .sidebar-brand {
  opacity: 1;
  transform: translateY(0);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sidebar-link {
  position: relative;
  display: block;
  padding: 0.55rem 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease-fluid),
    transform 0.75s var(--ease-fluid);
}

.sidebar.is-open .sidebar-link {
  opacity: 1;
  transform: translateY(0);
}

.sidebar.is-open .sidebar-link:nth-child(1) { transition-delay: 0.06s; }
.sidebar.is-open .sidebar-link:nth-child(2) { transition-delay: 0.1s; }
.sidebar.is-open .sidebar-link:nth-child(3) { transition-delay: 0.14s; }
.sidebar.is-open .sidebar-link:nth-child(4) { transition-delay: 0.18s; }
.sidebar.is-open .sidebar-link:nth-child(5) { transition-delay: 0.22s; }
.sidebar.is-open .sidebar-link:nth-child(6) { transition-delay: 0.26s; }

.sidebar-link span {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  color: rgba(28, 24, 20, 0.72);
  transform: translateX(0);
  transition:
    color 0.45s var(--ease-fluid),
    transform 0.55s var(--ease-fluid),
    opacity 0.45s var(--ease-fluid);
}

.sidebar-link::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
  transform: translateY(-50%);
  transition: height 0.55s var(--ease-spring);
}

.sidebar-link:hover span,
.sidebar-link:focus-visible span {
  color: var(--ink);
  transform: translateX(10px);
}

.sidebar-link:hover::before,
.sidebar-link:focus-visible::before {
  height: 60%;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 2.5rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s var(--ease-fluid) 0.28s,
    transform 0.75s var(--ease-fluid) 0.28s;
}

.sidebar.is-open .sidebar-footer {
  opacity: 1;
  transform: translateY(0);
}

.sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  transition:
    transform 0.5s var(--ease-spring),
    box-shadow 0.5s var(--ease-fluid),
    background 0.45s ease;
}

.sidebar-cta svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.5s var(--ease-fluid);
}

.sidebar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(28, 24, 20, 0.18);
  background: #2a241f;
}

.sidebar-cta:hover svg {
  transform: translateX(4px);
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-height);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  transition:
    background 0.5s var(--ease-out-expo),
    backdrop-filter 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: rgba(250, 248, 245, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(28, 24, 20, 0.06);
}

.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .top-nav-link,
.site-header.is-scrolled .sidebar-toggle {
  color: var(--ink);
}

.site-header.is-scrolled .toggle-bar {
  background: var(--ink);
}

.site-header.is-scrolled .header-cta {
  border-color: var(--ink);
  color: var(--ink);
}

.sidebar-toggle {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  transition: transform 0.4s var(--ease-out-expo);
}

.sidebar-toggle:hover {
  transform: scale(1.05);
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 0.45s var(--ease-out-expo),
    opacity 0.35s ease;
}

.sidebar-toggle.is-active .toggle-bar:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.sidebar-toggle.is-active .toggle-bar:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.site-logo {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: lowercase;
  transition: color 0.5s var(--ease-out-expo);
}

.top-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.top-nav-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.35s ease;
}

.top-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out-expo);
}

.top-nav-link:hover::after,
.top-nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: none;
  margin-left: auto;
  padding: 0.65rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition:
    background 0.4s var(--ease-out-expo),
    color 0.4s var(--ease-out-expo),
    transform 0.4s var(--ease-out-expo),
    border-color 0.5s var(--ease-out-expo);
}

.header-cta:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .top-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    margin-left: 0;
  }
}

/* ── Hero ── */

.hero {
  position: relative;
  height: 220vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  background: var(--page-bg);
  overflow: hidden;
}

.video-shell {
  --width: calc(100vw - var(--progress) * (100vw - var(--shell-max-width)));
  --height: calc(100vh - var(--progress) * (100vh - var(--shell-max-height)));

  width: var(--width);
  height: var(--height);
  border-radius: calc(var(--progress) * var(--shell-radius));
  background: var(--page-bg);
  overflow: hidden;
  will-change: width, height, border-radius, box-shadow;
  box-shadow: 0 calc(var(--progress) * 28px) calc(var(--progress) * 64px)
    rgba(15, 23, 42, calc(var(--progress) * 0.12));
  transform: translateZ(0);
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  filter: sepia(0.18) saturate(1.45) hue-rotate(-14deg) brightness(1.08)
    contrast(1.06);
}

.video-grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    168deg,
    rgba(255, 196, 112, 0.28) 0%,
    rgba(255, 138, 72, 0.14) 42%,
    rgba(255, 214, 156, 0.22) 100%
  );
  mix-blend-mode: soft-light;
}

.video-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 45%,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.35) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.08) 35%,
      rgba(0, 0, 0, 0.45) 100%
    );
  opacity: calc(1 - var(--progress) * 0.85);
  transition: opacity 0.1s linear;
}

.video-grain,
.video-grain::after {
  position: absolute;
  inset: -150%;
  pointer-events: none;
  background-repeat: repeat;
}

.video-grain {
  opacity: 0.52;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.05' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 96px 96px;
  animation: film-grain 0.18s steps(8) infinite;
}

.video-grain::after {
  content: "";
  opacity: 0.38;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.52' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 148px 148px;
  animation: film-grain-coarse 0.28s steps(6) infinite reverse;
}

@keyframes film-grain {
  0% { transform: translate(0, 0); }
  12.5% { transform: translate(-8%, -10%); }
  25% { transform: translate(10%, 6%); }
  37.5% { transform: translate(-6%, 12%); }
  50% { transform: translate(12%, -8%); }
  62.5% { transform: translate(-10%, 4%); }
  75% { transform: translate(6%, -12%); }
  87.5% { transform: translate(-4%, 8%); }
  100% { transform: translate(0, 0); }
}

@keyframes film-grain-coarse {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(7%, -9%) scale(1.02); }
  66% { transform: translate(-9%, 7%) scale(0.98); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ── Hero content ── */

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 1rem) 1.5rem 2rem;
  pointer-events: none;
  opacity: calc(1 - var(--progress) * 1.35);
  transform: translateY(calc(var(--progress) * -48px)) scale(calc(1 - var(--progress) * 0.06));
  transition: opacity 0.08s linear;
}

.hero-content > * {
  pointer-events: auto;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal 1.1s var(--ease-out-expo) 0.15s forwards;
}

.hero-title {
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(32px);
  animation: hero-reveal 1.15s var(--ease-out-expo) 0.35s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.hero-subtitle {
  margin-top: 1.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal 1.1s var(--ease-out-expo) 0.55s forwards;
}

.hero-subtitle::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.5rem;
  margin: 0 auto 1.1rem;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0;
  animation: hero-line 1s var(--ease-out-expo) 0.48s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  padding: 1rem 1.85rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(24px);
  animation: hero-reveal 1.1s var(--ease-out-expo) 0.75s forwards;
  transition:
    background 0.45s var(--ease-out-expo),
    border-color 0.45s var(--ease-out-expo),
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
}

.hero-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.45s var(--ease-out-expo);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: #fff;
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-line {
  to {
    opacity: 1;
  }
}

/* ── Story section ── */

.story-section {
  --section-progress: 0;
  --copy-opacity: 0;
  position: relative;
  background: var(--page-bg);
}

.story-section.approach {
  --piano-scale: 0.2;
  --piano-x: 50%;
  --piano-y: 50%;
  height: 580vh;
}

.story-marker {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  visibility: hidden;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.story-layout {
  position: relative;
  width: min(1180px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: calc(var(--header-height) + 1rem) clamp(2.75rem, 5.5vw, 4rem) 2rem
    clamp(1rem, 3vw, 2rem);
}

.story-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.story-visual--settled {
  position: absolute;
  left: clamp(8px, 1.5vw, 36px);
  top: 50%;
  width: min(540px, 54vw);
  aspect-ratio: 1 / 1;
  transform: translateY(-50%);
}

.piano-unit {
  position: absolute;
  left: var(--piano-x);
  top: var(--piano-y);
  width: min(480px, 46vw);
  aspect-ratio: 1 / 1;
  will-change: transform, left, top;
}

.piano-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.piano-photo {
  pointer-events: none;
}

.piano-outline-path {
  fill: none;
  stroke: rgba(28, 24, 20, 0.78);
  stroke-width: 2.25;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.story-copy {
  position: absolute;
  top: 50%;
  right: clamp(2rem, 5vw, 3.5rem);
  width: min(34rem, 44%);
  transform: translateY(calc(-50% + (1 - var(--copy-opacity)) * 24px));
  opacity: var(--copy-opacity);
  pointer-events: none;
}

.story-copy-stack {
  display: grid;
}

.story-copy-panel {
  grid-area: 1 / 1;
  position: relative;
  align-self: start;
  width: 100%;
  transform: translateY(var(--panel-y, 72px));
  opacity: var(--panel-opacity, 0);
}

.story-copy-panel[data-panel="approach"] {
  --panel-y: 0px;
  --panel-opacity: 1;
}

.story-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-inter);
  font-size: clamp(1rem, 1.55vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.46);
}

.story-body {
  margin: 0;
  font-family: var(--font-inter);
  font-size: clamp(1rem, 1.55vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.011em;
  color: rgba(28, 24, 20, 0.46);
}

.story-word {
  font-weight: 400;
  color: rgba(28, 24, 20, 0.46);
  transition:
    color 0.16s ease,
    font-weight 0.16s ease;
}

.story-word.is-active {
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 860px) {
  .story-section.approach {
    height: auto;
  }

  .story-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: clamp(3rem, 8vh, 5rem);
  }

  .story-layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    gap: clamp(1.75rem, 5vw, 2.5rem);
    padding: calc(var(--header-height) + 1rem) clamp(1.25rem, 4vw, 1.75rem)
      clamp(2rem, 6vw, 3rem);
  }

  .story-scene {
    position: relative;
    inset: auto;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 0;
    padding: 0.5rem 0;
  }

  .piano-unit {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: min(68vw, 300px) !important;
    margin: 0 auto;
    transform: none !important;
  }

  .story-copy {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    max-width: none;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto;
  }

  .story-copy-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 2.75rem);
  }

  .story-copy-panel {
    grid-area: auto;
    position: relative;
    transform: none !important;
    opacity: 1 !important;
  }

  .story-word.is-active {
    font-weight: 600;
    color: var(--ink);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 5vw, 2.25rem);
  }

  .faq-scene {
    order: 1;
  }

  .faq-copy {
    order: 2;
  }

  .note-unit {
    width: min(68vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-section.approach {
    height: auto;
  }

  .story-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
  }

  .story-scene {
    position: relative;
    min-height: 50vh;
    display: grid;
    place-items: center;
    padding: 3rem 0;
  }

  .piano-unit {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto;
  }

  .story-copy {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    transform: none;
    opacity: 1;
    padding: 2rem 0 4rem;
    overflow: visible;
  }

  .story-copy-panel {
    position: relative;
    inset: auto;
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 2.5rem;
  }

  .story-word.is-active {
    font-weight: 600;
    color: var(--ink);
  }
}

/* ── FAQ ── */

.faq-section {
  position: relative;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(4.5rem, 11vh, 6.5rem);
  background: var(--page-bg);
}

.faq-sticky {
  position: relative;
  height: auto;
  overflow: visible;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
  width: min(1180px, 100%);
  height: auto;
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 0.5rem);
}

.faq-scene {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0.35rem;
}

.faq-copy {
  position: relative;
  width: 100%;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.faq-section.is-interactive .faq-copy {
  pointer-events: auto;
}

.note-unit {
  position: relative;
  left: auto;
  top: auto;
  width: min(100%, 380px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.9s var(--ease-fluid),
    transform 0.9s var(--ease-fluid);
}

.faq-section.is-visible .note-unit {
  opacity: 1;
  transform: scale(1);
}

.note-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.note-photo {
  pointer-events: none;
}

.note-outline-path {
  fill: none;
  stroke: rgba(28, 24, 20, 0.78);
  stroke-width: 2.25;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.faq-item {
  border-bottom: 1px solid rgba(28, 24, 20, 0.1);
  padding: 0.15rem 0;
}

.faq-item[open] {
  padding-bottom: 0.85rem;
}

.faq-question {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-inter);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 0.85rem 1.75rem 0.85rem 0;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid rgba(28, 24, 20, 0.45);
  border-bottom: 1.5px solid rgba(28, 24, 20, 0.45);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.22s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(-35%) rotate(225deg);
}

.faq-answer {
  margin: 0;
  padding: 0 0 0.25rem;
  font-family: var(--font-inter);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(28, 24, 20, 0.58);
  max-width: none;
}

.faq-answer a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

@media (prefers-reduced-motion: reduce) {
  .note-unit {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  :root {
    --shell-max-width: 92vw;
    --shell-max-height: 52vh;
    --shell-radius: 16px;
    --header-height: 68px;
  }

  .site-header {
    padding: 0.85rem 1rem;
  }

  .site-logo {
    font-size: 1rem;
  }

  .hero {
    height: 165vh;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .hero-subtitle {
    font-size: 0.82rem;
  }

  .hero-content {
    padding: 0 clamp(0.25rem, 2vw, 0.75rem);
  }

  .top-nav {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    margin-left: auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.62rem;
  }

  .book-section {
    padding: clamp(3rem, 8vh, 4rem) clamp(1rem, 4vw, 1.25rem)
      clamp(3.5rem, 10vh, 5rem);
  }

  .book-serif {
    max-width: none;
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }

  .book-pricing-card {
    padding: 1.15rem 1rem;
  }

  .book-step-nav.is-hidden,
  .book-submit-note.is-hidden {
    display: none;
  }

  .book-next,
  .book-back,
  .book-skip {
    min-height: 44px;
  }

  .book-slot-day {
    min-height: 44px;
  }

  .book-section.is-visible .book-form--progressive:not(.is-complete) {
    padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }

  .book-section.is-visible .book-form--progressive:not(.is-complete) .book-step-nav:not(.is-hidden) {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    margin: 0;
    padding: 0.65rem clamp(1rem, 4vw, 1.25rem)
      calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(28, 24, 20, 0.1);
    box-shadow: 0 -12px 32px rgba(28, 24, 20, 0.08);
  }

  .book-section.is-visible .book-form--progressive:not(.is-complete) .book-submit-note:not(.is-hidden) {
    margin-bottom: 0.25rem;
  }

  .book-step-nav {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .book-nav-actions {
    flex: 1 1 100%;
    width: 100%;
    margin-left: 0;
  }

  .book-next {
    flex: 1;
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.25rem;
  }

  .book-back:not([hidden]) + .book-nav-actions {
    flex: 1 1 calc(100% - 4.5rem);
    width: auto;
    margin-left: auto;
  }

  .book-back:not([hidden]) + .book-nav-actions .book-next {
    width: auto;
    flex: 1;
  }

  .site-footer {
    padding: 1.75rem 1.25rem 2.25rem;
  }
}

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

  .video-grain,
  .video-grain::after {
    animation: none;
    inset: 0;
  }

  .video-grain { opacity: 0.35; }
  .video-grain::after { opacity: 0.25; }

  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-btn {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-subtitle::before {
    animation: none;
    opacity: 1;
  }

  .sidebar,
  .sidebar-backdrop,
  .sidebar-panel,
  .sidebar-link,
  .sidebar-brand,
  .sidebar-footer,
  .sidebar-cta,
  .header-cta {
    transition: none;
  }

  .sidebar-panel {
    transform: none;
    opacity: 1;
    filter: none;
  }

  .sidebar-link,
  .sidebar-brand,
  .sidebar-footer {
    opacity: 1;
    transform: none;
  }

  .hero {
    height: auto;
  }

  .hero-sticky {
    position: relative;
    height: auto;
    padding: 1.5rem;
    padding-top: calc(var(--header-height) + 1rem);
  }

  .video-shell {
    width: var(--shell-max-width);
    height: var(--shell-max-height);
    border-radius: var(--shell-radius);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
  }

  .hero-content {
    position: relative;
    opacity: 1;
    transform: none;
    padding: 2rem 0 0;
  }
}

/* ── Booking ── */

.book-section {
  position: relative;
  padding: clamp(4rem, 10vh, 6rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(5rem, 12vh, 7rem);
  background: var(--page-bg);
}

.book-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.book-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s var(--ease-fluid),
    transform 0.85s var(--ease-fluid);
}

.book-section.is-visible .book-reveal {
  opacity: 1;
  transform: translateY(0);
}

.book-section.is-visible .book-form-wrap.book-reveal {
  transition-delay: 0.1s;
}

.book-serif {
  margin: 0 0 1.75rem;
  max-width: 22ch;
  font-family: var(--font-inter);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.book-pricing-card {
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(28, 24, 20, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 44px rgba(28, 24, 20, 0.05);
}

.book-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(28, 24, 20, 0.08);
}

.book-pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.book-pricing-row:first-child {
  padding-top: 0;
}

.book-pricing-row--highlight .book-pricing-value {
  color: #8a6a3d;
  font-weight: 600;
}

.book-pricing-value--free {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.book-pricing-label {
  font-family: var(--font-inter);
  font-size: 0.92rem;
  color: rgba(28, 24, 20, 0.58);
}

.book-pricing-value {
  font-family: var(--font-inter);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.book-location-hint {
  margin: 1.1rem 0 0;
  font-family: var(--font-inter);
  font-size: 0.88rem;
  color: rgba(28, 24, 20, 0.46);
}

.book-whatsapp-note {
  margin: 1.35rem 0 0;
  font-family: var(--font-inter);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(28, 24, 20, 0.58);
  max-width: 28ch;
}

.book-form-wrap {
  min-height: auto;
}

.book-form--progressive {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: auto;
}

.book-progress {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(28, 24, 20, 0.08);
  overflow: hidden;
}

.book-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--ink);
  transition: width 0.45s var(--ease-fluid);
}

.book-step-counter {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.4);
}

.book-steps {
  display: grid;
  position: relative;
  min-height: 0;
  overflow: visible;
}

.book-step {
  grid-area: 1 / 1;
  position: relative;
  align-self: start;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.25rem;
  padding: 0.75rem 0 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.4s var(--ease-fluid),
    transform 0.4s var(--ease-fluid),
    visibility 0.4s;
  pointer-events: none;
}

/* Inactive steps must not stretch the grid (e.g. after the tall slot picker). */
.book-step:not(.is-active):not(.is-exiting) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  overflow: hidden;
}

.book-step.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.book-step.is-exiting {
  opacity: 0;
  transform: translateY(-16px);
}

.book-step-question {
  margin: 0;
  max-width: 22ch;
  font-family: var(--font-inter);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.book-step-hint {
  margin: 0;
  max-width: 38ch;
  font-family: var(--font-inter);
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(28, 24, 20, 0.52);
}

.book-step-hint.is-error {
  color: #8b3a3a;
}

.book-step-input {
  width: 100%;
  max-width: 100%;
  padding: 0.65rem 0;
  border: none;
  border-bottom: 2px solid rgba(28, 24, 20, 0.14);
  background: transparent;
  font-family: var(--font-inter);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink);
  transition: border-color 0.25s ease;
}

.book-step-input--short {
  max-width: 8rem;
}

.book-step-input:focus {
  outline: none;
  border-bottom-color: var(--ink);
}

.book-step-textarea {
  resize: vertical;
  min-height: 6rem;
  line-height: 1.55;
}

.book-choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.book-choice {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(28, 24, 20, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s var(--ease-fluid);
}

.book-choice:hover {
  border-color: rgba(28, 24, 20, 0.22);
  transform: translateX(3px);
}

.book-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.book-choice:has(input:checked) {
  border-color: rgba(28, 24, 20, 0.34);
  background: rgba(240, 223, 196, 0.32);
}

.book-choice-label {
  font-family: var(--font-inter);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
}

.book-choice-desc {
  font-family: var(--font-inter);
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(28, 24, 20, 0.52);
}

.book-choice--check:has(input:checked)::after {
  content: "✓";
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--ink);
}

.book-choice--check {
  flex-direction: row;
  align-items: center;
}

.book-confirm-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.book-slot-days {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.book-slot-day {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(28, 24, 20, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.32);
  font-family: var(--font-inter);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.62);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.book-slot-day:hover {
  border-color: rgba(28, 24, 20, 0.22);
}

.book-slot-day.is-active {
  border-color: rgba(28, 24, 20, 0.34);
  background: rgba(240, 223, 196, 0.32);
  color: var(--ink);
}

.book-slot-day-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 2px;
  background: var(--ink);
  font-size: 0.62rem;
  font-weight: 600;
  color: #fff;
}

.book-slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.book-slot-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-inter);
  font-size: 0.72rem;
  color: rgba(28, 24, 20, 0.48);
}

.book-slot-legend-item::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  border: 1px solid rgba(28, 24, 20, 0.12);
}

.book-slot-legend-item--available::before {
  background: rgba(255, 255, 255, 0.72);
}

.book-slot-legend.is-hidden,
.book-slot-grid.is-hidden {
  display: none;
}

.book-slot-legend-item--done::before {
  background: rgba(28, 24, 20, 0.08);
}

.book-slot-grid {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: none;
}

.book-slot {
  display: grid;
  grid-template-columns: minmax(6.5rem, 7.5rem) 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(28, 24, 20, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  text-align: left;
  transition:
    border-color 0.22s ease,
    background 0.22s ease;
}

.book-slot-time {
  font-family: var(--font-inter);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.book-slot-label {
  font-family: var(--font-inter);
  font-size: 0.82rem;
  color: rgba(28, 24, 20, 0.52);
}

.book-slot-badge {
  font-family: var(--font-inter);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(28, 24, 20, 0.38);
}

.book-slot--available {
  cursor: pointer;
}

.book-slot--available:hover {
  border-color: rgba(28, 24, 20, 0.22);
  background: rgba(255, 255, 255, 0.5);
}

.book-slot--available.is-selected {
  border-color: rgba(28, 24, 20, 0.34);
  background: rgba(240, 223, 196, 0.32);
}

.book-slot--available.is-selected .book-slot-badge {
  color: #8a6a3d;
}

.book-slot--done {
  background: rgba(28, 24, 20, 0.06);
  border-color: rgba(28, 24, 20, 0.08);
}

.book-slot--done .book-slot-time,
.book-slot--done .book-slot-label {
  color: rgba(28, 24, 20, 0.38);
}

.book-step-nav.is-hidden,
.book-submit-note.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}

.book-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.35rem;
  margin-top: 0;
}

.book-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.book-back,
.book-skip {
  border: none;
  background: transparent;
  font-family: var(--font-inter);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(28, 24, 20, 0.52);
  cursor: pointer;
  transition: color 0.2s ease;
}

.book-back:hover,
.book-skip:hover {
  color: var(--ink);
}

.book-next {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  font-family: var(--font-inter);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-out-expo),
    color 0.35s var(--ease-out-expo),
    transform 0.35s var(--ease-out-expo);
}

.book-next svg {
  width: 1rem;
  height: 1rem;
}

.book-next:hover {
  background: transparent;
  color: var(--ink);
}

.book-next:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.book-submit-note {
  margin: 0;
  font-family: var(--font-inter);
  font-size: 0.82rem;
  color: rgba(28, 24, 20, 0.4);
}

.book-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-family: var(--font-inter);
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(28, 24, 20, 0.62);
}

.book-check input {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  accent-color: var(--ink);
}

.book-check--ack {
  align-items: flex-start;
  font-size: 0.84rem;
  line-height: 1.55;
}

.book-form.is-complete .book-progress,
.book-form.is-complete .book-step-nav,
.book-form.is-complete .book-submit-note,
.book-form.is-complete .book-step-counter {
  display: none;
}

.book-form--progressive.book-form.is-complete .book-steps {
  min-height: 12rem;
}

.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem) 2.5rem;
  border-top: 1px solid rgba(28, 24, 20, 0.08);
  background: var(--page-bg);
  text-align: center;
}

.site-footer-brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.site-footer-copy {
  margin: 0.35rem 0 0;
  font-family: var(--font-inter);
  font-size: 0.82rem;
  color: rgba(28, 24, 20, 0.46);
}

.site-footer-contact {
  margin: 0.75rem 0 0;
  font-family: var(--font-inter);
  font-size: 0.88rem;
}

.site-footer-contact a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-contact a:hover {
  color: rgba(28, 24, 20, 0.62);
}

@media (max-width: 900px) {
  .book-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-summary {
    order: 1;
  }

  .book-form-wrap {
    order: 2;
    min-height: auto;
  }

  .book-form--progressive {
    min-height: auto;
  }

  .book-step-question {
    max-width: none;
  }

  .book-slot {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .book-slot-badge {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .book-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
