:root {
  color-scheme: dark;
  --ink: #f8f6f1;
  --ink-2: #e7ddc9;
  --muted: #a79f90;
  --soft: #181c22;
  --paper: #101317;
  --surface: #181c22;
  --surface-2: #20252d;
  --line: rgba(215, 180, 106, 0.18);
  --line-strong: rgba(215, 180, 106, 0.36);
  --night: #0b0d10;
  --night-2: #14171d;
  --blue: #d7b46a;
  --blue-2: #f0cc72;
  --blue-soft: rgba(215, 180, 106, 0.12);
  --gold: #d7b46a;
  --gold-2: #f0cc72;
  --gold-glow: rgba(240, 204, 114, 0.36);
  --green: #188a54;
  --red: #d84f62;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --radius-lg: 14px;
  --max: 1180px;
  --title-font: "UnifrakturMaguntia", "Germania One", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body[data-view="admin"] {
  background:
    radial-gradient(circle at 50% -8%, rgba(240, 204, 114, 0.2), transparent 32%),
    linear-gradient(180deg, #060708, #101317 52%, #090a0c);
}

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

video {
  display: block;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-title,
.about-cristian-copy h2,
.review-form-panel h3,
.booking-head h2,
.step-panel h3,
.confirmation h3,
.admin-login-panel h1,
.admin-topbar h1,
.admin-dashboard-hero h2,
.panel-head h2 {
  font-family: var(--title-font);
  font-weight: 400;
  letter-spacing: 0;
}

.page {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.icon-btn:focus-visible,
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(215, 180, 106, 0.28);
  outline-offset: 2px;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11100c;
  box-shadow: 0 12px 28px rgba(215, 180, 106, 0.24), 0 0 0 rgba(240, 204, 114, 0);
  animation: buttonGlow 4.8s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 560ms ease;
}

.btn-primary:hover::before {
  transform: translateX(130%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-2), #ffe19c);
}

.btn-dark {
  background: var(--night);
  color: white;
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(13, 15, 18, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn-danger {
  background: rgba(216, 79, 98, 0.12);
  color: var(--red);
  border-color: rgba(216, 79, 98, 0.32);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 680;
}

.pill-blue {
  border-color: rgba(215, 180, 106, 0.32);
  background: var(--blue-soft);
  color: var(--gold-2);
}

.pill-gold {
  border-color: rgba(215, 180, 106, 0.3);
  background: rgba(215, 180, 106, 0.12);
  color: #7d5d1c;
}

.pill-red {
  border-color: rgba(216, 79, 98, 0.28);
  background: rgba(216, 79, 98, 0.12);
  color: #d84f62;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: white;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(11, 13, 16, 0.9);
  border-bottom: 1px solid rgba(215, 180, 106, 0.18);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 680;
  opacity: 0.82;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-return-link {
  border-color: rgba(103, 168, 255, 0.32);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: 132px 0 78px;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.66) 0%, rgba(5, 7, 9, 0.48) 44%, rgba(5, 7, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.12) 0%, rgba(5, 7, 9, 0.58) 100%),
    url("assets/images/gallery-01.webp") center / cover no-repeat;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(240, 204, 114, 0.18) 44%, transparent 58%),
    radial-gradient(ellipse at 24% 31%, rgba(240, 204, 114, 0.16), transparent 31%);
  opacity: 0.76;
  transform: translateX(-18%);
  animation: goldSweep 8.8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--paper));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(790px, 100%);
  animation: heroReveal 720ms ease both;
}

.hero h1:not(.sr-only) {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-logo-wrap {
  width: min(390px, 72vw);
  margin-bottom: 18px;
}

.hero-logo {
  width: 100%;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 18px rgba(215, 180, 106, 0.18));
  animation: floatLogo 6s ease-in-out 900ms infinite;
}

.logo-motion-stage {
  position: relative;
  perspective: 1100px;
  transform-style: preserve-3d;
}

.logo-motion-stage::before {
  content: "";
  position: absolute;
  inset: 7% -5%;
  z-index: 0;
  border-radius: 50%;
  background:
    linear-gradient(115deg, transparent 12%, rgba(240, 204, 114, 0.2) 46%, transparent 70%),
    radial-gradient(ellipse at center, rgba(240, 204, 114, 0.16), transparent 62%);
  filter: blur(10px);
  opacity: 0;
  transform: rotate(-12deg) scale(0.9);
  animation: logoGoldSheen 4.2s ease-in-out 700ms infinite;
  pointer-events: none;
}

.logo-motion-stage .hero-logo {
  position: relative;
  z-index: 1;
  transform-origin: center;
  animation:
    logoCinematicEntrance 1.55s cubic-bezier(0.16, 1, 0.3, 1) both,
    logoBreath 6s ease-in-out 1.55s infinite;
  will-change: transform, filter, opacity;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(13, 15, 18, 0.34);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 650;
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.hero-meta .meta-item:hover {
  border-color: rgba(240, 204, 114, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 28px rgba(215, 180, 106, 0.11);
  transform: translateY(-2px);
}

.hero-meta .meta-item:first-child .icon,
.hero-meta .meta-hours .icon {
  color: var(--gold-2);
  filter: drop-shadow(0 0 10px rgba(240, 204, 114, 0.38));
}

.hero-meta .meta-hours {
  border-color: rgba(240, 204, 114, 0.58);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.24), rgba(240, 204, 114, 0.1)),
    rgba(13, 15, 18, 0.54);
  color: #f4cf74;
  text-shadow: 0 0 18px rgba(240, 204, 114, 0.2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24), 0 0 28px rgba(215, 180, 106, 0.16);
}

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

.hero-bookmark {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 86px;
  width: clamp(292px, 24vw, 360px);
  min-height: 66px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 224, 150, 0.64);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 229, 158, 0.28), transparent 24%),
    linear-gradient(110deg, rgba(240, 204, 114, 0.18), rgba(9, 10, 11, 0.86) 46%, rgba(0, 0, 0, 0.96) 100%),
    #070707;
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(215, 180, 106, 0.2),
    inset 0 0 18px rgba(240, 204, 114, 0.08);
  overflow: hidden;
  transform-origin: center;
  animation:
    heroReveal 820ms ease 180ms both,
    taglineCardPulse 2600ms cubic-bezier(0.18, 0.9, 0.2, 1) 900ms infinite;
}

.hero-bookmark::before {
  content: "";
  position: absolute;
  inset: -44% -32%;
  z-index: 0;
  background:
    linear-gradient(100deg, transparent 26%, rgba(255, 247, 217, 0.9) 44%, rgba(240, 204, 114, 0.32) 50%, transparent 62%);
  transform: translateX(-92%) rotate(6deg);
  animation: taglineGoldSlash 1500ms ease-in-out infinite;
  pointer-events: none;
}

.hero-bookmark::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 0;
  border: 1px solid rgba(255, 230, 158, 0.58);
  border-radius: 6px;
  box-shadow:
    inset 0 0 16px rgba(240, 204, 114, 0.16),
    0 0 18px rgba(240, 204, 114, 0.2);
  animation: taglineBorderKick 1100ms ease-in-out infinite;
  pointer-events: none;
}

.hero-tagline-row {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 44px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(255, 236, 179, 0.12), transparent 34%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-tagline-row::before,
.hero-tagline-row::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-tagline-row::before {
  inset: -38% -28%;
  z-index: 0;
  background:
    linear-gradient(104deg, transparent 30%, rgba(255, 247, 220, 0.58) 45%, rgba(240, 204, 114, 0.22) 52%, transparent 66%);
  filter: blur(0.2px) drop-shadow(0 0 12px rgba(240, 204, 114, 0.72));
  transform: translateX(-86%) rotate(5deg);
  animation: taglineInnerSweep 1320ms ease-in-out infinite;
}

.hero-tagline-row::after {
  inset: 0;
  z-index: 0;
  border-top: 1px solid rgba(255, 232, 165, 0.7);
  border-bottom: 1px solid rgba(255, 232, 165, 0.36);
  opacity: 0.78;
  animation: taglineRailGlow 950ms ease-in-out infinite;
}

.hero-tagline-animated {
  margin: 0;
  font-family: "Germania One", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  text-align: center;
  text-wrap: balance;
  white-space: nowrap;
  color: #ffe7aa;
  filter: drop-shadow(0 0 14px rgba(240, 204, 114, 0.42));
  text-shadow:
    0 0 10px rgba(255, 232, 168, 0.5),
    0 0 20px rgba(240, 204, 114, 0.28),
    0 2px 0 rgba(0, 0, 0, 0.82);
  pointer-events: none;
  animation: taglineTextImpact 1250ms cubic-bezier(0.18, 0.9, 0.24, 1) infinite;
}

.hero-tagline-animated span {
  color: inherit;
  line-height: inherit;
}

.hero-tagline-animated [style*="overflow: clip"] {
  overflow: hidden !important;
  margin-block: -0.08em !important;
  padding-block: 0.08em !important;
}

.hero-tagline-animated [data-char] {
  will-change: transform;
}

.hero-bookmark .hero-tagline-animated {
  color: #ffe7aa;
}

.retired-cinematic-hero .hero-bookmark {
  display: none;
}

.retired-cinematic-hero {
  min-height: 100vh;
  align-items: center;
  padding: 112px 0 82px;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.66) 0%, rgba(5, 7, 9, 0.48) 44%, rgba(5, 7, 9, 0.18) 100%),
    radial-gradient(ellipse at 32% 18%, rgba(240, 204, 114, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.12) 0%, rgba(5, 7, 9, 0.72) 100%),
    url("assets/images/gallery-01.webp") center / cover no-repeat;
}

.retired-cinematic-hero::before {
  background:
    linear-gradient(110deg, transparent 0%, rgba(240, 204, 114, 0.16) 45%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 35%);
}

.film-grain,
.cinematic-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.film-grain {
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 61%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px);
  background-size: 26px 26px, 31px 31px;
}

.cinematic-grid {
  opacity: 0.34;
  background-image:
    linear-gradient(to right, rgba(240, 204, 114, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(240, 204, 114, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 0%, transparent 70%);
}

.hero-cinematic-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
}

.cinematic-panel {
  animation: heroReveal 780ms ease both;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 860;
  text-transform: uppercase;
}

.retired-cinematic-hero .hero-content {
  width: min(700px, 100%);
}

.retired-cinematic-hero .hero-logo-wrap {
  position: relative;
  width: min(390px, 62vw);
  margin: 0 0 10px;
  transform-style: preserve-3d;
}

.retired-cinematic-hero .hero-logo {
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 30px 55px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 22px rgba(240, 204, 114, 0.22));
  animation: cinematicFloat 6.4s ease-in-out 600ms infinite;
}

.hero-logo-orbit {
  position: absolute;
  inset: 12% 6%;
  z-index: 1;
  border: 1px solid rgba(240, 204, 114, 0.32);
  border-radius: 50%;
  opacity: 0.72;
  transform: rotate(-11deg);
  animation: logoOrbit 9s linear infinite;
}

.hero-logo-orbit::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 16%;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  box-shadow: 0 0 16px rgba(240, 204, 114, 0.48);
}

.orbit-two {
  inset: 2% 14%;
  opacity: 0.42;
  animation-duration: 12s;
  animation-direction: reverse;
}

.hero-statement {
  margin: 0;
  max-width: 690px;
  color: white;
  font-size: clamp(2.6rem, 5.7vw, 5.2rem);
  line-height: 0.9;
  font-weight: 940;
  letter-spacing: 0;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.54);
}

