/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --red: #E8273A;
  --red-dark: #c41e2f;
  --red-light: #ff3d52;
  --red-glow: rgba(232, 39, 58, 0.3);
  --red-subtle: rgba(232, 39, 58, 0.08);
  --red-border: rgba(232, 39, 58, 0.2);

  --black: #000000;
  --surface: #0c0c0c;
  --surface-2: #111111;
  --border: rgba(255, 255, 255, 0.07);
  --white: #ffffff;
  --text-secondary: #888888;
  --text-tertiary: #444444;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);

  --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  --r-sm: 8px;
  --r-base: 12px;
  --r-lg: 20px;
  --r-pill: 100px;

  --shadow-red: 0 0 30px rgba(232, 39, 58, 0.12);
  --shadow-red-hover: 0 8px 40px rgba(232, 39, 58, 0.3), 0 0 80px rgba(232, 39, 58, 0.1);

  --max-width: 1160px;
  --section-pad: 6rem 1.5rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

/* CSS fallback: unlock scroll if JS never fires */
body.is-loading {
  animation: bodyUnlock 0s 4.2s forwards;
}

@keyframes bodyUnlock {
  to { overflow: auto; }
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.875rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.section-title--red {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

.services-header .section-sub,
.pricing-header .section-sub,
.gallery-header .section-sub,
.booking-header .section-sub {
  margin: 0 auto;
}

.form-label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-base);
  min-height: 48px;
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: 0 6px 28px rgba(232, 39, 58, 0.45), 0 0 60px rgba(232, 39, 58, 0.15);
  transform: translateY(-2px) scale(1.01);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red-hover);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.875rem 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
}

.btn--ghost:hover {
  color: var(--white);
  box-shadow: none;
  transform: none;
}

/* ============================================
   INTRO OVERLAY
   ============================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
  /* CSS fallback — guarantees overlay disappears even if JS stalls */
  animation: introForcedExit 0.6s 3.4s ease-out forwards;
}

@keyframes introForcedExit {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

#intro-overlay.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

.intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

/* Scissors wrapper */
.intro-scissors-wrap {
  position: relative;
  width: 160px;
  height: 64px;
  margin: 0 auto;
  animation: scissorsEntrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes scissorsEntrance {
  from { opacity: 0; transform: scale(0.55) rotate(-10deg); }
  to   { opacity: 1; transform: scale(1)    rotate(0deg);   }
}

/* Inner glow when scissors close */
.intro-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(18px);
  opacity: 0;
  animation: innerGlow 0.6s 1.75s ease-out forwards;
  pointer-events: none;
}

@keyframes innerGlow {
  0%   { opacity: 0;   transform: translate(-50%, -50%) scale(0.4); }
  45%  { opacity: 0.85; transform: translate(-50%, -50%) scale(2.2); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(1.6); }
}

/* Blades */
.intro-blade {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 7px;
  background: linear-gradient(to right, var(--red-dark), var(--red), var(--red-dark));
  border-radius: 1px 14px 14px 1px;
  margin-top: -3.5px;
  transform-origin: 0% 50%;
  box-shadow: 0 0 8px rgba(232, 39, 58, 0.4);
}

.intro-blade::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 52px;
  background: linear-gradient(to left, var(--red), rgba(180, 20, 30, 0.7));
  border-radius: 10px 0 0 10px;
}

.intro-blade-top {
  animation: scissorsTop 2.2s var(--ease-out) forwards;
}

.intro-blade-bottom {
  animation: scissorsBottom 2.2s var(--ease-out) forwards;
}

@keyframes scissorsTop {
  0%   { transform: rotate(0deg);   }
  16%  { transform: rotate(-38deg); }
  80%  { transform: rotate(-38deg); }
  100% { transform: rotate(0deg);   }
}

@keyframes scissorsBottom {
  0%   { transform: rotate(0deg);  }
  16%  { transform: rotate(38deg); }
  80%  { transform: rotate(38deg); }
  100% { transform: rotate(0deg);  }
}

/* Pivot */
.intro-pivot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pivotIn 0.35s 0.1s ease-out both;
}

@keyframes pivotIn {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Sparks */
.intro-sparks {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  animation: sparksIn 0.5s 1.85s ease-out both;
}

.intro-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
}

.intro-spark:nth-child(1) { transform: translate(-14px, -14px); }
.intro-spark:nth-child(2) { transform: translate(14px,  -12px); }
.intro-spark:nth-child(3) { transform: translate(-12px,  12px); }
.intro-spark:nth-child(4) { transform: translate(10px,   16px); }

