:root {
  color-scheme: dark;
  --burgundy-950: #170207;
  --burgundy-900: #2a040b;
  --burgundy-800: #5d0715;
  --burgundy-700: #8e1023;
  --electric: #18d8ff;
  --electric-strong: #58ecff;
  --white: #f8fbff;
  --silver: #b8c0c8;
  --steel: #68717c;
  --panel: rgba(8, 9, 13, 0.72);
  --panel-strong: rgba(5, 5, 8, 0.88);
  --line: rgba(255, 255, 255, 0.18);
  --line-blue: rgba(24, 216, 255, 0.42);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(142, 16, 35, 0.72), transparent 34rem),
    radial-gradient(circle at 86% 8%, rgba(24, 216, 255, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--burgundy-950), #08080b 48%, var(--burgundy-900));
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.001ms !important;
}

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

a {
  color: inherit;
}

.motion-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.motion-field::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 44%, transparent 48%),
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px);
  background-size: 100% 100%, 54px 80px;
  opacity: 0.52;
  animation: mist-slide 12s linear infinite;
}

.motion-field::after {
  position: absolute;
  inset: -20%;
  content: "";
  background: conic-gradient(from 90deg, transparent, rgba(24, 216, 255, 0.15), transparent, rgba(255, 255, 255, 0.08), transparent);
  filter: blur(42px);
  opacity: 0.65;
  animation: slow-spin 26s linear infinite;
}

.red-glow,
.blue-burst,
.spray,
.droplets {
  position: absolute;
  display: block;
}

.red-glow {
  inset: 8% 10% auto auto;
  width: 46rem;
  max-width: 90vw;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(142, 16, 35, 0.54), transparent 68%);
}

.blue-burst {
  width: 18rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(88, 236, 255, 0.36), rgba(24, 216, 255, 0.1) 36%, transparent 70%);
  filter: blur(10px);
  animation: burst-pulse 5.4s ease-in-out infinite;
}

.burst-a {
  top: 16%;
  left: -4rem;
}

.burst-b {
  right: -5rem;
  bottom: 18%;
  animation-delay: -2s;
}

.spray {
  width: 120vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(88, 236, 255, 0.85), rgba(255, 255, 255, 0.76), transparent);
  box-shadow: 0 0 24px rgba(24, 216, 255, 0.52);
  transform: rotate(-14deg);
  animation: spray-pass 7s ease-in-out infinite;
}

.spray-a {
  top: 24%;
  left: -30vw;
}

.spray-b {
  right: -30vw;
  bottom: 18%;
  animation-delay: -3.2s;
}

.droplets {
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 30%, rgba(88, 236, 255, 0.24) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px);
  background-size: 220px 280px, 180px 240px, 260px 360px;
  opacity: 0.58;
  animation: droplets-fall 16s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 3, 7, 0.78);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-lockup img {
  width: clamp(3.35rem, 4.6vw, 4.1rem);
  height: clamp(3.35rem, 4.6vw, 4.1rem);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(24, 216, 255, 0.38);
}