.hero-subcopy {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-reel-shell {
  position: relative;
  justify-self: end;
  width: min(380px, 100%);
  padding: 16px;
  border: 1px solid rgba(240, 204, 114, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(9, 11, 14, 0.72);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.56),
    0 0 46px rgba(215, 180, 106, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  animation-delay: 160ms;
}

.hero-reel-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(240, 204, 114, 0.46), transparent 32%, rgba(255, 255, 255, 0.12));
  opacity: 0.38;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

.hero-reel-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-reel-topline strong {
  color: var(--gold-2);
}

.hero-reel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #050607;
  aspect-ratio: 9 / 16;
  box-shadow: inset 0 0 42px rgba(0, 0, 0, 0.62);
}

.hero-reel-video,
.reel-card-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.82);
  transition:
    opacity 360ms ease,
    visibility 360ms ease;
  pointer-events: none;
}

.hero-reel-frame.has-video-motion .video-poster-fallback,
.reel-video-card.has-video-motion .video-poster-fallback {
  opacity: 0;
  visibility: hidden;
}

.hero-reel-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 38%, rgba(240, 204, 114, 0.1));
  opacity: 0.54;
  pointer-events: none;
  animation: reelGlow 5.6s ease-in-out infinite;
}

.hero-reel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.hero-reel-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(240, 204, 114, 0.26);
  border-radius: var(--radius);
  background: rgba(240, 204, 114, 0.1);
  color: #f5ddb0;
  font-size: 0.76rem;
  font-weight: 780;
}

.retired-reel-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #08090b 0%, #101318 58%, var(--paper) 100%);
}

.cristian-reel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.reel-copy .section-title {
  max-width: 650px;
}

.reel-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.reel-card,
.reel-video-card,
.reel-photo-card {
  border: 1px solid rgba(215, 180, 106, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #11151a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 24px rgba(215, 180, 106, 0.06);
}

.reel-card {
  min-height: 128px;
  padding: 16px;
}

.reel-card strong,
.ritual-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 880;
}

.reel-card span {
  display: block;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.35;
}

.reel-gallery {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) repeat(2, minmax(130px, 0.55fr));
  grid-auto-rows: minmax(150px, auto);
  gap: 14px;
}

.reel-video-card {
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  min-height: 520px;
  padding: 12px;
  animation: reelGlow 6.2s ease-in-out infinite;
}

.reel-video-card .reel-card-video {
  min-height: 420px;
  border-radius: var(--radius);
  background: #070809;
}

.reel-video-caption {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(9, 10, 12, 0.78);
  backdrop-filter: blur(16px);
}

.reel-video-caption strong,
.reel-video-caption span {
  display: block;
}

.reel-video-caption strong {
  color: white;
  font-size: 0.98rem;
  font-weight: 850;
}

.reel-video-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.reel-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 196px;
  margin: 0;
}

.reel-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 280ms ease, filter 280ms ease;
}

.reel-photo-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.12) contrast(1.08);
}

.reel-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.reel-photo-card figcaption {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 12px;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(240, 204, 114, 0.28);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.72);
  color: #f5ddb0;
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.retired-reel-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #08090b 0%, #12161c 58%, var(--paper) 100%);
}

.motion-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 38px;
  align-items: center;
}

.motion-copy .section-title {
  max-width: 680px;
}

.studio-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.studio-proof div {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.studio-proof strong,
.ritual-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 880;
}

.studio-proof span {
  display: block;
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.35;
}

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

.motion-video {
  position: relative;
  overflow: hidden;
  min-height: 372px;
  padding: 18px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #0b0d10;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(215, 180, 106, 0.07);
}

.motion-video::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(240, 204, 114, 0.12), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
}

.motion-stage {
  position: relative;
  overflow: hidden;
  min-height: 268px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    #11151a;
}

.motion-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: stageScan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.guide-line,
.fade-line,
.gold-trace {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.guide-line {
  left: 14%;
  width: 72%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  box-shadow: 0 0 22px rgba(240, 204, 114, 0.46);
  transform-origin: center;
  animation: goldTrace 3.8s ease-in-out infinite;
}

.guide-line-one {
  top: 32%;
  transform: rotate(-10deg);
}

.guide-line-two {
  top: 50%;
  animation-delay: 480ms;
}

.guide-line-three {
  top: 68%;
  transform: rotate(10deg);
  animation-delay: 960ms;
}

.scissor-mark {
  position: absolute;
  left: calc(50% - 58px);
  top: calc(50% - 58px);
  width: 116px;
  height: 116px;
  color: var(--gold-2);
  animation: bladeGuide 4.6s ease-in-out infinite;
}

.scissor-mark::before,
.scissor-mark::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 55px;
  width: 96px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff2bf, var(--gold), #8b6726);
  box-shadow: 0 0 22px rgba(240, 204, 114, 0.35);
  transform-origin: 12px 50%;
}

.scissor-mark::before {
  transform: rotate(24deg);
}

.scissor-mark::after {
  animation: bladeOpen 1.35s ease-in-out infinite;
}

.scissor-handle {
  position: absolute;
  left: 0;
  width: 34px;
  height: 34px;
  border: 5px solid currentColor;
  border-radius: 50%;
}

.handle-a {
  top: 30px;
}

.handle-b {
  bottom: 30px;
}

.motion-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 24px rgba(240, 204, 114, 0.86);
  animation: sparkPulse 2.4s ease-in-out infinite;
}

.spark-one {
  left: 24%;
  top: 38%;
}

.spark-two {
  right: 25%;
  bottom: 30%;
  animation-delay: 760ms;
}

.fade-line {
  right: 14%;
  width: 56%;
  height: 12px;
  background: linear-gradient(90deg, rgba(240, 204, 114, 0.82), rgba(240, 204, 114, 0.08));
  transform-origin: right;
  animation: fadeBuild 4.4s ease-in-out infinite;
}

.fade-line-one {
  top: 34%;
}

.fade-line-two {
  top: 50%;
  animation-delay: 320ms;
}

.fade-line-three {
  top: 66%;
  animation-delay: 640ms;
}

.clipper-body {
  position: absolute;
  left: 12%;
  top: calc(50% - 58px);
  width: 86px;
  height: 116px;
  border: 1px solid rgba(240, 204, 114, 0.46);
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(135deg, #f3d481, #7c5a21 58%, #171717 59%);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.32), 0 0 24px rgba(215, 180, 106, 0.22);
  animation: clipperSweep 4.8s ease-in-out infinite;
}

.clipper-body::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: -12px;
  height: 18px;
  border-radius: 6px 6px 2px 2px;
  background: repeating-linear-gradient(90deg, #f7e2a1 0 5px, #20170b 5px 7px);
}

.clipper-body span {
  position: absolute;
  inset: 28px 22px auto;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
}

.gold-trace {
  left: 12%;
  right: 12%;
  bottom: 26px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  box-shadow: 0 0 24px rgba(240, 204, 114, 0.46);
  animation: goldTrace 3.2s ease-in-out infinite;
}

.motion-caption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
}

.motion-caption strong {
  font-size: 1rem;
  font-weight: 850;
}

.motion-caption span {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.section {
  position: relative;
  scroll-margin-top: 88px;
  padding: 86px 0;
}

.section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 88px;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(860px, 82vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 204, 114, 0.46), transparent);
  opacity: 0.5;
  transform: translateX(-50%);
}

.section-tight {
  padding: 56px 0;
}

.section-dark {
  background: var(--night);
  color: white;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  font-weight: 880;
}

.section-copy {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: start;
}

.about-copy {
  max-width: 690px;
  margin-top: 26px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.about-copy strong {
  color: var(--ink);
}

.schedule-section-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.schedule-heading {
  position: sticky;
  top: 110px;
}

.schedule-video-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  margin-top: 28px;
  border: 1px solid rgba(215, 180, 106, 0.3);
  border-radius: var(--radius-lg);
  background: #050607;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 34px rgba(215, 180, 106, 0.07);
}

.schedule-reel-video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
}

.schedule-panel {
  width: 100%;
}

.weekly-schedule {
  padding-top: 18px;
}

.weekly-schedule-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
  color: var(--ink);
  font-weight: 850;
}

.weekly-schedule-head .icon {
  color: var(--gold-2);
}

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

.schedule-day {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.schedule-day span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.schedule-day strong {
  margin: 0;
  color: var(--ink);
}

.schedule-day small {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(240, 204, 114, 0.14);
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 820;
}

.schedule-day em {
  color: var(--ink-2);
  font-style: normal;
  font-weight: 780;
  white-space: nowrap;
}

.schedule-day.is-today {
  border-color: rgba(240, 204, 114, 0.4);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.15), rgba(255, 255, 255, 0.025));
}

.info-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)), var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.info-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 204, 114, 0.44);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26), 0 0 34px rgba(215, 180, 106, 0.08);
}

.info-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

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

.info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-row .icon {
  color: var(--blue);
}

.info-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.96rem;
}

.info-row p,
.info-row a {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.info-row a {
  color: var(--blue);
  font-weight: 720;
}

.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.portfolio-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.services-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.service-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search {
  position: relative;
  min-width: min(420px, 45vw);
}

.search .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
}

.search input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)), var(--surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 180, 106, 0.52);
  box-shadow: var(--shadow-soft), 0 0 34px rgba(215, 180, 106, 0.1);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  transition:
    background 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.service-card:hover .service-icon {
  background: rgba(215, 180, 106, 0.18);
  box-shadow: 0 0 28px rgba(215, 180, 106, 0.16);
  transform: scale(1.03);
}

.service-icon .icon {
  width: 48px;
  height: 48px;
}

.price {
  color: var(--ink);
  font-weight: 880;
  white-space: nowrap;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.18rem;
  line-height: 1.18;
  font-weight: 860;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.duration {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.products-section {
  background: linear-gradient(180deg, #0f1114 0%, #0a0b0d 100%);
  border-top: 1px solid rgba(215, 180, 106, 0.12);
  border-bottom: 1px solid rgba(215, 180, 106, 0.12);
}

.products-head {
  align-items: flex-start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(215, 180, 106, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(215, 180, 106, 0.08), rgba(255, 255, 255, 0.02)), var(--surface);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.product-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: #070809;
  cursor: pointer;
}

.product-card-image img,
.product-modal-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-card .btn {
  min-height: 44px;
}

.product-card-copy {
  display: grid;
  gap: 6px;
  min-height: 118px;
}

.product-card-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
}

.product-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.product-card-copy span {
  align-self: end;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-modal {
  max-width: 960px;
}

.product-modal-body {
  grid-template-columns: minmax(0, 1.25fr) 300px;
}

.product-step-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.product-modal-image {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: #08090b;
}

.product-quantity-panel {
  display: grid;
  gap: 18px;
}

.product-quantity-panel p {
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-quantity-panel h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.product-quantity-control {
  display: grid;
  grid-template-columns: 52px minmax(70px, 1fr) 52px;
  align-items: center;
  gap: 10px;
  max-width: 230px;
}

.product-quantity-control strong {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid rgba(215, 180, 106, 0.3);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 1.45rem;
}

.product-summary-card .selected-service span {
  color: var(--gold);
}

.ritual-section {
  display: grid;
  align-items: center;
  min-height: 86vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), #0a0b0d 44%, #11151a 100%);
}

.ritual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 42px;
  align-items: center;
}

.ritual-about-layout {
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.ritual-video-only {
  display: flex;
  justify-content: center;
}

.ritual-feature-only {
  width: min(430px, 100%);
}

.ritual-feature-only::before,
.ritual-feature-only::after {
  display: none;
}

.about-cristian-copy {
  position: relative;
  max-width: 620px;
  padding: 28px 0 28px 34px;
}

.about-cristian-copy::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(240, 204, 114, 0.95), transparent);
  box-shadow: 0 0 22px rgba(240, 204, 114, 0.32);
}

.about-cristian-glint {
  position: absolute;
  top: 12px;
  left: 18px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 204, 114, 0), rgba(240, 204, 114, 0.95), rgba(240, 204, 114, 0));
  transform-origin: left center;
  animation: aboutGlint 3.2s ease-in-out infinite;
}