@keyframes sparksIn {
  0%   { opacity: 0; }
  35%  { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* Logo */
.intro-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: introFadeUp 0.65s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-logo-main {
  position: relative;
  z-index: 0;
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 15vw, 6.5rem);
  color: var(--red);
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow:
    2px  2px 0 #8b0f1e,
    4px  4px 0 #600a15,
    6px  6px 12px rgba(0, 0, 0, 0.55);
}

.intro-logo-sub {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: -0.46em;
  position: relative;
  z-index: 1;
  animation: introFadeUp 0.6s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-logo-star {
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
}

.intro-logo-studio {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0,0,0,0.6);
  line-height: 1;
}

/* Progress bar */
.intro-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  animation: introFadeUp 0.4s 0.85s ease-out both;
}

.intro-bar {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 2px;
  animation: introBarFill 2.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes introBarFill {
  0%   { width: 0%;   }
  30%  { width: 22%;  }
  65%  { width: 68%;  }
  88%  { width: 94%;  }
  100% { width: 100%; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1100px;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 1.125rem;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid rgba(232, 39, 58, 0.35);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(232, 39, 58, 0.08) inset;
}

.header--scrolled .header-inner {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(232, 39, 58, 0.45);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 39, 58, 0.1) inset;
}

.header-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.header-logo-main {
  position: relative;
  z-index: 0;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--red);
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 1px 1px 0 #6e0a15, 2px 2px 5px rgba(0,0,0,0.4);
}

.header-logo-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: -0.46em;
  position: relative;
  z-index: 1;
}

.header-logo-star {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.header-logo-studio {
  font-family: 'Dancing Script', cursive;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
}

.header-logo-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--t-base);
}

.header-nav a:hover {
  color: var(--white);
}

.header-nav a:hover::after,
.header-nav a.is-active::after {
  width: 100%;
}

.header-nav a.is-active {
  color: var(--white);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.header-actions .btn--primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  box-shadow: 0 0 20px rgba(232, 39, 58, 0.4);
  transform: translateY(-1px);
}

.header-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}

.header-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.header-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu — full black, centered words */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232, 39, 58, 0.08);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}

.mobile-nav a {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 7vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.5rem 1.75rem;
  border-radius: var(--r-pill);
  border: none;
  background: none;
  min-height: unset;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.mobile-nav-cta {
  color: var(--red) !important;
}

.mobile-nav-cta:hover {
  background: rgba(232, 39, 58, 0.08) !important;
  color: var(--red) !important;
}

/* Hamburger — header is z-index:1000 so always above menu overlay */

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 93vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
  overflow: hidden;
}

#hero-canvas {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-pole {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 200px;
  z-index: 1;
  opacity: 0.12;
  border-radius: 3px;
  background: repeating-linear-gradient(
    to bottom,
    var(--red) 0px,
    var(--red) 20px,
    var(--white) 20px,
    var(--white) 40px,
    #1a1a4e 40px,
    #1a1a4e 60px
  );
  animation: poleSpin 4s linear infinite;
}

@keyframes poleSpin {
  from { background-position: 0 0; }
  to { background-position: 0 60px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-top: 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  opacity: 0.6;
}

/* hero blob hidden */
.hero-blob { display: none; }

/* Badge above title */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 39, 58, 0.1);
  border: 1px solid rgba(232, 39, 58, 0.22);
  border-radius: var(--r-pill);
  padding: 0.4rem 1.125rem;
  margin-bottom: 1.875rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 39, 58, 0.9);
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* 2-line equal-size title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.12;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1.75rem;
  padding-top: 0.2em;
  overflow: visible;
}

/* Rotating phrases — grid overlap approach */
.hero-rotate-wrap {
  display: grid;
  grid-template-columns: 1fr;
  height: 2.55em;
  overflow: visible;
}