.brand-lockup strong,
.section-heading h2,
.hero h1,
.package-card h3,
.price,
.calendar-toolbar strong,
.slot-panel h3,
.summary-value,
.review-card h2,
.contact-footer strong {
  font-family: var(--display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-lockup strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 0.95;
}

.brand-lockup small {
  display: block;
  margin-top: 0.18rem;
  color: var(--electric-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-slogan {
  display: block;
  margin-top: 0.2rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(0.86rem, 1.5vw, 1.04rem);
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions,
.hero-ctas,
.trust-strip,
.filter-bar,
.admin-toolbar,
.calendar-toolbar {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.desktop-nav {
  justify-content: center;
  flex: 1 1 auto;
}

.header-actions {
  justify-content: flex-end;
  flex: 0 0 auto;
}

.desktop-nav a,
.call-link,
.motion-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  padding: 0.72rem 0.92rem;
  text-decoration: none;
  white-space: nowrap;
}

.call-link {
  background: linear-gradient(135deg, var(--electric), #087ea0);
  border-color: transparent;
  color: #031014;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.8rem, 7vw, 5.6rem) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(1rem, 4vw, 2.5rem);
  align-items: center;
  min-height: min(46rem, calc(100vh - 6rem));
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), transparent 32%),
    var(--panel);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(24, 216, 255, 0.08);
  backdrop-filter: blur(18px);
}

.glass-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 35%, rgba(24, 216, 255, 0.13) 42%, transparent 50%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.glass-panel:hover::before {
  opacity: 1;
  animation: panel-ripple 900ms ease;
}

.package-card,
.addon-card,
.gallery-item,
.appointment-card,
details {
  position: relative;
  overflow: hidden;
}

.package-card::before,
.addon-card::before,
.gallery-item::before,
.appointment-card::before,
details::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(88, 236, 255, 0.11) 46%, transparent 55%),
    radial-gradient(circle at var(--ripple-x, 18%) 0%, rgba(255, 255, 255, 0.08), transparent 36%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 180ms ease, transform 520ms ease;
  pointer-events: none;
}

.package-card:hover::before,
.addon-card:hover::before,
.gallery-item:hover::before,
.appointment-card:hover::before,
details:hover::before {
  opacity: 1;
  transform: translateX(24%);
}

.hero-copy,
.summary-panel,
.booking-panel,
.confirmation-panel,
.admin-panel,
.admin-login-panel,
.public-gallery-panel,
.review-card {
  padding: clamp(1.25rem, 4vw, 2.2rem);
}

.launch-badge,
.section-heading span,
.review-card span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  background: rgba(24, 216, 255, 0.12);
  color: var(--electric-strong);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  padding: 0.52rem 0.72rem;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 1rem 0;
  font-size: clamp(3.2rem, 6.4vw, 5.85rem);
  line-height: 0.88;
  text-shadow: 0 0 34px rgba(24, 216, 255, 0.18);
}

.hero-slogan {
  display: block;
  width: fit-content;
  border: 1px solid rgba(88, 236, 255, 0.48);
  border-radius: 999px;
  background: rgba(24, 216, 255, 0.12);
  box-shadow: 0 0 26px rgba(24, 216, 255, 0.18);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.5rem 0.75rem;
  text-transform: uppercase;
}

.hero p,
.section-heading p,
.confirmation-panel p,
.review-card p,
details p {
  color: #d5dce4;
  font-size: 1.03rem;
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  cursor: pointer;
  font-weight: 1000;
  padding: 0.86rem 1.1rem;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.icon-button:hover,
.desktop-nav a:hover {
  border-color: var(--line-blue);
  box-shadow: 0 0 26px rgba(24, 216, 255, 0.18);
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--electric-strong), var(--electric) 42%, #086b90);
  color: #041014;
  box-shadow: 0 0 24px rgba(24, 216, 255, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.button.danger,
.danger {
  border-color: rgba(255, 128, 146, 0.52);
  color: #ffd4dc;
}

.full-width {
  width: 100%;
}

.trust-strip {
  margin-top: 1.4rem;
}

.trust-strip span {
  flex: 1 1 12rem;
  min-height: 4.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  padding: 0.9rem;
}

.mascot-stage {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
}

.mascot-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  border: 3px solid rgba(255, 255, 255, 0.74);
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.55);
  box-shadow:
    0 30px 92px rgba(0, 0, 0, 0.58),
    0 0 74px rgba(24, 216, 255, 0.36),
    0 0 110px rgba(142, 16, 35, 0.52);
  animation: mascot-float 5s ease-in-out infinite;
}

.logo-orbit {
  position: absolute;
  width: min(31rem, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(24, 216, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(24, 216, 255, 0.16), transparent 63%),
    conic-gradient(transparent, rgba(24, 216, 255, 0.44), transparent, rgba(255, 255, 255, 0.36), transparent);
  filter: blur(0.3px);
  animation: slow-spin 18s linear infinite;
}

.section-heading {
  position: relative;
  max-width: 48rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.65rem;
}

.section-heading::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(16rem, 72vw);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(88, 236, 255, 0.86), rgba(255, 255, 255, 0.56), transparent);
  box-shadow: 0 0 18px rgba(24, 216, 255, 0.46);
}

.section-heading.compact {
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0.85rem 0 0.5rem;
  font-size: clamp(2.15rem, 4.6vw, 3.85rem);
  line-height: 0.95;
}

.section-heading.compact h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
}

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

.package-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 1rem;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background:
    linear-gradient(115deg, rgba(24, 216, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.52));
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.package-card.selected {
  border-color: var(--electric);
  box-shadow: 0 0 0 1px rgba(24, 216, 255, 0.36), var(--shadow);
}