.about-cristian-copy h2 {
  margin: 0;
  color: #fff8e4;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.98;
  font-weight: 880;
  text-shadow: 0 0 22px rgba(240, 204, 114, 0.16);
}

.about-cristian-panel {
  position: relative;
  margin-top: 24px;
  padding: 22px 24px 24px;
  border-left: 1px solid rgba(240, 204, 114, 0.46);
  background:
    linear-gradient(90deg, rgba(240, 204, 114, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.about-cristian-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 204, 114, 0.9), rgba(240, 204, 114, 0));
}

.about-cristian-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(240, 204, 114, 0.11) 42%, transparent 64%);
  transform: translateX(-110%);
  animation: aboutSweep 5.6s ease-in-out infinite;
  pointer-events: none;
}

.about-cristian-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-lead {
  color: var(--gold-2);
  font-weight: 860;
}

.about-cristian-signal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  margin-top: 22px;
}

.about-cristian-signal i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(240, 204, 114, 0.32), rgba(240, 204, 114, 0.95));
  box-shadow: 0 0 16px rgba(240, 204, 114, 0.24);
  animation: aboutSignal 2.4s ease-in-out infinite;
}

.about-cristian-signal i:nth-child(1) {
  width: 34px;
}

.about-cristian-signal i:nth-child(2) {
  width: 62px;
  animation-delay: 180ms;
}

.about-cristian-signal i:nth-child(3) {
  width: 24px;
  animation-delay: 360ms;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.ritual-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.ritual-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 204, 114, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26), 0 0 34px rgba(215, 180, 106, 0.08);
}

.ritual-card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.ritual-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.ritual-feature {
  position: relative;
  overflow: hidden;
  min-height: 530px;
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: var(--radius-lg);
  background: #08090b;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.36), 0 0 38px rgba(215, 180, 106, 0.08);
}

.ritual-reel-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050607;
}

.ritual-feature img,
.ritual-reel-video,
.video-poster-fallback {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06);
}

.ritual-reel-video {
  position: relative;
  z-index: 1;
  display: block;
}

.video-frame .loop-video {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 260ms ease;
}

.video-frame.is-video-loading .loop-video {
  opacity: 0.98;
}

.video-poster-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: #050607;
  opacity: 1;
  visibility: visible;
  transform: scale(1.01);
  transition:
    opacity 320ms ease,
    visibility 320ms ease;
  pointer-events: none;
}

.schedule-video-frame .video-poster-fallback {
  min-height: 0;
  filter: saturate(1.02) contrast(1.05) brightness(0.72);
}

.video-frame.has-video-motion .video-poster-fallback {
  opacity: 0.08;
  visibility: hidden;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, transparent 24%, rgba(240, 204, 114, 0.18) 45%, transparent 66%);
  opacity: 0.4;
  transform: translateX(-65%);
  animation: stageScan 2.2s ease-in-out infinite;
  pointer-events: none;
}

.video-frame.has-video-motion::after {
  opacity: 0;
  animation-play-state: paused;
}

.ritual-feature::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.9));
  pointer-events: none;
}

.ritual-feature::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.42), transparent 28%, rgba(240, 204, 114, 0.18)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.38;
  pointer-events: none;
  animation: reelGoldPulse 5.4s ease-in-out infinite;
}

.ritual-reel-frame.has-video-motion .video-poster-fallback {
  opacity: 0.08;
  visibility: hidden;
}

.ritual-meter {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: 70px;
}

.ritual-meter span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(240, 204, 114, 0.26);
  transform-origin: left;
  animation: meterPulse 2.8s ease-in-out infinite;
}

.ritual-meter span:nth-child(2) {
  animation-delay: 180ms;
}

.ritual-meter span:nth-child(3) {
  animation-delay: 360ms;
}

.ritual-meter span:nth-child(4) {
  animation-delay: 540ms;
}

.ritual-feature-copy {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.7);
  backdrop-filter: blur(14px);
}

.ritual-feature-copy strong,
.ritual-feature-copy span {
  display: block;
}

.ritual-feature-copy strong {
  margin-bottom: 5px;
  color: white;
}

.ritual-feature-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.gallery-band {
  background: linear-gradient(180deg, #101216, #08090b);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 168px;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 36px rgba(18, 23, 31, 0.1);
  transition:
    transform 260ms ease,
    filter 260ms ease,
    box-shadow 260ms ease;
}

.gallery-grid img:hover {
  transform: translateY(-4px) scale(1.015);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32), 0 0 30px rgba(215, 180, 106, 0.12);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.lookbook-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.lookbook-rail figure {
  position: relative;
  overflow: hidden;
  min-height: 186px;
  margin: 0;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: var(--night);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.lookbook-rail img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.lookbook-rail figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.lookbook-rail figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 20px);
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(240, 204, 114, 0.34);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.76);
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 820;
  backdrop-filter: blur(10px);
}

.team-review-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

.barber-card,
.rating-summary,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)), var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.barber-card:hover,
.rating-summary:hover,
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 204, 114, 0.42);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26), 0 0 34px rgba(215, 180, 106, 0.08);
}

.barber-card {
  padding: 24px;
  text-align: center;
}

.barber-card img {
  width: 116px;
  height: 116px;
  margin: 0 auto 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--blue-soft);
}

.barber-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.barber-card p {
  margin: 4px 0 12px;
  color: var(--muted);
}

.rating-summary {
  padding: 24px;
}

.rating-row {
  display: grid;
  grid-template-columns: 34px 1fr 42px;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.rating-bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.rating-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(215, 180, 106, 0.24);
}

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

.review-card {
  min-height: 178px;
  padding: 20px;
}

.review-card strong {
  display: block;
  margin-bottom: 3px;
}

.review-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.stars {
  display: flex;
  gap: 3px;
  margin: 13px 0 12px;
  color: #f5aa1c;
}

.stars .muted-star {
  color: rgba(255, 255, 255, 0.18);
}

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.review-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.review-form-panel {
  margin: 24px auto 0;
  max-width: 760px;
  padding: 24px;
  border: 1px solid rgba(240, 204, 114, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.1), rgba(255, 255, 255, 0.018) 42%, rgba(0, 0, 0, 0.22)),
    var(--surface);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26), 0 0 30px rgba(215, 180, 106, 0.08);
}

.review-form-panel h3 {
  margin: 6px 0 18px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.review-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.review-text-field,
.review-submit {
  grid-column: 1 / -1;
}

.review-rating-picker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.46);
}

.review-star {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.22);
  transition:
    transform 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.review-star:hover,
.review-star.active {
  color: #f5aa1c;
}

.review-star:hover {
  transform: translateY(-1px);
  background: rgba(240, 204, 114, 0.08);
}

.review-star .icon {
  width: 22px;
  height: 22px;
}

.footer {
  padding: 42px 0;
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer strong {
  display: block;
  color: white;
  margin-bottom: 4px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 760;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 204, 114, 0.48);
  background: rgba(215, 180, 106, 0.1);
  color: white;
}

.footer-socials .icon {
  width: 17px;
  height: 17px;
  color: var(--gold-2);
}

.mobile-booking-bar {
  position: fixed;
  inset: auto 14px 14px;
  z-index: 25;
  display: none;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(13, 15, 18, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.mobile-booking-bar .btn {
  width: 100%;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: end center;
  padding: 24px;
  background: rgba(6, 8, 12, 0.62);
  backdrop-filter: blur(10px);
}

.booking-modal {
  width: min(1120px, 100%);
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.booking-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.booking-head h2 {
  margin: 0;
  font-size: 1.08rem;
}

.booking-steps {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.booking-steps span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.booking-steps b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
}

.booking-steps .active b {
  background: var(--blue);
  color: #11100c;
}

.booking-body {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 0;
  min-height: 0;
  max-height: calc(min(92vh, 900px) - 70px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-main {
  min-height: 530px;
  overflow: visible;
  padding: 26px;
}

.booking-side {
  border-left: 1px solid var(--line);
  background: var(--night-2);
  padding: 24px;
}

.step-panel h3 {
  margin: 0 0 18px;
  font-size: 1.32rem;
}

.booking-contact-autofill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(240, 204, 114, 0.08);
}

.booking-contact-autofill div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.booking-contact-autofill span {
  color: var(--muted);
  font-size: 0.88rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-contact-autofill .btn {
  min-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
}

.step-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.step-title-row h3 {
  margin: 0;
}

.step-title-row .btn {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.82rem;
}

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

.booking-mobile-step-actions {
  display: none;
}

.booking-row {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(142px, auto);
  align-items: center;
  gap: 22px;
  min-height: 124px;
  padding: 18px 20px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.booking-row.selected {
  border-color: rgba(240, 204, 114, 0.52);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.16), rgba(255, 255, 255, 0.035));
}

.step-note {
  margin: -4px 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.booking-row .service-icon {
  align-self: center;
  width: 76px;
  height: 76px;
  border-radius: 16px;
}

.booking-row .service-icon .icon {
  width: 44px;
  height: 44px;
}

.booking-row-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
}

.booking-row h4 {
  min-width: min(100%, 320px);
  margin: 0;
  line-height: 1.22;
}

.booking-row-copy {
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 2px 0;
}

.booking-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-row .duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  min-height: 22px;
}

.booking-row-action {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 14px;
  min-width: 132px;
}

.booking-row-action .booking-select {
  min-width: 132px;
}

.booking-quantity-control {
  display: inline-grid;
  grid-template-columns: 40px minmax(34px, auto) 40px;
  align-items: center;
  min-height: 40px;
  overflow: hidden;
  border: 1px solid rgba(215, 180, 106, 0.34);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.28);
}

.booking-quantity-control strong {
  min-width: 34px;
  color: var(--text);
  text-align: center;
  font-weight: 860;
}

.booking-quantity-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--gold-2);
  cursor: pointer;
}

.booking-quantity-btn:hover {
  background: rgba(215, 180, 106, 0.12);
}

.booking-quantity-btn .icon {
  width: 18px;
  height: 18px;
}

.date-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(70px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.calendar-shell {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(215, 180, 106, 0.08), rgba(215, 180, 106, 0)),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.calendar-top {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.calendar-top div {
  text-align: center;
}

.calendar-top strong {
  display: block;
  text-align: center;
  font-size: 1.02rem;
}

.calendar-top span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 720;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--night);
  color: var(--gold-2);
}

.calendar-nav .icon {
  transform: rotate(180deg);
}

.calendar-nav.next .icon {
  transform: none;
}

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

.calendar-weekdays {
  gap: 6px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-align: center;
}

.calendar-grid {
  gap: 8px;
}

.date-option,
.time-option {
  min-height: 70px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 760;
}

.calendar-day {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 4px;
}

.calendar-day-placeholder {
  min-height: 46px;
  visibility: hidden;
}

.date-option span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.calendar-day span {
  min-height: 1em;
  font-size: 0.64rem;
}

.calendar-day.outside-month {
  color: rgba(248, 246, 241, 0.48);
  background: rgba(255, 255, 255, 0.03);
}