.hero-phrase {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  /* gradient */
  background: linear-gradient(135deg, #E8273A 0%, #ff6b6b 55%, #E8273A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: heroGradient 4s ease-in-out infinite alternate;
  /* default: hidden below */
  opacity: 0;
  transform: translateY(22px);
  filter: blur(10px);
  transition:
    opacity  0.72s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.72s cubic-bezier(0.4, 0, 0.2, 1),
    filter   0.72s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active: fully visible */
.hero-phrase.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Exiting: fade out upward, faster */
.hero-phrase.is-exiting {
  opacity: 0;
  transform: translateY(-18px);
  filter: blur(8px);
  transition-duration: 0.48s;
}

.hero-t1 { color: var(--white); }

.hero-t2 {
  background: linear-gradient(135deg, #E8273A 0%, #ff6b6b 60%, #E8273A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: heroGradient 4s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-tertiary);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad);
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-sub {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: var(--r-base);
  padding: 2rem 1.75rem;
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.2s ease,
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232, 39, 58, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(232, 39, 58, 0.14), 0 20px 44px rgba(0, 0, 0, 0.55);
  border-color: rgba(232, 39, 58, 0.2);
  border-top-color: var(--red);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--red);
  margin-bottom: 1.375rem;
  flex-shrink: 0;
  padding: 10px;
  background: rgba(232, 39, 58, 0.07);
  border: 1px solid rgba(232, 39, 58, 0.14);
  border-radius: 12px;
  box-sizing: content-box;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-icon {
  background: rgba(232, 39, 58, 0.13);
  border-color: rgba(232, 39, 58, 0.28);
  box-shadow: 0 0 20px rgba(232, 39, 58, 0.15);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.625rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.375rem;
}

.service-price {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  padding: 4rem 1.5rem;
  background: var(--black);
  position: relative;
}

.stats-bar::before {
  display: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0.4rem 0 0.75rem;
}

.stats-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.stat-item {
  text-align: center;
  padding: 0.75rem 0.5rem;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.stat-icon {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--red);
  opacity: 0.85;
  margin-bottom: 0.75rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.stat-item:hover .stat-icon {
  opacity: 1;
  transform: scale(1.15);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7.5vw, 6.5rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  display: block;
}

.stat-suffix {
  color: var(--red);
}

.stat-item:hover .stat-num {
  color: var(--red);
  text-shadow: 0 0 40px rgba(232, 39, 58, 0.35);
}

.stat-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 0.375rem;
  display: block;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .stat-num {
    font-size: clamp(3rem, 4.5vw, 5rem);
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-top: 0.625rem;
  }

  .stat-item {
    padding: 1.25rem 2rem;
  }

  .stat-divider {
    height: 70px;
  }
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  justify-self: center;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}

/* no section separators */

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

/* 3-column glass price cards */
.price-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  max-width: 420px;
  margin: 0 auto;
  isolation: isolate;
}

.price-card {
  background: rgba(255, 255, 255, 0.022);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.375rem 1.625rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  /* overflow visible so badge shows above card */
  overflow: visible;
}

/* Shine sweep on hover — clipped to card bounds */

.price-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 20;
}

.price-card--featured {
  background: rgba(232, 39, 58, 0.06);
  border-color: rgba(232, 39, 58, 0.5);
  border-top-color: rgba(232, 39, 58, 0.7);
  transform: none;
  z-index: 1;
  box-shadow: 0 0 50px rgba(232, 39, 58, 0.1), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.price-card--featured:hover {
  transform: translateY(-10px);
  background: rgba(232, 39, 58, 0.1);
  border-color: rgba(232, 39, 58, 0.65);
  box-shadow: 0 0 70px rgba(232, 39, 58, 0.18), 0 32px 64px rgba(0, 0, 0, 0.5);
  z-index: 20;
}

@media (min-width: 768px) {
  .price-card--featured {
    transform: scale(1.05);
  }
  .price-card--featured:hover {
    transform: scale(1.05) translateY(-10px);
  }
}

.price-card--featured .price-card-badge {
  background: var(--red);
  color: var(--white);
}

.price-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.price-card-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 0.875rem;
  color: var(--red);
}

.price-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.875rem;
}

.price-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  margin-bottom: 1.625rem;
}

.price-card-amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.price-card-currency {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  align-self: flex-start;
  margin-top: 0.4rem;
}

.price-card-features {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.price-card-features li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 0;
  border: none;
}

.price-card--featured .price-card-features li {
  color: rgba(255, 255, 255, 0.92);
}

.price-card .btn {
  width: 100%;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad);
  background: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Photo */
.about-photo-box {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 39, 58, 0.2);
  border-top: 2px solid rgba(232, 39, 58, 0.55);
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 60px rgba(232, 39, 58, 0.07), 0 24px 48px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .about-photo-box {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.6s ease;
}

.about-photo-box:hover .about-photo-img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .about-photo-img {
    object-position: center 45%;
  }
}

.about-photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 39, 58, 0.3);
  border-radius: var(--r-pill);
  padding: 0.375rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
}

/* Content */
.about-content .section-label {
  margin-bottom: 0.75rem;
}

.about-content .section-title {
  margin-bottom: 1.25rem;
}

.about-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}