.package-card h3 {
  margin: 0;
  font-size: 2.4rem;
}

.price {
  color: var(--electric-strong);
  font-size: 3.8rem;
  line-height: 0.9;
}

.package-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  color: #e9edf2;
  font-weight: 850;
}

.package-card li::before {
  content: "";
  display: inline-block;
  width: 0.54rem;
  height: 0.54rem;
  margin-right: 0.5rem;
  border-radius: 999px;
  background: var(--electric);
  box-shadow: 0 0 14px rgba(24, 216, 255, 0.72);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.calendar-toolbar {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-toolbar strong {
  color: var(--electric-strong);
  font-size: 1.8rem;
}

.icon-button {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 1000;
}

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

.calendar-cell {
  min-height: 4.6rem;
  border: 1px solid var(--line);
  border-radius: 0.78rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  cursor: pointer;
  padding: 0.48rem;
  text-align: left;
}

.calendar-cell strong {
  display: block;
}

.calendar-cell small {
  display: block;
  margin-top: 0.28rem;
  color: var(--electric-strong);
  font-size: 0.64rem;
  font-weight: 900;
}

.calendar-cell.dow {
  min-height: auto;
  cursor: default;
  text-align: center;
  color: var(--electric-strong);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.calendar-cell.disabled {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.calendar-cell.selected,
.slot-button.selected {
  border-color: var(--electric);
  background: rgba(24, 216, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(24, 216, 255, 0.34), 0 0 20px rgba(24, 216, 255, 0.18);
}

.slot-panel {
  margin-top: 1rem;
}

.slot-panel h3 {
  margin: 0 0 0.8rem;
  color: var(--electric-strong);
  font-size: 1.55rem;
}

.slot-grid,
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.slot-button,
.filter-button {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.065);
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  padding: 0.86rem;
}

.slot-button.unavailable {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
}

.addon-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  min-height: 10rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.32)),
    rgba(255, 255, 255, 0.045);
  color: var(--white);
  padding: 1rem;
  text-align: left;
}

.addon-card h3,
.addon-card p {
  margin: 0;
}

.addon-card h3 {
  color: var(--electric-strong);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.addon-card p {
  margin-top: 0.42rem;
  color: #d8e0e8;
  font-size: 0.94rem;
  line-height: 1.45;
}

.premium-addon {
  position: relative;
  overflow: hidden;
  border-color: rgba(88, 236, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(24, 216, 255, 0.22), rgba(93, 7, 21, 0.28) 52%, rgba(0, 0, 0, 0.34)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 1px rgba(88, 236, 255, 0.2), 0 22px 60px rgba(24, 216, 255, 0.12);
}

.premium-addon::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.premium-addon > * {
  position: relative;
}

.addon-highlight {
  display: inline-block;
  margin-bottom: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
  padding: 0.26rem 0.5rem;
  text-transform: uppercase;
}

.addon-icon {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line-blue);
  border-radius: 0.85rem;
  place-items: center;
  background: rgba(24, 216, 255, 0.11);
  box-shadow: inset 0 0 18px rgba(24, 216, 255, 0.08);
}

.addon-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: var(--electric-strong);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.addon-copy {
  min-width: 0;
}

.inquire-button {
  grid-column: 1 / -1;
  width: 100%;
  letter-spacing: 0.08em;
}

.addon-note {
  grid-column: 1 / -1;
  margin: 0.3rem 0 0;
  border: 1px solid rgba(24, 216, 255, 0.26);
  border-radius: 1rem;
  background: rgba(24, 216, 255, 0.08);
  color: #dce8ee;
  font-weight: 850;
  padding: 0.9rem 1rem;
}

.summary-lines {
  display: grid;
  gap: 0.72rem;
  margin-bottom: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding-bottom: 0.7rem;
}

.summary-line span:first-child {
  color: var(--silver);
}

.summary-value {
  color: var(--electric-strong);
  font-size: 1.8rem;
}

.stacked-form {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.44rem;
  color: #e9eef5;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  background: rgba(0, 0, 0, 0.48);
  color: var(--white);
  outline: none;
  padding: 0.9rem 0.95rem;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(24, 216, 255, 0.14);
}

.drop-zone {
  position: relative;
  display: grid;
  min-height: 9rem;
  place-items: center;
  border: 1px dashed rgba(88, 236, 255, 0.62);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(24, 216, 255, 0.12), rgba(93, 7, 21, 0.16)),
    rgba(0, 0, 0, 0.3);
  color: var(--white);
  text-align: center;
}

.drop-zone input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

.drop-zone.dragging {
  border-color: var(--white);
  box-shadow: inset 0 0 40px rgba(24, 216, 255, 0.18);
}

.drop-zone strong {
  font-family: var(--display);
  font-size: 1.7rem;
  text-transform: uppercase;
}

.drop-zone span,
.fine-print {
  color: var(--silver);
  font-size: 0.86rem;
  line-height: 1.45;
}

.gallery-grid,
.appointment-list {
  display: grid;
  gap: 0.9rem;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-grid.filtering {
  animation: gallery-filter-in 260ms ease both;
}

.gallery-item,
.appointment-card,
details {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.31);
  padding: 0.85rem;
}

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

.compare-frame {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.38);
}