.calendar-day.unavailable,
.calendar-day:disabled {
  color: rgba(248, 246, 241, 0.24);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.calendar-day:disabled {
  cursor: not-allowed;
}

.calendar-day.closed-by-schedule {
  cursor: pointer;
  color: rgba(240, 204, 114, 0.56);
  border-color: rgba(240, 204, 114, 0.16);
  background: rgba(215, 180, 106, 0.06);
}

.calendar-day.closed-by-schedule span {
  color: var(--gold-2);
  font-size: 0.58rem;
  font-weight: 850;
}

.date-option.active,
.time-option.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #11100c;
}

.date-option.active span {
  color: rgba(17, 16, 12, 0.72);
}

.calendar-day.closed-by-schedule.active {
  border-color: rgba(216, 79, 98, 0.34);
  background: rgba(216, 79, 98, 0.11);
  color: #ffb5c0;
}

.calendar-day.closed-by-schedule.active span {
  color: #ffb5c0;
}

.time-heading {
  margin: 0 0 12px;
  color: var(--ink-2);
  font-size: 0.98rem;
}

.booking-service-time-stack {
  display: grid;
  gap: 16px;
}

.booking-service-time-card {
  display: grid;
  gap: 10px;
}

.booking-service-time-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
}

.booking-service-time-head strong,
.booking-service-time-head span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.booking-service-time-head span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

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

.closed-day-message {
  padding: 16px;
  border: 1px solid rgba(216, 79, 98, 0.28);
  border-radius: var(--radius);
  background: rgba(216, 79, 98, 0.1);
  color: #ffb5c0;
  font-weight: 760;
}

.time-option {
  min-height: 50px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-actions-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form-actions-inline .btn {
  flex: 1 1 180px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 0 14px;
}

.field textarea {
  min-height: 100px;
  padding-top: 13px;
  resize: vertical;
}

.summary-card {
  display: grid;
  gap: 16px;
}

.summary-card h3 {
  margin: 0;
}

.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-line strong {
  color: var(--ink);
}

.selected-service {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.selected-service strong {
  display: block;
}

.selected-service span {
  color: var(--muted);
  font-size: 0.86rem;
}

.selected-service-stack span {
  display: block;
  margin-top: 7px;
  line-height: 1.45;
}

.confirmation {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.13);
  color: var(--gold-2);
}

.admin-login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 180, 106, 0.13), transparent 34%),
    linear-gradient(180deg, #151a20, #0f1216 58%, #101317);
}

.admin-login-panel {
  width: min(100%, 390px);
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(16, 19, 23, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  animation: heroReveal 620ms ease both;
}

.admin-login-logo {
  width: min(168px, 44vw);
  border-radius: 14px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.38));
}

.admin-login-panel h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 8vw, 2.7rem);
  line-height: 0.95;
}

.admin-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  width: min(100%, 430px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(240, 204, 114, 0.08), transparent 24%),
    #0b0d10;
  box-shadow: 0 0 0 1px rgba(215, 180, 106, 0.14), 0 28px 80px rgba(0, 0, 0, 0.38);
}

.admin-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  max-width: 430px;
  margin: 0 auto;
  background:
    linear-gradient(120deg, transparent 0%, rgba(240, 204, 114, 0.14) 45%, transparent 60%),
    radial-gradient(ellipse at 18% 12%, rgba(215, 180, 106, 0.16), transparent 34%);
  opacity: 0.64;
  animation: adminGoldPulse 8s ease-in-out infinite;
  pointer-events: none;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 22px;
  background: var(--night);
  color: white;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
}

.admin-brand strong {
  display: block;
  line-height: 1.1;
}

.admin-brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.admin-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-nav button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 720;
  text-align: left;
}

.admin-nav button.active,
.admin-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-main {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 18px 18px 104px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(240, 204, 114, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.12), rgba(255, 255, 255, 0.025) 42%, rgba(0, 0, 0, 0.14)),
    rgba(15, 18, 22, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.admin-topbar p {
  margin: 8px 0 0;
  color: rgba(231, 221, 201, 0.76);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-dashboard-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
  padding: 22px;
  border: 1px solid rgba(240, 204, 114, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.2), rgba(16, 19, 23, 0.92) 42%, rgba(240, 204, 114, 0.08)),
    #101317;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3), 0 0 42px rgba(215, 180, 106, 0.1);
}

.admin-dashboard-hero h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  line-height: 0.96;
}

.admin-dashboard-hero p {
  margin: 0;
  color: rgba(231, 221, 201, 0.74);
  font-size: 0.92rem;
}

.admin-kicker {
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-hero-metric {
  min-width: 118px;
  padding: 14px;
  border: 1px solid rgba(240, 204, 114, 0.28);
  border-radius: 14px;
  background: rgba(7, 8, 10, 0.56);
  text-align: right;
}

.admin-hero-metric span,
.admin-hero-metric small {
  display: block;
  color: rgba(231, 221, 201, 0.68);
  font-size: 0.72rem;
  font-weight: 780;
}

.admin-hero-metric strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.8rem;
  line-height: 1;
  margin: 6px 0;
}

.stat-card,
.admin-panel,
.appointment-row,
.editor-row {
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(24, 28, 34, 0.88);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 30%;
  height: 80px;
  background: radial-gradient(circle, rgba(240, 204, 114, 0.18), transparent 66%);
  pointer-events: none;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 680;
}

.admin-stat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(215, 180, 106, 0.14);
  color: var(--gold-2) !important;
  box-shadow: 0 0 24px rgba(215, 180, 106, 0.12);
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1;
}

.daily-inventory {
  margin-bottom: 20px;
}

.daily-inventory-body {
  display: grid;
  gap: 14px;
}

.inventory-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.inventory-summary div,
.inventory-row {
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.28);
}

.inventory-summary div {
  padding: 12px;
}

.inventory-summary span,
.inventory-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.inventory-summary strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.1;
}

.inventory-breakdown {
  display: grid;
  gap: 8px;
}

.inventory-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 11px 12px;
}

.inventory-row strong {
  color: var(--ink-2);
  font-size: 0.82rem;
}

.inventory-row em {
  grid-column: 1 / -1;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 850;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
  align-items: start;
}

.admin-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.admin-panel {
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(215, 180, 106, 0.18);
  background: linear-gradient(90deg, rgba(215, 180, 106, 0.08), transparent);
}

.panel-head h2 {
  margin: 0;
  font-size: 1.08rem;
}

.panel-body {
  padding: 18px 20px 20px;
}

.admin-new-booking .panel-body {
  gap: 12px;
}

.admin-form-hint {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(240, 204, 114, 0.24);
  border-radius: var(--radius);
  background: rgba(215, 180, 106, 0.1);
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-form-hint strong {
  color: var(--gold-2);
}

.qr-template-list {
  display: grid;
  gap: 14px;
}

.qr-template-row {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(11, 14, 18, 0.56);
}

.qr-template-row-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.qr-template-row-head h3,
.qr-template-row-head p {
  margin: 0;
}

.qr-template-row-head h3 {
  font-size: 1rem;
}

.qr-template-row-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.qr-template-active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  border-radius: 999px;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.84rem;
}

.qr-template-active input {
  accent-color: var(--gold);
}

.qr-template-variables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qr-template-variables span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(138, 169, 255, 0.24);
  border-radius: 999px;
  background: rgba(82, 112, 190, 0.14);
  color: #d6e1ff;
  font-size: 0.78rem;
  font-weight: 800;
}

.qr-template-body-field textarea {
  min-height: 170px;
  resize: vertical;
}

.qr-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.admin-time-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: 230px;
  overflow-y: auto;
  padding-right: 2px;
}

.admin-time-grid .time-option {
  min-height: 46px;
}

.admin-service-time-picker {
  display: grid;
  gap: 12px;
}

.admin-service-time-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.admin-service-time-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.26);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.admin-service-time-item.active {
  border-color: rgba(240, 204, 114, 0.62);
  background: rgba(215, 180, 106, 0.14);
}

.admin-service-time-item > span:nth-child(2) {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.admin-service-time-item strong,
.admin-service-time-item small,
.admin-service-time-item em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-service-time-item strong {
  font-size: 0.8rem;
}

.admin-service-time-item small,
.admin-service-time-item em {
  color: var(--muted);
  font-size: 0.72rem;
}

.admin-service-time-item em {
  grid-column: 1 / -1;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 760;
}

.pending-bookings-panel .panel-head {
  align-items: start;
}

.pending-bookings-panel .panel-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.pending-bookings-summary {
  display: grid;
  gap: 12px;
}

.pending-booking-next {
  display: grid;
  grid-template-columns: minmax(82px, 0.34fr) minmax(72px, 0.28fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(240, 204, 114, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(11, 13, 16, 0.72);
  color: var(--ink);
  text-align: left;
}

.pending-booking-next:hover {
  border-color: rgba(240, 204, 114, 0.5);
  transform: translateY(-1px);
}

.pending-booking-next span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
}

.pending-booking-next strong {
  color: var(--gold-2);
  font-size: 1rem;
}

.pending-booking-next em {
  min-width: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.pending-bookings-trigger {
  width: 100%;
}

.pending-bookings-modal {
  width: min(100%, 760px);
}

.pending-bookings-search {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 16px 18px 0;
  padding: 11px 12px;
  border: 1px solid rgba(240, 204, 114, 0.24);
  border-radius: var(--radius);
  background: rgba(10, 12, 15, 0.74);
}

.pending-bookings-search .icon {
  width: 18px;
  height: 18px;
  color: var(--gold-2);
}

.pending-bookings-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.pending-bookings-search input::placeholder {
  color: rgba(235, 229, 214, 0.58);
}

.pending-bookings-scroll {
  display: grid;
  gap: 12px;
  max-height: min(68vh, 620px);
  overflow: auto;
  padding: 18px;
  -webkit-overflow-scrolling: touch;
}

.pending-bookings-modal .appointment-row {
  grid-template-columns: 92px minmax(0, 1fr);
}

.admin-logs-panel {
  display: grid;
  gap: 14px;
}

.admin-log-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}

.admin-log-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 0 18px;
}

.admin-log-search {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-log-search span {
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-log-search input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(215, 180, 106, 0.26);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.48);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.admin-log-search input:focus {
  border-color: rgba(240, 204, 114, 0.72);
  box-shadow: 0 0 0 3px rgba(240, 204, 114, 0.12);
}

.admin-log-stats span {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.36);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.admin-log-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1rem;
}

.admin-logs-list {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.admin-log-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
}

.admin-log-list-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.admin-log-list-head .btn {
  min-height: 40px;
  padding-inline: 12px;
  white-space: nowrap;
}

.admin-logs-list.is-scrollable {
  max-height: min(68vh, 620px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.admin-log-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-left: 4px solid rgba(240, 204, 114, 0.5);
  border-radius: var(--radius);
  background: rgba(10, 12, 15, 0.72);
}

.admin-log-card.success {
  border-left-color: #73d99f;
}

.admin-log-card.warning {
  border-left-color: #f0cc72;
}

.admin-log-card.error {
  border-left-color: #ff6b7a;
}

.admin-log-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.admin-log-source {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-log-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-log-card time {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  white-space: nowrap;
}

.admin-log-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-log-meta,
.admin-log-booking {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-log-meta span,
.admin-log-booking span {
  min-width: 0;
  padding: 7px 9px;
  border: 1px solid rgba(240, 204, 114, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 760;
}

.admin-log-booking span {
  border-radius: var(--radius);
  overflow-wrap: anywhere;
}

.admin-log-booking strong {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-2);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.admin-log-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.admin-log-details div {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(215, 180, 106, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.3);
}

.admin-log-details dt {
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-log-details dd {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.services-by-date {
  display: grid;
  gap: 14px;
}

.services-by-date-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.7fr);
  gap: 12px;
  align-items: end;
}

.services-by-date-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.services-by-date-summary div {
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.28);
}

.services-by-date-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.services-by-date-summary strong {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  line-height: 1.1;
}

.services-by-date-timeline {
  display: grid;
  gap: 10px;
}

.calendar-service-row {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(215, 180, 106, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.28);
  color: var(--ink);
  text-align: left;
}

.calendar-service-row:hover {
  border-color: rgba(240, 204, 114, 0.44);
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(24, 28, 34, 0.9);
}

.calendar-service-time {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: var(--radius);
  background: rgba(43, 108, 255, 0.14);
  color: #9dbdff;
  font-size: 0.78rem;
  font-weight: 880;
}

.calendar-service-row strong,
.calendar-service-row small,
.calendar-service-row em {
  display: block;
}

.calendar-service-row strong {
  font-size: 0.96rem;
}

.calendar-service-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.calendar-service-row em {
  margin-top: 6px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.managed-time-field {
  min-width: 0;
}

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

.appointment-list,
.editor-list {
  display: grid;
  gap: 12px;
}

.appointment-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 14px;
  box-shadow: none;
  color: var(--ink);
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.appointment-open:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 204, 114, 0.44);
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(24, 28, 34, 0.92);
}

.appointment-row.is-canceled {
  border-color: rgba(216, 79, 98, 0.28);
  opacity: 0.72;
}

.appointment-row.is-canceled .appointment-time {
  background: rgba(216, 79, 98, 0.12);
  color: #ff9aaa;
  box-shadow: inset 0 0 0 1px rgba(216, 79, 98, 0.18);
}

.appointment-time {
  display: grid;
  place-items: center;
  min-height: 62px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(240, 204, 114, 0.08));
  color: var(--gold-2);
  font-weight: 880;
  box-shadow: inset 0 0 0 1px rgba(240, 204, 114, 0.12);
}

.appointment-row h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.appointment-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.appointment-more {
  display: inline-flex;
  width: max-content;
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 820;
}

.quick-card {
  display: grid;
  gap: 12px;
}

.quick-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.editor-row {
  padding: 16px;
  box-shadow: none;
}

.editor-row-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.editor-row h3 {
  margin: 0;
  font-size: 1rem;
}

.editor-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.service-summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(24, 28, 34, 0.88);
  color: var(--ink);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-summary-row:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 204, 114, 0.44);
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(24, 28, 34, 0.92);
}