.about-cta {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .about-layout {
    grid-template-columns: 380px 1fr;
    gap: 5rem;
  }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad);
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Reviews: outer wrapper for side-arrows */
.reviews-outer {
  position: relative;
  padding: 0 3rem;
  max-width: 480px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 12px;
}

.reviews-track::-webkit-scrollbar { display: none; }

/* Side arrows inside outer */
.reviews-outer .reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.reviews-outer .reviews-arrow--prev { left: 0; }
.reviews-outer .reviews-arrow--next { right: 0; }

.review-card {
  flex: 0 0 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(232, 39, 58, 0.25);
  border-radius: var(--r-lg);
  padding: 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    filter 0.4s ease;
}

.review-card:hover,
.review-card:active {
  transform: translateY(-5px);
  border-color: rgba(232, 39, 58, 0.6);
  filter: drop-shadow(0 0 0 1px rgba(232, 39, 58, 0.4)) drop-shadow(0 12px 28px rgba(232, 39, 58, 0.18));
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #F59E0B;
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: var(--red-subtle);
  border: 1px solid var(--red-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--red);
  flex-shrink: 0;
}

.review-meta {}

.review-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1px;
}

.review-date {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

.reviews-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.reviews-arrow svg { width: 16px; height: 16px; }

.reviews-arrow:hover {
  background: rgba(232, 39, 58, 0.12);
  border-color: rgba(232, 39, 58, 0.35);
  color: var(--red);
  box-shadow: 0 0 20px rgba(232, 39, 58, 0.15);
}

.reviews-arrow:disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }

.reviews-nav {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-dot.is-active {
  background: var(--red);
  width: 22px;
  border-radius: 3px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}

/* Mobile: flat grid, no spans */
.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { grid-row: span 1; }

.gallery-item {
  position: relative;
  border-radius: var(--r-base);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  outline: 1px solid transparent;
  transition: outline-color 0.3s ease;
}

.gallery-item:hover {
  outline-color: rgba(232, 39, 58, 0.35);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay { display: none; }

/* ============================================
   BOOKING
   ============================================ */
.booking {
  padding: var(--section-pad);
  background: var(--black);
  position: relative;
}

/* no separator */

.booking-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.booking-layout {
  max-width: 720px;
  margin: 0 auto;
}

/* ---- Custom Calendar ---- */
.cal {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.25rem 1.5rem;
  user-select: none;
  width: 100%;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.cal-nav-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  background: none;
}

.cal-nav-btn svg { width: 18px; height: 18px; }

.cal-nav-btn:hover {
  border-color: var(--red-border);
  color: var(--red);
  background: var(--red-subtle);
}

.cal-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; pointer-events: none; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.5rem 0;
}

.cal-weekdays span.sun { color: rgba(232, 39, 58, 0.55); }

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  font-family: var(--font-body);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
}

.cal-cell:hover:not(:disabled):not(.cal-empty) {
  background: rgba(232, 39, 58, 0.1);
  color: var(--white);
  border-color: rgba(232, 39, 58, 0.25);
  transform: scale(1.1);
}

.cal-cell:disabled {
  color: rgba(255, 255, 255, 0.18);
  cursor: not-allowed;
  opacity: 1;
}

.cal-cell.cal-today {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  font-weight: 600;
}

.cal-cell.cal-selected,
.cal-cell.cal-selected:hover {
  background: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(232, 39, 58, 0.55), 0 2px 10px rgba(232, 39, 58, 0.35);
  transform: scale(1.12) !important;
  cursor: default;
}

.cal-empty { cursor: default; }

/* Time slot reveal animation */
.form-group.time-reveal .form-select {
  animation: timeReveal 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes timeReveal {
  from { opacity: 0.4; transform: translateY(-6px); }
  to   { opacity: 1;   transform: translateY(0);    }
}

.booking-form-wrap {
  background: rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-base);
  padding: 0.95rem 1.25rem;
  color: var(--white);
  font-size: 0.95rem;
  min-height: 54px;
  transition:
    border-color 0.2s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(232, 39, 58, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(232, 39, 58, 0.1), 0 2px 16px rgba(0, 0, 0, 0.25);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 39, 58, 0.12);
}

.form-error {
  font-size: 0.75rem;
  color: var(--red);
  height: 0;
  overflow: hidden;
  transition: height var(--t-fast);
}

