:root {
  /* Cartoon pet spa palette */
  --bg: #f2fbff;
  --bg2: #fff7f2;
  --panel: rgba(255, 255, 255, 0.92);
  --stroke: rgba(27, 34, 48, 0.16);
  --text: #1b2230;
  --muted: rgba(27, 34, 48, 0.72);
  --dim: rgba(27, 34, 48, 0.52);
  --accent: #7c3aed;
  --hot: #ff4d8d;
  --gold: #fbbf24;
  --shadow: 0 18px 0 rgba(27, 34, 48, 0.18);
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --sans: "Nunito", system-ui, sans-serif;
  --display: "Baloo 2", system-ui, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.65;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(124, 58, 237, 0.20), transparent 38%),
    radial-gradient(circle at 86% 22%, rgba(255, 77, 141, 0.20), transparent 42%),
    radial-gradient(circle at 50% 92%, rgba(251, 191, 36, 0.18), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x: clip;
}

.container {
  width: min(100% - clamp(1.1rem, 4vw, 2.5rem), var(--max));
  margin-inline: auto;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 4px solid rgba(27, 34, 48, 0.18);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 77, 141, 0.14);
  border: 3px solid rgba(27, 34, 48, 0.18);
  box-shadow: var(--shadow);
}

.name {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: rgba(27, 34, 48, 0.78);
  font-weight: 900;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--text);
}

.nav .pill {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 3px solid rgba(27, 34, 48, 0.18);
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.9), rgba(124, 58, 237, 0.9));
  color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.nav .ghost {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 3px solid rgba(27, 34, 48, 0.14);
  color: rgba(27, 34, 48, 0.82);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(27, 34, 48, 0.9);
  border-radius: 2px;
}

.bar + .bar {
  margin-top: 6px;
}

.mobile-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  display: grid;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.65rem 0.25rem;
  color: rgba(27, 34, 48, 0.8);
  text-decoration: none;
  font-weight: 900;
}

.hero {
  padding: clamp(2.6rem, 6vw, 4.2rem) 0 clamp(2.2rem, 5vw, 3.2rem);
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto -60px;
  height: 340px;
  background:
    radial-gradient(circle at 12% 35%, rgba(255, 77, 141, 0.22), transparent 46%),
    radial-gradient(circle at 42% 10%, rgba(124, 58, 237, 0.18), transparent 52%),
    radial-gradient(circle at 72% 45%, rgba(251, 191, 36, 0.18), transparent 52%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.92);
  font-weight: 900;
}

.hero-title {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4.6vw, 3.1rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 58rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-family: inherit;
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.95), rgba(124, 58, 237, 0.95));
  color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 3px solid rgba(27, 34, 48, 0.14);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-block {
  width: 100%;
}

.trust {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: rgba(27, 34, 48, 0.72);
}

.trust-item {
  border: 4px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 0.85rem 0.95rem;
  min-width: 160px;
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.trust-item span {
  display: block;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(27, 34, 48, 0.55);
  margin-top: 0.15rem;
}

.hero-card .card {
  border: 4px solid rgba(27, 34, 48, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  position: sticky;
  top: 5.1rem;
}

.card-kicker {
  margin: 0;
  color: rgba(27, 34, 48, 0.55);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.card-big {
  margin: 0.35rem 0 0.85rem;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 2.4rem;
}

.card-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.section {
  padding: clamp(3.2rem, 7vw, 5.2rem) 0;
  position: relative;
  z-index: 1;
}

.section-soft {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.section-title {
  margin: 0 0 0.6rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.section-sub {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.svc {
  border: 4px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 1.15rem 1.05rem;
  box-shadow: var(--shadow);
}

.svc h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.svc p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.svc ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(27, 34, 48, 0.65);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price {
  border: 4px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 1.15rem 1.05rem;
  box-shadow: var(--shadow);
}

.price--featured {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 77, 141, 0.35);
}

.price h3 {
  margin: 0 0 0.35rem;
}

.amt {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: -0.02em;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}

.modal[aria-hidden="false"],
.lightbox[aria-hidden="false"] {
  display: block;
}

.backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.modal-card {
  position: relative;
  width: min(760px, calc(100% - 2.2rem));
  margin: 7vh auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 18, 29, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-head {
  padding: 1.1rem 1.1rem 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.92);
  font-weight: 900;
}

.modal-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.85rem;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 3px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 1.1rem;
}

.slot-box {
  border: 4px solid rgba(27, 34, 48, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.9rem;
  margin: 0.3rem 0 1rem;
}

.slot-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.slot-title {
  margin: 0;
  font-weight: 900;
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.slot {
  border-radius: 18px;
  border: 3px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 0.65rem 0.6rem;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.slot[aria-selected="true"] {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.95), rgba(124, 58, 237, 0.95));
  color: rgba(255, 255, 255, 0.98);
}

.receipt {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 1rem;
  padding-top: 1rem;
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 0.85rem;
}

.receipt-grid span {
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.receipt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lb-fig {
  position: relative;
  width: min(980px, calc(100% - 2.2rem));
  margin: 7vh auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 18, 29, 0.95);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lb-fig img {
  width: 100%;
  height: auto;
  display: block;
}

.lb-cap {
  padding: 0.85rem 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lb-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.tile {
  grid-column: span 4;
  border-radius: 28px;
  border: 4px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-height: 160px;
  box-shadow: var(--shadow);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transform: scale(1.02);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: saturate(1.02) contrast(1.02);
}

.tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

.tile span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  font-weight: 900;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review {
  border: 4px solid rgba(27, 34, 48, 0.14);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 1.05rem;
  box-shadow: var(--shadow);
}

.review p {
  margin: 0 0 0.65rem;
  font-weight: 800;
}

.review .meta {
  color: rgba(27, 34, 48, 0.65);
  font-size: 0.92rem;
}

.section-book {
  padding-top: clamp(2.6rem, 6vw, 4rem);
}

.book-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
}

.book-card .card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(52, 211, 153, 0.10), transparent 45%),
    rgba(6, 18, 29, 0.64);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

/* Removed legacy portal layout styles (replaced by dog grooming site) */

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.92rem;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
  color: rgba(27, 34, 48, 0.92);
}

.view {
  padding: 0;
}

.form {
  padding: 1.25rem;
}

.form.compact {
  padding: 0.95rem 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.field span {
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--muted);
}

input,
select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.45);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.14);
}

.link {
  border: none;
  background: none;
  color: var(--accent);
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

.link:hover {
  color: var(--hot);
}

/* Removed legacy portal dashboard styles */

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(7, 10, 18, 0.4);
  padding: 1rem;
}

.card--wide {
  grid-column: 1 / -1;
}

.card-title {
  margin: 0 0 0.75rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.list {
  display: grid;
  gap: 0.65rem;
}

/* Removed legacy audit styles */

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  z-index: 60;
  padding: 0.85rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 18, 0.82);
  color: var(--text);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .hero-grid,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .hero-card .card {
    position: static;
  }

  .cards,
  .pricing,
  .reviews {
    grid-template-columns: 1fr;
  }

  .tile {
    grid-column: span 12;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