.compare-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.22) 42%, transparent 52%);
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.gallery-item:hover .compare-frame::after,
.gallery-item:focus .compare-frame::after,
.gallery-item:focus-within .compare-frame::after {
  opacity: 1;
  animation: image-spray-sweep 850ms ease;
}

.after-image {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 48%);
  transition: clip-path 420ms ease, opacity 420ms ease;
}

.compare-frame:not(.has-compare) .after-image {
  opacity: 0;
}

.gallery-item:hover .has-compare .after-image,
.gallery-item:focus .has-compare .after-image,
.gallery-item:focus-within .has-compare .after-image {
  clip-path: inset(0 0 0 0);
}

.badge {
  position: absolute;
  top: 0.62rem;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(5, 5, 8, 0.78);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  padding: 0.28rem 0.48rem;
  text-transform: uppercase;
}

.before-badge {
  left: 0.62rem;
}

.after-badge {
  right: 0.62rem;
  border-color: var(--line-blue);
  color: var(--electric-strong);
}

.gallery-item strong,
.appointment-card strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--electric-strong);
}

.gallery-item:focus {
  outline: 2px solid rgba(88, 236, 255, 0.72);
  outline-offset: 3px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.55rem;
}

.tag {
  border: 1px solid rgba(24, 216, 255, 0.28);
  border-radius: 999px;
  background: rgba(24, 216, 255, 0.1);
  color: var(--electric-strong);
  font-size: 0.72rem;
  font-weight: 1000;
  padding: 0.32rem 0.48rem;
}

.filter-button.active {
  border-color: var(--electric);
  background: rgba(24, 216, 255, 0.18);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(24, 216, 255, 0.26);
  border-radius: 1rem;
  background: rgba(24, 216, 255, 0.08);
  padding: 1rem;
}

.confirmation-details {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.confirmation-details[hidden] {
  display: none;
}

.confirmation-details div {
  display: grid;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background: rgba(0, 0, 0, 0.24);
  padding: 0.8rem;
}

.confirmation-details span {
  color: var(--silver);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-details strong {
  color: var(--white);
  line-height: 1.35;
}

.notice-status {
  margin: 1rem 0;
  border: 1px solid var(--line-blue);
  border-radius: 1rem;
  background: rgba(24, 216, 255, 0.1);
  color: var(--electric-strong);
  font-weight: 950;
  padding: 0.9rem;
}

.form-status:empty {
  display: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.admin-toolbar {
  align-items: stretch;
  margin-bottom: 1rem;
}

.admin-toolbar input {
  flex: 1 1 18rem;
}

.admin-toolbar select,
.admin-toolbar .button {
  width: auto;
}

.view-toggle {
  display: inline-flex;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.25rem;
}

.view-toggle .button {
  min-height: 2.6rem;
  border-radius: 0.78rem;
}

.view-toggle .button.active {
  border-color: var(--electric);
  background: rgba(24, 216, 255, 0.18);
  color: var(--electric-strong);
}

.admin-error {
  min-height: 1.35rem;
  margin: 0;
  color: #ffd4dc;
  font-weight: 950;
}

.sync-status {
  margin: -0.35rem 0 1rem;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 850;
}

.admin-setup-note {
  border: 1px solid rgba(24, 216, 255, 0.28);
  border-radius: 0.85rem;
  background: rgba(24, 216, 255, 0.08);
  color: var(--silver);
  padding: 0.75rem 0.9rem;
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.overview-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.8rem;
}

.overview-card strong {
  display: block;
  color: var(--electric-strong);
  font-family: var(--display);
  font-size: 2rem;
}

.appointment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 13rem;
  gap: 0.8rem;
}

.appointment-card p {
  margin: 0.42rem 0;
  color: #dbe2ea;
  line-height: 1.5;
}

.card-controls {
  display: grid;
  gap: 0.6rem;
}

.admin-gallery-tools,
.admin-day {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.admin-day h3 {
  margin: 0 0 0.75rem;
  color: var(--electric-strong);
  font-family: var(--display);
  font-size: 1.8rem;
  text-transform: uppercase;
}

.trust-faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 1000;
}

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.42);
  padding: 2.2rem 1rem 5.4rem;
  text-align: left;
}