.form-error.is-visible {
  height: auto;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.form-select option {
  background: var(--surface-2);
  color: var(--white);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input[type="date"],
.form-input[type="time"] {
  color-scheme: dark;
}

.form-submit-wrap {
  margin-top: 0.5rem;
}

.form-submit {
  width: 100%;
}

.is-hidden {
  display: none !important;
}

.form.is-hidden {
  display: none;
}

.text-muted {
  color: var(--text-tertiary);
}

.booking-success {
  display: none;
  text-align: center;
  padding: 3.5rem 2rem;
}

.booking-success.is-visible {
  display: block;
}

.booking-success-icon {
  width: 60px;
  height: 60px;
  background: var(--red-subtle);
  border: 1.5px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--red);
}

.booking-success-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.booking-success-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 4.5rem 1.5rem 2.5rem;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2rem;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0.875rem;
}

.footer-logo-main {
  position: relative;
  z-index: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 1px 1px 0 #6e0a15, 2px 2px 6px rgba(0,0,0,0.45);
}

.footer-logo-sub {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: -0.46em;
  position: relative;
  z-index: 1;
}

.footer-logo-star {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.footer-logo-studio {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.95);
}

.footer-logo-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.125rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact-item {
  margin-bottom: 0.875rem;
}

.footer-contact-key {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 2px;
}

.footer-contact-val {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-contact-note {
  font-size: 0.75rem;
  color: var(--red);
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  color: var(--red);
  border-color: var(--red-border);
  background: var(--red-subtle);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.6rem 1.1rem 0.6rem 1rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1), rgba(139, 92, 246, 0.05));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.footer-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 160, 255, 0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.footer-badge:hover {
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.18), rgba(139, 92, 246, 0.1));
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 36px rgba(109, 40, 217, 0.22);
}

.footer-badge:hover::before {
  left: 120%;
}

.footer-badge-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.footer-badge-right {
  display: flex;
  align-items: center;
}

.footer-badge-label {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-badge-sub {
  font-size: 0.64rem;
  color: rgba(167, 139, 250, 0.85);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.footer-badge-divider {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.4), transparent);
  flex-shrink: 0;
}

.footer-badge-logo {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.footer-badge:hover .footer-badge-logo {
  transform: scale(1.06);
}

.footer-badge-arrow {
  font-size: 0.8rem;
  color: rgba(167, 139, 250, 0.7);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-badge:hover .footer-badge-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.footer-badge:hover .footer-badge-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.anim.delay-1 { transition-delay: 0.08s; }
.anim.delay-2 { transition-delay: 0.16s; }
.anim.delay-3 { transition-delay: 0.24s; }
.anim.delay-4 { transition-delay: 0.32s; }

.anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 600px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

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

  .header-actions {
    display: flex;
  }

  .header-hamburger {
    display: none;
  }

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

  .price-cards {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: none;
    margin: 0;
  }

  .reviews-outer {
    max-width: none;
    padding: 0 3rem;
  }

  .review-card {
    flex: 0 0 calc(33.333% - 0.7rem);
    height: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  /* Restore masonry spans on desktop */
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-row: span 2; }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-auto-rows: 240px;
  }
}

/* ============================================
   CUSTOM SELECT DROPDOWN
   ============================================ */
.custom-select {
  position: relative;
  user-select: none;
}

.custom-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-base);
  padding: 0.95rem 1.25rem;
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-height: 54px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.custom-select-btn:focus-visible {
  outline: none;
  border-color: rgba(232, 39, 58, 0.6);
  box-shadow: 0 0 0 3px rgba(232, 39, 58, 0.1);
}

.custom-select.is-open .custom-select-btn,
.custom-select.has-value .custom-select-btn:not(:focus-visible) {
  border-color: rgba(255, 255, 255, 0.14);
}

.custom-select.is-open .custom-select-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 39, 58, 0.4);
}

.custom-select-val {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.custom-select.has-value .custom-select-val {
  color: var(--white);
}

.custom-select-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.custom-select.is-open .custom-select-chevron {
  transform: rotate(180deg);
}

.custom-select-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-base);
  overflow: hidden;
  z-index: 200;
  opacity: 0;
  transform: translateY(-8px) scaleY(0.95);
  visibility: hidden;
  transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top;
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.08) transparent;
}

.custom-select.is-open .custom-select-list {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  visibility: visible;
}

.custom-select-option {
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.custom-select-option:last-child { border-bottom: none; }

.custom-select-option:hover {
  background: rgba(232, 39, 58, 0.08);
  color: var(--white);
}

.custom-select-option.is-selected {
  color: var(--red);
  background: rgba(232, 39, 58, 0.06);
}

.custom-select.is-error .custom-select-btn {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 39, 58, 0.12);
}

/* ============================================
   TIME SLOT BUTTONS
   ============================================ */