.service-summary-row h3 {
  margin: 0;
  font-size: 1rem;
}

.service-summary-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-summary-row strong,
.service-summary-row span {
  display: block;
  text-align: right;
  white-space: nowrap;
}

.service-summary-row strong {
  color: var(--gold-2);
}

.service-summary-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.inline-fields {
  display: grid;
  grid-template-columns: 1fr 140px 120px;
  gap: 10px;
  margin-top: 12px;
}

.profile-form {
  display: grid;
  gap: 18px;
}

.profile-section-grid {
  display: grid;
  gap: 14px;
}

.profile-config-block {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(8, 9, 11, 0.22);
}

.profile-config-block h3 {
  margin: 0 0 2px;
  color: var(--gold-2);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.profile-copy-block textarea {
  min-height: 136px;
}

.profile-actions,
.modal-actions {
  display: flex;
  gap: 10px;
}

.profile-actions .btn,
.modal-actions .btn {
  flex: 1;
}

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

.gallery-admin figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery-admin img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-admin button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(13, 15, 18, 0.72);
  color: white;
}

.schedule-grid {
  display: grid;
  gap: 10px;
}

.schedule-admin-stack {
  display: grid;
  gap: 14px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.schedule-row strong {
  font-size: 0.9rem;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.switch input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: end center;
  padding: 18px;
  background: rgba(4, 5, 7, 0.68);
  backdrop-filter: blur(10px);
}

.admin-modal {
  width: min(100%, 406px);
  max-height: min(88vh, 780px);
  overflow: auto;
  border: 1px solid rgba(240, 204, 114, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(240, 204, 114, 0.09), rgba(255, 255, 255, 0.02) 38%, rgba(0, 0, 0, 0.2)),
    #101317;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 36px rgba(215, 180, 106, 0.12);
}

.appointment-detail-modal {
  width: min(100%, 760px);
}

.admin-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(215, 180, 106, 0.18);
}

.admin-modal-head h2 {
  margin: 4px 0 4px;
  font-family: var(--title-font);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.admin-modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.appointment-detail-grid,
.service-edit-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.appointment-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px 18px 0;
}

.appointment-action-grid .btn {
  width: 100%;
  min-width: 0;
}

.appointment-edit-form {
  display: grid;
  gap: 12px;
}

.appointment-edit-form .inline-fields.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.appointment-detail-grid section {
  padding: 14px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(8, 9, 11, 0.26);
}

.appointment-detail-grid h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.appointment-detail-grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.appointment-detail-grid dl div {
  display: grid;
  gap: 2px;
}

.appointment-detail-grid dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
}

.appointment-detail-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.service-choice-list {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}

.service-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.24);
  color: var(--ink);
}

.service-choice.active {
  border-color: rgba(240, 204, 114, 0.5);
  background: rgba(215, 180, 106, 0.12);
}

.service-choice input {
  accent-color: var(--gold);
}

.service-choice span {
  min-width: 0;
  font-size: 0.86rem;
}

.service-choice strong {
  color: var(--gold-2);
  white-space: nowrap;
}

.admin-service-choice-list {
  max-height: 260px;
}

.appointment-note textarea {
  min-height: 96px;
}

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

.booking-history li {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(215, 180, 106, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.booking-history span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.booking-history strong {
  font-size: 0.9rem;
}

.profile-admin-stack,
.admin-review-list {
  display: grid;
  gap: 14px;
}

.admin-review-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.24);
}

.admin-review-row strong {
  display: block;
  color: var(--ink);
}

.admin-review-row span {
  display: block;
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-review-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-review-actions {
  display: grid;
  grid-template-columns: repeat(3, 42px);
  gap: 6px;
}

.admin-review-actions .icon-up {
  transform: rotate(-90deg);
}

.admin-review-actions .icon-down {
  transform: rotate(90deg);
}

.special-hours-card .panel-body + .panel-body {
  border-top: 1px solid rgba(215, 180, 106, 0.16);
}

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

.schedule-exception-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.24);
}

.row-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.schedule-exception-row strong {
  display: block;
  color: var(--ink);
}

.schedule-exception-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.dead-slots-card {
  border-color: rgba(240, 204, 114, 0.22);
}

.dead-slot-row {
  grid-template-columns: minmax(0, 1fr) auto 42px;
}

.dead-slot-row .inline-fields {
  align-items: end;
}

.dead-slot-row .field {
  min-width: 0;
}

.dead-slot-row input {
  min-height: 42px;
}

.dead-slot-scope {
  white-space: nowrap;
}

.admin-client-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.admin-client-list,
.admin-client-results {
  display: grid;
  gap: 12px;
}

.admin-client-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-client-stat-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: 8px;
  background: rgba(240, 204, 114, 0.06);
}

.admin-client-stat-grid span,
.admin-client-meta small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

.admin-client-stat-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1;
}

.admin-client-search {
  margin-bottom: 4px;
}

.admin-client-directory-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(215, 180, 106, 0.2);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.26);
}

.admin-client-directory-actions strong,
.admin-client-directory-actions span {
  display: block;
}

.admin-client-directory-actions span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.client-directory-modal {
  width: min(100%, 760px);
  max-width: 760px;
}

.client-directory-modal .admin-client-results {
  max-height: min(58vh, 520px);
  overflow: auto;
  padding-right: 4px;
}

.admin-client-summary {
  display: grid;
  grid-template-columns: 42px minmax(140px, 1.15fr) minmax(124px, 0.55fr) minmax(62px, auto);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 12px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(8, 9, 11, 0.38), rgba(24, 27, 32, 0.42));
  color: var(--ink);
  text-align: left;
}

.admin-client-summary > * {
  min-width: 0;
}

.admin-client-summary:hover,
.admin-client-summary:focus-visible {
  border-color: rgba(240, 204, 114, 0.45);
  background: rgba(215, 180, 106, 0.08);
}

.admin-client-main strong,
.admin-client-main small,
.admin-client-summary em {
  display: block;
}

.admin-client-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(240, 204, 114, 0.28);
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.12);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 920;
}

.admin-client-main {
  min-width: 0;
}

.admin-client-main strong {
  font-size: 1rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.admin-client-main small {
  margin-top: 4px;
  color: var(--muted);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-client-meta {
  min-width: 0;
}

.admin-client-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.admin-client-summary em {
  justify-self: end;
  text-align: right;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.client-detail-modal {
  max-width: 980px;
}

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

.client-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  padding: 18px;
}

.client-detail-card {
  padding: 14px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.22);
}

.client-detail-card h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.client-detail-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.client-detail-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.client-detail-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.client-booking-card {
  grid-column: 1 / -1;
}

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

.product-orders-panel,
.whatsapp-panel {
  min-height: calc(100vh - 170px);
}

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

.admin-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(240, 204, 114, 0.28);
  border-radius: 999px;
  background: rgba(215, 180, 106, 0.1);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
}

.product-order-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.26);
}

.product-order-row strong,
.product-order-row span {
  display: block;
}

.product-order-row strong {
  color: var(--ink);
  line-height: 1.2;
}

.product-order-row span {
  margin-top: 4px;
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 780;
}

.product-order-row dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 0;
}

.product-order-row dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-order-row dd {
  margin: 3px 0 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.product-order-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-order-actions .btn {
  min-height: 40px;
  padding-inline: 10px;
  font-size: 0.78rem;
}

.product-order-editor {
  max-width: 560px;
}

.whatsapp-chat-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  height: min(760px, calc(100vh - 180px));
  min-height: min(760px, calc(100vh - 180px));
  max-height: min(760px, calc(100vh - 180px));
  padding: 0;
  overflow: hidden;
}

.whatsapp-phone-shell {
  border-radius: 18px;
  background: #f7f4ee;
  color: #101418;
}

.whatsapp-inbox-screen,
.whatsapp-thread-screen {
  display: grid;
  min-width: 0;
  height: 100%;
  min-height: min(760px, calc(100vh - 180px));
  overflow: hidden;
}

.whatsapp-inbox-screen {
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  background: #fbfaf7;
}

.whatsapp-inbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 16px 12px;
  background: #fbfaf7;
  color: #0b141a;
}

.whatsapp-inbox-head h2 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 8vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1;
}

.whatsapp-inbox-head span:not(.admin-live-badge) {
  display: block;
  margin-top: 5px;
  color: #667781;
  font-size: 0.82rem;
  font-weight: 760;
}

.whatsapp-filter-tabs {
  display: flex;
  gap: 8px;
  padding: 0 16px 10px;
  overflow-x: auto;
  background: #fbfaf7;
}

.whatsapp-filter-tabs button {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid #dfe5e7;
  border-radius: 999px;
  background: #fff;
  color: #3b4a54;
  font-weight: 900;
}

.whatsapp-filter-tabs button.active,
.whatsapp-filter-tabs button:hover {
  border-color: #e7d081;
  background: #fff4bf;
  color: #231f12;
}