.contact-footer img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
}

.contact-footer span {
  display: block;
  color: var(--silver);
  margin-top: 0.24rem;
}

.sticky-book {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--electric-strong), var(--electric));
  color: #061016;
  font-weight: 1000;
  padding: 0 1.3rem;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 28px rgba(24, 216, 255, 0.32);
  animation: book-pulse 2.4s ease-in-out infinite;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(5, 2, 4, 0.78);
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.inquiry-modal {
  width: min(36rem, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: clamp(1rem, 4vw, 1.6rem);
  animation: modal-in 220ms ease both;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 1;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 900;
}

.inquiry-status:empty {
  display: none;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 40;
  display: none;
  max-width: min(26rem, calc(100vw - 2rem));
  border: 1px solid var(--line-blue);
  border-radius: 1rem;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  color: var(--white);
  font-weight: 900;
  padding: 0.95rem 1rem;
}

.toast.show {
  display: block;
  animation: toast-in 220ms ease;
}

@keyframes mist-slide {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 0 960px;
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes burst-pulse {
  50% {
    transform: scale(1.18);
    opacity: 0.5;
  }
}

@keyframes spray-pass {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-18vw) rotate(-14deg);
  }
  48% {
    opacity: 0.72;
  }
  60% {
    transform: translateX(22vw) rotate(-14deg);
  }
}

@keyframes droplets-fall {
  to {
    background-position: 0 780px, 0 620px, 0 900px;
  }
}

@keyframes panel-ripple {
  from {
    transform: translateX(-55%);
  }
  to {
    transform: translateX(65%);
  }
}

@keyframes mascot-float {
  50% {
    transform: translateY(-0.8rem);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(0.6rem);
  }
}

@keyframes image-spray-sweep {
  to {
    transform: translateX(70%);
  }
}

@keyframes gallery-filter-in {
  from {
    opacity: 0.62;
    transform: translateY(0.35rem);
  }
}

@keyframes book-pulse {
  50% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 38px rgba(24, 216, 255, 0.54);
    transform: translateY(-1px);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(0.6rem) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (min-width: 760px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .site-header {
    padding-inline: clamp(1.5rem, 3vw, 3.25rem);
  }

  .section-shell {
    width: min(1220px, calc(100% - 4rem));
  }

  .desktop-nav,
  .header-actions {
    gap: 0.55rem;
  }

  .desktop-nav a,
  .call-link,
  .motion-toggle {
    padding: 0.68rem 0.82rem;
    font-size: 0.92rem;
  }

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

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .split-section,
  .trust-faq {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .mascot-stage {
    min-height: 23rem;
  }

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

  .appointment-card {
    grid-template-columns: 1fr;
  }
}

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

  .brand-lockup img {
    width: 3.4rem;
    height: 3.4rem;
  }

  .brand-lockup small,
  .brand-slogan,
  .header-actions {
    display: none;
  }

  .section-shell {
    width: min(100% - 1rem, 1180px);
    padding: 2.2rem 0;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .calendar-grid {
    gap: 0.25rem;
  }

  .calendar-cell {
    min-height: 3.8rem;
    border-radius: 0.58rem;
    font-size: 0.78rem;
    padding: 0.36rem;
  }

  .slot-grid,
  .addon-grid,
  .form-row,
  .gallery-grid,
  .admin-overview {
    grid-template-columns: 1fr;
  }

  .contact-footer {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .sticky-book {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    min-height: 3.6rem;
    border-radius: 1rem;
  }

  .toast {
    bottom: 5.1rem;
  }
}