.time-slots {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  min-height: 60px;
  transition: border-color 0.2s ease;
}

.time-group-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.375rem;
}

.time-group-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.time-slots.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 39, 58, 0.1);
}

.time-slots-placeholder {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.time-btn {
  padding: 0.6rem 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.22s ease;
  min-height: 42px;
}

.time-btn:hover {
  background: rgba(232, 39, 58, 0.1);
  border-color: rgba(232, 39, 58, 0.35);
  color: var(--white);
}

.time-btn.is-selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(232, 39, 58, 0.4);
}

.time-btn.is-selected:hover {
  background: var(--red);
  border-color: var(--red);
  cursor: default;
}

/* ============================================
   PREMIUM POLISH
   ============================================ */

/* Focus-visible: accessible + premium */
:focus-visible {
  outline: 2px solid rgba(232, 39, 58, 0.6);
  outline-offset: 3px;
  border-radius: 4px;
}


/* Star depth */
.review-stars svg {
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.4));
}

/* Input premium glow on focus */
.form-input:focus,
.form-textarea:focus {
  box-shadow:
    0 0 0 3px rgba(232, 39, 58, 0.1),
    0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Footer social icons - premium hover */
.footer-social-link {
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 39, 58, 0.2);
}

/* Section title with subtle tracking animation on scroll-in */
.anim.is-visible .section-title {
  letter-spacing: 0.025em;
}