.whatsapp-api-control {
  margin: 0 16px 10px;
  padding: 10px 12px;
  border: 1px solid #dfe5e7;
  border-radius: 10px;
  background: #fff;
  color: #111b21;
}

.whatsapp-qr-status {
  display: grid;
  gap: 10px;
  margin: 0 16px 10px;
  padding: 12px;
  border: 1px solid #dfe5e7;
  border-radius: 10px;
  background: #fff;
  color: #111b21;
}

.whatsapp-qr-status.is-connected {
  border-color: rgba(21, 128, 61, 0.28);
  background: #f4fbf6;
}

.whatsapp-qr-status.is-disconnected {
  border-color: rgba(185, 28, 28, 0.3);
  background: #fff6f6;
}

.whatsapp-qr-status.is-waiting {
  border-color: rgba(217, 119, 6, 0.3);
  background: #fffbeb;
}

.whatsapp-qr-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.whatsapp-qr-status-head h3 {
  margin: 0;
  color: #111b21;
  font-size: 0.98rem;
  line-height: 1.1;
}

.whatsapp-qr-status-head span {
  display: block;
  margin-top: 4px;
  color: #667781;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.whatsapp-qr-status-head .btn {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.72rem;
}

.whatsapp-qr-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  gap: 8px;
  margin: 0;
}

.whatsapp-qr-facts div {
  min-width: 0;
  padding: 8px;
  border: 1px solid #eceff1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.whatsapp-qr-facts dt {
  color: #667781;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-qr-facts dd {
  margin: 3px 0 0;
  color: #111b21;
  font-size: 0.78rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.whatsapp-api-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.whatsapp-api-switch span {
  color: #3b4a54;
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-api-switch div {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
}

.whatsapp-api-switch button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #dfe5e7;
  border-radius: 999px;
  background: #fff;
  color: #3b4a54;
  font-size: 0.72rem;
  font-weight: 900;
}

.whatsapp-api-switch button.active {
  border-color: #e7d081;
  background: #fff4bf;
  color: #231f12;
}

.whatsapp-api-switch button.active.danger {
  border-color: rgba(185, 28, 28, 0.35);
  background: #ffe4e6;
  color: #8f1d2c;
}

.whatsapp-qr-warning {
  margin: 0;
  padding: 9px 10px;
  border: 1px solid rgba(185, 28, 28, 0.28);
  border-radius: 8px;
  background: #ffe4e6;
  color: #8f1d2c;
  font-size: 0.78rem;
  font-weight: 850;
}

.whatsapp-qr-warning.soft {
  border-color: rgba(217, 119, 6, 0.28);
  background: #fff7d6;
  color: #7a4b00;
}

.local-whatsapp-qr-panel {
  display: grid;
  gap: 16px;
  padding-bottom: 34px;
}

.local-whatsapp-qr-head {
  align-items: flex-start;
  gap: 12px;
}

.local-whatsapp-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(231, 208, 129, 0.32);
  border-radius: 999px;
  background: rgba(231, 208, 129, 0.12);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-whatsapp-status-badge.is-connected {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.12);
  color: #b7f7c8;
}

.local-whatsapp-status-badge.is-disconnected {
  border-color: rgba(255, 98, 118, 0.32);
  background: rgba(255, 98, 118, 0.1);
  color: #ffc2ca;
}

.local-whatsapp-status-badge.is-warning {
  border-color: rgba(240, 207, 114, 0.38);
  background: rgba(240, 207, 114, 0.12);
  color: #ffe39a;
}

.local-whatsapp-qr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  width: 100%;
}

.local-whatsapp-qr-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(231, 208, 129, 0.22);
  border-radius: 14px;
  background: rgba(12, 14, 17, 0.5);
}

.local-whatsapp-qr-card.is-connected {
  border-color: rgba(34, 197, 94, 0.28);
}

.local-whatsapp-qr-card.is-disconnected {
  border-color: rgba(255, 98, 118, 0.3);
}

.local-whatsapp-qr-card.is-waiting {
  border-color: rgba(240, 207, 114, 0.38);
}

.local-whatsapp-qr-card.is-warning {
  border-color: rgba(240, 207, 114, 0.42);
}

.local-whatsapp-qr-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.local-whatsapp-qr-card-head span,
.local-whatsapp-qr-facts dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.local-whatsapp-qr-card-head strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: clamp(1.08rem, 5.4vw, 1.35rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.local-whatsapp-qr-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
  margin: 0;
  min-width: 0;
}

.local-whatsapp-qr-facts div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(231, 208, 129, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.local-whatsapp-qr-facts dd {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.local-whatsapp-qr-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  min-width: 0;
}

.local-whatsapp-qr-actions .btn {
  width: 100%;
  min-width: 0;
  white-space: normal;
  line-height: 1.2;
}

.local-whatsapp-support {
  background: linear-gradient(180deg, rgba(231, 208, 129, 0.08), rgba(12, 14, 17, 0.58));
}

.local-whatsapp-support p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.local-whatsapp-support-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 10px;
  min-width: 0;
}

.local-whatsapp-support-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  white-space: normal;
  line-height: 1.2;
}

.local-whatsapp-command-result {
  padding: 10px 12px;
  border: 1px solid rgba(231, 208, 129, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.local-whatsapp-qr-help h3 {
  margin: 0;
  color: var(--gold);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.local-whatsapp-qr-help p,
.local-whatsapp-qr-help li {
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.local-whatsapp-qr-help ol {
  margin: 0;
  padding-left: 18px;
}

.whatsapp-conversation-list {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0;
  min-height: 0;
  max-height: none;
  padding: 0;
  border-bottom: 0;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.whatsapp-conversation {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  width: 100%;
  min-height: 82px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #eceff1;
  border-radius: 0;
  background: #fff;
  color: #111b21;
  text-align: left;
}

.whatsapp-conversation.active,
.whatsapp-conversation:hover {
  border-color: #eceff1;
  background: #fffaf0;
}

.whatsapp-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #213026, #08130e);
  color: #f1d66f;
  font-size: 0.78rem;
  font-weight: 920;
  box-shadow: inset 0 0 0 1px rgba(241, 214, 111, 0.24);
}

.whatsapp-row-main {
  min-width: 0;
}

.whatsapp-conversation strong,
.whatsapp-conversation small {
  display: block;
  min-width: 0;
  color: #111b21;
  overflow-wrap: anywhere;
  white-space: normal;
}

.whatsapp-conversation strong {
  font-size: 0.96rem;
  line-height: 1.22;
  font-weight: 850;
}

.whatsapp-conversation small {
  margin-top: 4px;
  color: #667781;
  font-size: 0.78rem;
}

.whatsapp-row-preview {
  display: block;
  min-width: 0;
  margin-top: 4px;
  color: #667781;
  font-size: 0.86rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-row-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
  min-width: 44px;
  color: #667781;
  font-size: 0.76rem;
  white-space: nowrap;
}

.whatsapp-row-meta time {
  color: #667781;
}

.whatsapp-conversation-unread {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f3cf4f;
  color: #16130a;
  font-size: 0.72rem;
  font-weight: 900;
}

.whatsapp-thread {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  background: #efe7da;
}

.whatsapp-thread-head {
  display: grid;
  grid-template-columns: 34px 42px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 64px;
  padding: 8px 10px;
  border-bottom: 1px solid #dfe5e7;
  background: #fff;
  color: #111b21;
}

.whatsapp-thread-back {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111b21;
}

.whatsapp-thread-back .icon-back {
  transform: rotate(180deg);
}

.whatsapp-thread-title {
  min-width: 0;
}

.whatsapp-thread-title strong,
.whatsapp-thread-title span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.whatsapp-thread-title strong {
  color: #111b21;
  font-size: 0.98rem;
  line-height: 1.2;
}

.whatsapp-thread-title span {
  margin-top: 3px;
  color: #667781;
  font-size: 0.76rem;
}

.whatsapp-thread-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding-left: 42px;
  flex-wrap: wrap;
}

.whatsapp-thread-actions .pill {
  min-height: 28px;
  padding-inline: 9px;
  font-size: 0.7rem;
}

.whatsapp-thread-actions .icon-btn {
  width: 32px;
  height: 32px;
  border-color: #dfe5e7;
  background: #f7f8fa;
  color: #111b21;
}

.whatsapp-message-viewport {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  overscroll-behavior: contain;
}

.whatsapp-message-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  min-height: 0;
  padding: 16px 12px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at 12px 14px, rgba(17, 27, 33, 0.045) 0 2px, transparent 3px),
    radial-gradient(circle at 42px 38px, rgba(17, 27, 33, 0.035) 0 2px, transparent 3px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(239, 231, 218, 0.72)),
    #efe7da;
  background-size: 56px 56px, 64px 64px, auto, auto;
}

.whatsapp-message {
  max-width: min(78%, 560px);
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(11, 20, 26, 0.12);
}

.whatsapp-message.outbound {
  align-self: flex-end;
  background: #d9fdd3;
}

.whatsapp-message.inbound {
  align-self: flex-start;
}

.whatsapp-message p {
  margin: 0;
  color: #111b21;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.whatsapp-quoted-reply {
  display: grid;
  gap: 2px;
  margin: 0 0 7px;
  padding: 7px 9px;
  border-left: 4px solid #06cf9c;
  border-radius: 7px;
  background: rgba(17, 27, 33, 0.08);
  color: #3b4a54;
}

.whatsapp-message.outbound .whatsapp-quoted-reply {
  border-left-color: #ff9f43;
  background: rgba(6, 95, 70, 0.12);
}

.whatsapp-quoted-reply strong {
  color: #b35d00;
  font-size: 0.78rem;
  line-height: 1.1;
}

.whatsapp-quoted-reply span {
  display: -webkit-box;
  color: #3b4a54;
  font-size: 0.88rem;
  line-height: 1.25;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.whatsapp-template-label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 0.74rem;
}

.whatsapp-media-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: #075e54;
  font-size: 0.84rem;
  font-weight: 900;
}

.whatsapp-media-label .icon {
  width: 18px;
  height: 18px;
}

.whatsapp-media-preview {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 2px 0 7px;
  border-radius: 8px;
}

img.whatsapp-media-preview,
video.whatsapp-media-preview {
  max-height: 340px;
  object-fit: cover;
}

.whatsapp-audio-player {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: min(292px, 72vw);
  max-width: min(330px, 100%);
  padding: 8px 10px;
  border-radius: 22px;
  background: #f7f9fa;
  color: #111b21;
}

.whatsapp-audio-toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #54656f;
  color: #fff;
  cursor: pointer;
}

.whatsapp-audio-toggle:disabled {
  cursor: wait;
  opacity: 0.72;
}

.whatsapp-audio-toggle .icon {
  width: 17px;
  height: 17px;
}