/* Pricing: add faint shimmer to price amount */
.price-card-amount {
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

/* Mobile menu dot accent */
.mobile-menu-logo span {
  color: var(--red);
}

/* Time slots - subtle top border */
.time-group + .time-group {
  padding-top: 0.25rem;
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-body {
  background: var(--black);
  min-height: 100vh;
}

/* Login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
}

.admin-login-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 0.5rem;
}

.admin-login-logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: var(--red);
  line-height: 1;
  text-shadow: 1px 1px 0 #6e0a15, 2px 2px 5px rgba(0,0,0,0.4);
  position: relative;
  z-index: 0;
}

.admin-login-logo-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: -0.46em;
  position: relative;
  z-index: 1;
}

.admin-login-logo-star {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.admin-login-logo-studio {
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
}

.admin-login-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.admin-login-error {
  background: rgba(232, 39, 58, 0.1);
  border: 1px solid var(--red-border);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 1rem;
  display: none;
}

.admin-login-error.is-visible {
  display: block;
}

/* Dashboard layout */
.admin-dashboard {
  display: none;
  flex-direction: column;
  min-height: 100vh;
}

.admin-dashboard.is-visible {
  display: flex;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.admin-header-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.admin-header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: var(--red);
  line-height: 1;
  text-shadow: 1px 1px 0 #6e0a15, 2px 2px 5px rgba(0,0,0,0.4);
  position: relative;
  z-index: 0;
}

.admin-header-logo-sub {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: -0.46em;
  position: relative;
  z-index: 1;
}

.admin-header-logo-star {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}

.admin-header-logo-studio {
  font-family: 'Dancing Script', cursive;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
}

.admin-header-logo-dot {
  display: none;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-header-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.admin-logout-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  min-height: 36px;
}

.admin-logout-btn:hover {
  color: var(--red);
  background: var(--red-subtle);
}

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  background: var(--surface);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-tab {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--t-fast);
  white-space: nowrap;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.admin-tab:hover {
  color: var(--white);
}

.admin-tab.is-active {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* Tab panels */
.admin-panel {
  display: none;
  flex: 1;
  padding: 1.5rem;
}

.admin-panel.is-active {
  display: block;
}

/* Filters */
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.admin-filter-select,
.admin-filter-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.5rem 0.875rem;
  color: var(--white);
  font-size: 0.85rem;
  min-height: 40px;
  transition: border-color var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.admin-filter-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.25rem;
  cursor: pointer;
}

.admin-filter-select option {
  background: var(--surface-2);
}

.admin-filter-select:focus,
.admin-filter-input:focus {
  outline: none;
  border-color: var(--red);
}

.admin-filter-input::placeholder {
  color: var(--text-tertiary);
}

/* Table */
.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 860px;
}

.admin-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.admin-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.8);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.status-badge--pending {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-badge--confirmed {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.status-badge--moved {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.status-badge--completed {
  background: rgba(107, 114, 128, 0.12);
  color: #6B7280;
  border: 1px solid rgba(107, 114, 128, 0.25);
}

.status-badge--cancelled {
  background: rgba(232, 39, 58, 0.12);
  color: var(--red);
  border: 1px solid var(--red-border);
}

/* Row actions */
.row-actions {
  display: flex;
  gap: 0.375rem;
  flex-wrap: nowrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: all var(--t-fast);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* Card buttons: row-actions and buttons stretch full width */
.admin-res-card-actions .row-actions {
  display: flex;
  width: 100%;
  gap: 0.375rem;
}

.admin-res-card-actions .action-btn {
  flex: 1 1 0;
  width: 0 !important;
  height: 44px;
  min-width: 0;
}

.action-btn svg { flex-shrink: 0; }

/* Hide text label on mobile — icon only */
.action-btn-label { display: none; }

.action-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.action-btn--confirm:hover  { color: #22C55E; border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.08); }
.action-btn--move:hover     { color: #3B82F6; border-color: rgba(59, 130, 246, 0.3); background: rgba(59, 130, 246, 0.08); }
.action-btn--complete:hover { color: #22C55E; border-color: rgba(34, 197, 94, 0.25); background: rgba(34, 197, 94, 0.06); }
.action-btn--cancel:hover   { color: var(--red); border-color: var(--red-border); background: var(--red-subtle); }
.action-btn--delete:hover   { color: var(--red); border-color: var(--red-border); background: var(--red-subtle); }

/* Desktop table: show text labels too */
@media (min-width: 768px) {
  .action-btn {
    width: auto;
    height: auto;
    padding: 5px 10px;
  }
  .action-btn-label { display: inline; }
}

/* Empty state */
.admin-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
}

.admin-empty-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

/* Availability calendar */
.avail-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avail-nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--t-fast);
}

.avail-nav-btn:hover {
  border-color: var(--red-border);
  color: var(--white);
  background: var(--red-subtle);
}

.avail-nav-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.avail-day {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  padding: 1.25rem;
  transition: border-color var(--t-fast);
}

.avail-day.is-open {
  border-color: rgba(34, 197, 94, 0.25);
}

.avail-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.avail-day-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.avail-day-date {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1px;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  transition: all var(--t-fast);
  cursor: pointer;
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--text-tertiary);
  border-radius: 50%;
  transition: all var(--t-base);
}

.toggle input:checked + .toggle-track {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
}

.toggle input:checked + .toggle-track::after {
  background: #22C55E;
  transform: translateX(18px);
}

/* Time slots */
.avail-slots {
  display: none;
}

.avail-day.is-open .avail-slots {
  display: block;
}

.avail-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.slot-checkbox {
  display: none;
}

.slot-label {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(232, 39, 58, 0.08);
  border: 1px solid rgba(232, 39, 58, 0.3);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #ff6b6b;
  cursor: pointer;
  transition: all var(--t-fast);
  min-height: 30px;
  text-decoration: line-through;
  text-decoration-color: rgba(232, 39, 58, 0.6);
}

.slot-label:hover {
  background: rgba(232, 39, 58, 0.16);
  color: var(--white);
}

.slot-checkbox:checked + .slot-label {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  color: #22C55E;
  text-decoration: none;
}

.avail-save-btn {
  margin-top: 0.5rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: var(--r-lg);
  padding: 2rem;
  width: 100%;
  max-width: 440px;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--t-spring);
}

.modal-overlay.is-visible .modal-box {
  transform: translateY(0) scale(1);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.modal-box .form-group {
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

/* Toast — centered on screen for mobile visibility */
.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 9100;
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--red);
  border-radius: var(--r-base);
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  min-width: 200px;
  max-width: 280px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.toast--success { border-top-color: #22C55E; }
.toast--error   { border-top-color: var(--red); }

.toast--error {
  border-left-color: var(--red);
}

/* ============================================
   MOBILE RESERVATION CARDS
   ============================================ */
.admin-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.admin-res-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  overflow: hidden;
}

.admin-res-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}

.admin-res-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.admin-res-card-info {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.admin-res-card-row {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.5rem;
}

.admin-res-card-row span:first-child {
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  min-width: 60px;
  padding-top: 1px;
}

.admin-res-card-actions {
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-res-card-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
}

.admin-res-card-actions .action-btn {
  flex: 1;
  min-width: 0;
  width: auto;
  height: 44px;
}

/* Show cards on mobile, table on desktop */
.admin-cards { display: flex; }
.admin-table-wrap { display: none; }

@media (min-width: 768px) {
  .admin-cards { display: none; }
  .admin-table-wrap { display: block; }
}

/* ============================================
   GLOBAL AVAILABILITY TOGGLE
   ============================================ */
.avail-global {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.avail-global-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.avail-global-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ============================================
   MONTHLY AVAILABILITY CALENDAR
   ============================================ */
.avail-month-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  padding: 1rem;
  margin-bottom: 1rem;
}

.avail-month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.375rem;
}

.avail-month-weekdays div {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  padding: 0.25rem 0;
}

.avail-month-weekdays .sun { color: rgba(232, 39, 58, 0.5); }

.avail-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.avail-month-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  gap: 2px;
}

.avail-month-cell--empty { cursor: default; }
.avail-month-cell--past { opacity: 0.3; cursor: not-allowed; }
.avail-month-cell--sun .avail-month-day { color: rgba(232,39,58,0.5); }

.avail-month-cell:hover:not(.avail-month-cell--past):not(.avail-month-cell--empty) {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.avail-month-cell--open {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.2);
}

.avail-month-cell--selected {
  background: rgba(232,39,58,0.1);
  border-color: rgba(232,39,58,0.4);
}

.avail-month-day {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

.avail-month-dot {
  width: 4px;
  height: 4px;
  background: #22C55E;
  border-radius: 50%;
}

/* Global slots section */
.avail-global-slots {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  padding: 1.125rem;
  margin-bottom: 1.25rem;
}

.avail-global-slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.avail-global-slots-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.avail-global-slots-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Exception dot color */
.avail-month-dot--exc {
  background: #F59E0B;
}

/* Day editor hint */
.avail-day-editor-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 0.875rem;
}

.avail-day-editor-hint strong {
  color: var(--red);
}

/* Reset button */
.avail-day-reset-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  transition: all var(--t-fast);
  min-height: 30px;
}

.avail-day-reset-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

/* Day editor panel */
.avail-day-editor {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  border-radius: var(--r-base);
  padding: 1.25rem;
  margin-bottom: 0;
  display: none;
}

.avail-day-editor.is-visible { display: block; }

.avail-day-editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.avail-day-editor-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.avail-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.avail-slots.is-dim { opacity: 0.3; pointer-events: none; }

/* ============================================
   STATS & CHARTS
   ============================================ */
.stats-ov-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .stats-ov-grid { grid-template-columns: repeat(4, 1fr); }
}

.stats-ov-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  padding: 1.125rem;
  text-align: center;
}

.stats-ov-card--pending   { border-top: 2px solid #F59E0B; }
.stats-ov-card--confirmed { border-top: 2px solid #22C55E; }
.stats-ov-card--completed { border-top: 2px solid #6B7280; }

.stats-ov-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stats-ov-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.admin-chart-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.admin-chart-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

/* Status bar chart */
.chart-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.chart-row-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  min-width: 80px;
}

.chart-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  width: var(--bar-width, 0%);
  background: var(--bar-color, var(--red));
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
}

.chart-row-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  min-width: 20px;
  text-align: right;
}

/* Finished / History section */
.finished-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-base);
  overflow: hidden;
  margin-top: 1rem;
}

.finished-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
  border: none;
  background: none;
}

.finished-summary:hover { background: rgba(255,255,255,0.03); }

.finished-summary-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.finished-summary-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #22C55E;
  line-height: 1;
  min-width: 2ch;
}

.finished-summary-title {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 2px;
}

.finished-summary-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.finished-chevron {
  color: var(--text-tertiary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.finished-chevron.is-open { transform: rotate(180deg); }

.finished-panel {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.finished-panel.is-visible { display: block; }

.finished-cal-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.finished-cal-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

/* Finished list */
.finished-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.finished-list-hint {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  text-align: center;
  padding: 1rem 0;
  font-style: italic;
}

.finished-list-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.25rem;
}

.finished-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
}

.finished-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.finished-item-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.finished-item-detail {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.finished-item-note {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-style: italic;
}

.finished-delete-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,39,58,0.2);
  border-radius: 7px;
  color: rgba(232,39,58,0.5);
  cursor: pointer;
  transition: all var(--t-fast);
  background: none;
  flex-shrink: 0;
}

.finished-delete-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-subtle);
}

/* Week bar chart */
.chart-week {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 120px;
  padding-top: 1rem;
}

.chart-week-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  height: 100%;
  justify-content: flex-end;
}

.chart-week-val {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.chart-week-bar-wrap {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.chart-week-bar {
  width: 100%;
  height: var(--bar-h, 0%);
  background: var(--red);
  border-radius: 4px 4px 0 0;
  opacity: 0.75;
  transition: height 0.8s cubic-bezier(0.16,1,0.3,1);
  min-height: 3px;
}

.chart-week-day {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}