.whatsapp-audio-body {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.whatsapp-audio-time {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #54656f;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
}

.whatsapp-audio-progress {
  width: 100%;
  height: 18px;
  margin: 0;
  accent-color: #54656f;
  cursor: pointer;
}

.whatsapp-audio-progress:disabled {
  cursor: wait;
  opacity: 0.65;
}

.whatsapp-audio-element {
  display: none;
}

.whatsapp-audio-player.loading .whatsapp-audio-toggle {
  animation: audioButtonPulse 1s ease-in-out infinite;
}

.whatsapp-audio-player.error {
  outline: 1px solid rgba(186, 26, 26, 0.32);
}

.whatsapp-document-preview {
  width: fit-content;
  max-width: 100%;
  padding: 9px 10px;
  border: 1px solid rgba(7, 94, 84, 0.18);
  background: rgba(7, 94, 84, 0.07);
  color: #075e54;
  font-weight: 850;
  text-decoration: none;
}

.whatsapp-message span {
  display: block;
  margin-top: 5px;
  color: #667781;
  font-size: 0.7rem;
  text-align: right;
}

.whatsapp-message-status {
  color: #667781;
  font-weight: 800;
  text-align: right;
}

.whatsapp-message-status.seen {
  color: #53bdeb;
}

.whatsapp-reply-form {
  display: grid;
  grid-template-columns: 44px 44px minmax(0, 1fr) 44px;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid #dfe5e7;
  background: #f7f4ee;
}

.whatsapp-attach-btn,
.whatsapp-record-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border-color: #e4e8eb;
  background: #fff;
  color: #54656f;
}

.whatsapp-record-btn.recording {
  background: #ffebe9;
  border-color: #ff8a7c;
  color: #b3261e;
}

.whatsapp-attach-btn input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.whatsapp-reply-form textarea {
  min-height: 44px;
  max-height: 120px;
  resize: none;
  border: 1px solid #e4e8eb;
  border-radius: 999px;
  background: #fff;
  color: #111b21;
  padding: 12px 16px;
}

.whatsapp-reply-form .btn {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

.whatsapp-reply-form p,
.whatsapp-chat-notice {
  grid-column: 1 / -1;
  margin: 0;
  color: #7a5b00;
  font-size: 0.84rem;
}

.client-booking-form .inline-fields.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.admin-client-history ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.admin-client-history li span,
.admin-client-history li em {
  display: block;
}

.admin-client-history li span {
  color: var(--ink);
  font-weight: 760;
}

.admin-client-history li em {
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
}

.admin-devices-panel {
  border-color: rgba(103, 168, 255, 0.22);
}

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

.admin-device-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(240, 204, 114, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-device-row.current-device {
  border-color: rgba(240, 204, 114, 0.45);
}

.admin-device-row strong,
.admin-device-row span,
.admin-device-row small {
  display: block;
}

.admin-device-row span {
  color: var(--muted);
  margin-top: 4px;
}

.admin-device-row small {
  color: var(--gold);
  margin-top: 6px;
}

.admin-device-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-editor-modal .field textarea {
  min-height: 132px;
}

.admin-mobile-nav {
  position: fixed;
  inset: auto max(12px, calc((100vw - 540px) / 2)) 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(9, minmax(54px, 1fr));
  gap: 4px;
  width: min(calc(100% - 24px), 540px);
  padding: 8px;
  border: 1px solid rgba(240, 204, 114, 0.3);
  border-radius: 18px;
  background: rgba(8, 9, 11, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), 0 0 32px rgba(215, 180, 106, 0.08);
}

.admin-mobile-nav button {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 56px;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 740;
}

.admin-mobile-nav button.active {
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(240, 204, 114, 0.12));
  color: var(--gold-2);
}

body[data-view="admin"] .admin-topbar {
  align-items: start;
  flex-direction: column;
}

body[data-view="admin"] .admin-actions {
  width: 100%;
}

body[data-view="admin"] .admin-actions .btn {
  flex: 1;
}

body[data-view="admin"] .stats-grid,
body[data-view="admin"] .admin-grid,
body[data-view="admin"] .admin-client-layout {
  grid-template-columns: 1fr;
}

body[data-view="admin"] .stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-view="admin"] .admin-client-stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-view="admin"] .appointment-row {
  grid-template-columns: 72px 1fr;
}

body[data-view="admin"] .inline-fields,
body[data-view="admin"] .schedule-row {
  grid-template-columns: 1fr;
}

body[data-view="admin"] .gallery-admin {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-title,
.about-cristian-copy h2,
.review-form-panel h3,
.booking-head h2,
.step-panel h3,
.confirmation h3,
.admin-login-panel h1,
.admin-topbar h1,
.admin-dashboard-hero h2,
.panel-head h2 {
  font-family: var(--title-font);
  font-weight: 400;
  letter-spacing: 0;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--night);
  color: white;
  box-shadow: var(--shadow);
  font-weight: 720;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 26px;
  color: var(--muted);
  text-align: center;
}

.managed-booking-page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 36px 16px;
  background: #f6f7fb;
  color: #0f2530;
}

.managed-booking-card {
  width: min(650px, 100%);
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.managed-logo {
  width: 58px;
  height: auto;
  margin-bottom: 18px;
}

.managed-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.managed-head h1 {
  margin: 4px 0 0;
  font-size: clamp(1.7rem, 5vw, 2.25rem);
  letter-spacing: 0;
}

.managed-message,
.managed-confirm-box,
.managed-blocked-box,
.managed-policy {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  background: #eef5ff;
  color: #163b75;
}

.managed-message {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-width: 2px;
  box-shadow: 0 12px 30px rgba(43, 108, 255, 0.12);
}

.managed-message p,
.managed-message strong {
  margin: 0;
}

.managed-message strong {
  display: block;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.managed-message p {
  margin-top: 4px;
  line-height: 1.45;
}

.managed-message-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(43, 108, 255, 0.12);
}

.managed-message-success {
  border-color: #68d391;
  background: #ecfdf3;
  color: #075e2a;
  box-shadow: 0 14px 34px rgba(7, 94, 42, 0.12);
}

.managed-message-success .managed-message-icon {
  background: rgba(7, 94, 42, 0.12);
}

.managed-message-warning {
  border-color: #f0c96b;
  background: #fff8e5;
  color: #694a05;
  box-shadow: 0 14px 34px rgba(105, 74, 5, 0.12);
}

.managed-message-warning .managed-message-icon {
  background: rgba(105, 74, 5, 0.12);
}

.managed-message-danger {
  border-color: #f09aaa;
  background: #fff0f2;
  color: #8a1f31;
  box-shadow: 0 14px 34px rgba(138, 31, 49, 0.12);
}

.managed-message-danger .managed-message-icon {
  background: rgba(138, 31, 49, 0.12);
}

.managed-blocked-box {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  border: 2px solid #f09aaa;
  background: #fff0f2;
  color: #8a1f31;
  box-shadow: 0 14px 34px rgba(138, 31, 49, 0.12);
}

.managed-blocked-box strong {
  display: block;
  margin: 0 0 5px;
  font-size: 0.96rem;
  text-transform: uppercase;
}

.managed-blocked-box p {
  margin: 0 0 8px;
  line-height: 1.45;
}

.managed-blocked-box .btn {
  margin-top: 4px;
  background: #ffffff;
  color: #8a1f31;
  border-color: rgba(138, 31, 49, 0.22);
}

.managed-blocked-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(138, 31, 49, 0.1);
}

.managed-policy {
  border-color: rgba(216, 79, 98, 0.24);
  background: rgba(216, 79, 98, 0.08);
  color: #9f2d3f;
}

.managed-summary {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.managed-date-card {
  min-height: 128px;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.managed-date-card span {
  display: block;
  padding: 10px;
  background: #2b6cff;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.managed-date-card strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  margin-top: 10px;
}

.managed-date-card em {
  display: block;
  padding: 8px;
  color: #475467;
  font-style: normal;
}

.managed-summary p,
.managed-summary h2 {
  margin: 0;
}

.managed-summary p {
  color: #667085;
  font-weight: 700;
}

.managed-summary dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 18px 0 0;
}

.managed-summary dt {
  color: #667085;
  font-size: 0.84rem;
  font-weight: 800;
}

.managed-summary dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.managed-actions,
.managed-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.managed-home-link {
  display: inline-block;
  margin-top: 18px;
  color: #2b6cff;
  font-weight: 800;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms ease var(--reveal-delay, 0ms),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

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

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes taglineCardPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow:
      0 18px 48px rgba(0, 0, 0, 0.34),
      0 0 24px rgba(215, 180, 106, 0.2),
      inset 0 0 18px rgba(240, 204, 114, 0.08);
  }
  38% {
    transform: translate3d(0, -2px, 0) scale(1.012);
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.4),
      0 0 38px rgba(240, 204, 114, 0.4),
      inset 0 0 24px rgba(240, 204, 114, 0.18);
  }
  58% {
    transform: translate3d(0, 1px, 0) scale(0.997);
  }
}

@keyframes taglineGoldSlash {
  0% {
    opacity: 0;
    transform: translateX(-94%) rotate(6deg);
  }
  36%,
  56% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(94%) rotate(6deg);
  }
}

@keyframes taglineBorderKick {
  0%,
  100% {
    opacity: 0.58;
    transform: scaleX(0.99) scaleY(0.97);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.01) scaleY(1.03);
  }
}

@keyframes taglineTextImpact {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(240, 204, 114, 0.32));
    transform: translateY(0) scale(1);
  }
  44% {
    filter: drop-shadow(0 0 18px rgba(240, 204, 114, 0.66));
    transform: translateY(-1px) scale(1.018);
  }
  62% {
    transform: translateY(1px) scale(0.996);
  }
}

@keyframes taglineInnerSweep {
  0% {
    opacity: 0;
    transform: translateX(-86%) rotate(5deg);
  }
  28%,
  58% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(86%) rotate(5deg);
  }
}

@keyframes taglineRailGlow {
  0%,
  100% {
    opacity: 0.42;
    filter: drop-shadow(0 0 4px rgba(240, 204, 114, 0.3));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(240, 204, 114, 0.72));
  }
}

@keyframes taglineRailTop {
  0%,
  100% {
    transform: translateX(-12%) scaleX(0.7);
    opacity: 0.34;
  }
  48% {
    transform: translateX(10%) scaleX(1);
    opacity: 0.95;
  }
}

@keyframes taglineRailBottom {
  0%,
  100% {
    transform: translateX(12%) scaleX(0.7);
    opacity: 0.34;
  }
  48% {
    transform: translateX(-10%) scaleX(1);
    opacity: 0.95;
  }
}

@keyframes goldSweep {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-26%) skewX(-10deg);
  }
  48% {
    opacity: 0.82;
    transform: translateX(18%) skewX(-10deg);
  }
}

@keyframes aboutGlint {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.62);
  }
  48% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

@keyframes aboutSweep {
  0%,
  64% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(115%);
  }
}

@keyframes aboutSignal {
  0%,
  100% {
    opacity: 0.44;
    transform: scaleX(0.78);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes logoCinematicEntrance {
  0% {
    opacity: 0;
    filter: blur(18px) drop-shadow(0 0 0 rgba(240, 204, 114, 0));
    transform: rotateY(-84deg) rotateX(12deg) scale(0.82);
  }
  58% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 28px 46px rgba(0, 0, 0, 0.62)) drop-shadow(0 0 34px rgba(240, 204, 114, 0.34));
    transform: rotateY(8deg) rotateX(0) scale(1.03);
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 18px rgba(215, 180, 106, 0.18));
    transform: rotateY(0) rotateX(0) scale(1);
  }
}

@keyframes logoGoldSheen {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18%) rotate(-12deg) scale(0.92);
  }
  44%,
  58% {
    opacity: 0.85;
    transform: translateX(12%) rotate(-12deg) scale(1.03);
  }
}

@keyframes logoBreath {
  0%,
  100% {
    transform: translateY(0) rotateY(0);
  }
  50% {
    transform: translateY(-8px) rotateY(4deg);
  }
}

@keyframes reelGoldPulse {
  0%,
  100% {
    opacity: 0.26;
    transform: translateX(-8%);
  }
  50% {
    opacity: 0.58;
    transform: translateX(8%);
  }
}

@keyframes cinematicFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.01);
  }
}

@keyframes logoOrbit {
  0% {
    transform: rotate(-11deg) scaleX(1);
  }
  50% {
    transform: rotate(169deg) scaleX(1.04);
  }
  100% {
    transform: rotate(349deg) scaleX(1);
  }
}

@keyframes reelGlow {
  0%,
  100% {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), 0 0 18px rgba(215, 180, 106, 0.06);
    opacity: 0.72;
  }
  50% {
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), 0 0 34px rgba(240, 204, 114, 0.18);
    opacity: 1;
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(215, 180, 106, 0.24), 0 0 0 rgba(240, 204, 114, 0);
  }
  50% {
    box-shadow: 0 15px 34px rgba(215, 180, 106, 0.32), 0 0 32px rgba(240, 204, 114, 0.18);
  }
}

@keyframes stageScan {
  0%,
  100% {
    opacity: 0.14;
    transform: translateX(-65%);
  }
  52% {
    opacity: 0.52;
    transform: translateX(65%);
  }
}

@keyframes bladeGuide {
  0%,
  100% {
    transform: translate(-18px, 18px) rotate(-12deg);
  }
  48% {
    transform: translate(20px, -16px) rotate(10deg);
  }
}

@keyframes bladeOpen {
  0%,
  100% {
    transform: rotate(-24deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

@keyframes clipperSweep {
  0%,
  100% {
    transform: translateX(0) rotate(-5deg);
  }
  50% {
    transform: translateX(138px) rotate(4deg);
  }
}

@keyframes goldTrace {
  0%,
  100% {
    opacity: 0.26;
    transform: scaleX(0.46);
  }
  48% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fadeBuild {
  0%,
  100% {
    opacity: 0.2;
    transform: scaleX(0.26);
  }
  50% {
    opacity: 0.86;
    transform: scaleX(1);
  }
}

@keyframes sparkPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.42);
  }
  45%,
  62% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes meterPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes adminGoldPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-10%);
  }
  50% {
    opacity: 0.78;
    transform: translateX(10%);
  }
}

@keyframes audioButtonPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-bookmark {
    width: 318px;
    padding-inline: 12px;
  }

  .hero-tagline-animated {
    font-size: 1.08rem;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-bookmark {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 28px), 330px);
    min-height: 58px;
    margin: 24px auto 0;
    padding: 9px 12px;
  }

  .hero-tagline-animated {
    font-size: 1.02rem;
  }

  .intro-grid,
  .schedule-section-layout,
  .motion-layout,
  .hero-cinematic-layout,
  .cristian-reel-layout,
  .ritual-layout,
  .ritual-about-layout,
  .gallery-layout,
  .team-review-grid,
  .admin-grid,
  .admin-client-layout,
  .booking-body {
    grid-template-columns: 1fr;
  }

  .hero-reel-shell {
    justify-self: start;
    width: min(390px, 100%);
  }

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

  .reel-video-card {
    grid-row: span 2;
  }

  .booking-side {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .managed-summary {
    grid-template-columns: 1fr;
  }

  .managed-date-card {
    width: min(180px, 100%);
  }

  .managed-summary dl {
    grid-template-columns: 1fr;
  }

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

  .search {
    min-width: 100%;
  }

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

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

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

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

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

  .product-modal-body,
  .product-step-panel,
  .whatsapp-chat-shell,
  .product-order-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-chat-shell {
    height: calc(100dvh - 132px);
    min-height: 0;
    max-height: calc(100dvh - 132px);
  }

  .product-modal-image {
    max-height: 460px;
  }

  .product-order-row dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whatsapp-conversation-list {
    grid-template-columns: 1fr;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 204, 114, 0.16);
  }

  .whatsapp-message-list {
    min-height: 0;
  }

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

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    padding: 18px 18px 104px;
  }

  .admin-mobile-nav {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 40;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(64px, 1fr);
    grid-template-columns: none;
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 8px;
    border: 1px solid rgba(240, 204, 114, 0.3);
    border-radius: 18px;
    background: rgba(8, 9, 11, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), 0 0 32px rgba(215, 180, 106, 0.08);
  }

  .admin-mobile-nav button {
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 56px;
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 740;
  }

  .admin-mobile-nav button.active {
    background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(240, 204, 114, 0.12));
    color: var(--gold-2);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

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

  .product-order-row dl {
    grid-template-columns: 1fr;
  }

  .admin-log-tools,
  .admin-log-list-head {
    grid-template-columns: 1fr;
  }

  .admin-log-tools {
    display: grid;
  }

  .admin-log-list-head {
    display: grid;
  }

  .admin-log-list-head .btn {
    width: 100%;
  }

  .admin-log-stats,
  .admin-log-details {
    grid-template-columns: 1fr;
  }

  .admin-log-card header {
    grid-template-columns: 1fr;
  }

  .admin-log-card time {
    white-space: normal;
  }

  .whatsapp-reply-form {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .nav {
    min-height: 68px;
    gap: 14px;
  }

  .nav-actions .btn-light,
  .nav-actions .btn-primary {
    display: none;
  }

  .nav-actions .admin-return-link {
    display: inline-flex;
  }

  .hero {
    min-height: 88vh;
    padding-top: 110px;
    padding-bottom: 74px;
  }

  .retired-cinematic-hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 58px;
  }

  .hero h1:not(.sr-only) {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero-logo-wrap {
    width: min(76vw, 320px);
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .hero-meta .meta-item {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow-wrap: anywhere;
    line-height: 1.2;
  }

  .retired-cinematic-hero .hero-logo-wrap {
    width: min(78vw, 300px);
  }

  .hero-statement {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .hero-subcopy {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-reel-shell {
    width: min(300px, 100%);
    justify-self: center;
    padding: 12px;
  }

  .hero-reel-badges {
    gap: 6px;
  }

  .hero-actions {
    display: none;
  }

  .mobile-booking-bar {
    display: block;
  }

  #sobre.section-tight {
    padding-top: 0;
    padding-bottom: 108px;
  }

  #sobre .intro-copy {
    display: none;
  }

  #sobre .info-panel {
    margin-top: 0;
  }

  .schedule-heading {
    position: static;
  }

  .schedule-video-frame {
    width: 100%;
    aspect-ratio: 16 / 11;
    margin-top: 18px;
  }

  .schedule-section-layout {
    gap: 24px;
  }

  .schedule-day {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 46px;
    font-size: 0.9rem;
  }

  .schedule-day em {
    white-space: nowrap;
  }

  .section {
    padding: 62px 0;
  }

  .retired-reel-section {
    padding-top: 58px;
  }

  .motion-video-grid,
  .studio-proof,
  .reel-gallery,
  .reel-proof,
  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .reel-video-card {
    min-height: 520px;
    grid-row: auto;
  }

  .reel-photo-card {
    min-height: 190px;
  }

  .motion-video {
    min-height: 338px;
  }

  .motion-stage {
    min-height: 238px;
  }

  .services-grid,
  .reviews-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .inventory-summary,
  .service-summary-row,
  .inventory-row {
    grid-template-columns: 1fr;
  }

  .service-summary-row strong,
  .service-summary-row span {
    text-align: left;
  }

  .review-form-panel {
    padding: 18px;
  }

  .review-rating-picker {
    justify-content: center;
    width: 100%;
  }

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

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

  .gallery-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .ritual-feature,
  .ritual-feature img,
  .ritual-reel-video {
    min-height: 430px;
  }

  .ritual-section {
    min-height: 100svh;
    padding-bottom: 108px;
  }

  .ritual-about-layout {
    gap: 28px;
  }

  .about-cristian-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .about-cristian-copy {
    padding-bottom: 88px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-backdrop {
    padding: 0;
  }

  .booking-modal {
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    border-radius: 0;
  }

  .booking-head {
    align-items: start;
    flex: 0 0 auto;
  }

  .booking-steps {
    display: none;
  }

  .booking-body {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .booking-main {
    min-height: 0;
    overflow: visible;
    padding: 18px;
  }

  .booking-side {
    padding: 18px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .date-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .booking-service-list {
    gap: 14px;
  }

  .booking-mobile-step-actions {
    position: sticky;
    top: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 14px;
    padding: 12px;
    border: 1px solid rgba(215, 180, 106, 0.42);
    border-radius: 12px;
    background: rgba(17, 19, 24, 0.96);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .booking-mobile-step-actions div {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .booking-mobile-step-actions strong {
    font-size: 0.92rem;
  }

  .booking-mobile-step-actions span {
    color: var(--muted);
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .booking-mobile-step-actions .btn {
    width: auto;
    min-height: 42px;
    padding-inline: 14px;
    white-space: nowrap;
  }

  .booking-row {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 16px;
  }

  .booking-row .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
  }

  .booking-row .service-icon .icon {
    width: 34px;
    height: 34px;
  }

  .booking-row-action {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: stretch;
    width: 100%;
  }

  .booking-row-action .price {
    white-space: normal;
  }

  .booking-row-action .booking-select {
    width: 100%;
    min-width: 0;
  }

  .booking-quantity-control {
    width: 100%;
    grid-template-columns: 48px 1fr 48px;
  }

  .booking-quantity-btn {
    width: 48px;
  }

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

  .calendar-top {
    grid-template-columns: 40px 1fr 40px;
  }

  .calendar-nav {
    width: 40px;
    height: 40px;
  }

  .calendar-shell {
    padding: 14px;
  }

  .calendar-grid {
    gap: 6px;
  }

  .calendar-day {
    min-height: 42px;
    font-size: 0.9rem;
  }

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

  .booking-row {
    grid-template-columns: 56px 1fr;
  }

  .booking-row .btn {
    width: 100%;
  }

  .admin-topbar {
    align-items: start;
    flex-direction: column;
  }

  .admin-actions {
    width: 100%;
  }

  .admin-actions .btn {
    flex: 1;
  }

  .appointment-row {
    grid-template-columns: 72px 1fr;
  }

  .appointment-action-grid,
  .inline-fields,
  .services-by-date-toolbar,
  .calendar-service-row,
  .schedule-row,
  .admin-client-layout,
  .client-detail-grid,
  .dead-slot-row {
    grid-template-columns: 1fr;
  }

  .services-by-date-summary {
    grid-template-columns: 1fr;
  }

  .calendar-service-time {
    min-height: 42px;
  }

  .admin-client-summary {
    grid-template-columns: 42px minmax(0, 1fr);
    grid-template-areas:
      "avatar main"
      "avatar meta"
      "avatar count";
    align-items: start;
    row-gap: 8px;
    min-height: 146px;
  }

  .admin-client-avatar {
    grid-area: avatar;
    align-self: start;
  }

  .admin-client-main {
    grid-area: main;
  }

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

  .admin-client-directory-actions .btn {
    width: 100%;
  }

  .admin-client-meta,
  .admin-client-summary em {
    grid-column: 2;
  }

  .admin-client-meta {
    grid-area: meta;
  }

  .admin-client-summary em {
    grid-area: count;
    justify-self: start;
    text-align: left;
  }

  .local-whatsapp-qr-grid,
  .local-whatsapp-qr-facts {
    grid-template-columns: 1fr;
  }

  .local-whatsapp-qr-card-head,
  .local-whatsapp-qr-actions,
  .local-whatsapp-support-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .local-whatsapp-qr-actions .btn,
  .local-whatsapp-support-actions .btn {
    width: 100%;
  }

  .local-whatsapp-support-actions {
    grid-template-columns: 1fr;
  }

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

  .profile-actions,
  .modal-actions {
    flex-direction: column;
  }
}
