:root {
  --color-primary: #69466e;
  --color-primary-light: #c88bce;
  --color-primary-dark: #2f2232;
  --color-accent: #9f8270;
  --color-bg: #0d0b0d;
  --color-surface: #171216;
  --color-surface-2: rgba(255, 255, 255, 0.05);
  --color-text: #f4efeb;
  --color-text-secondary: #cdbfb7;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;

  --font-primary: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(200, 139, 206, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(159, 130, 112, 0.14), transparent 30%),
    linear-gradient(180deg, #0e0b0d 0%, #090708 100%);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

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

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

main,
[role="main"],
.app-container {
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.hidden {
  display: none !important;
}

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

:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 48px;
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: 0 12px 30px rgba(105, 70, 110, 0.28);
}

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

.btn-secondary {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: rgba(200, 139, 206, 0.35);
}

.btn-ghost {
  color: var(--color-text-secondary);
  background: transparent;
}

.btn[disabled],
.btn.loading {
  opacity: 0.55;
  pointer-events: none;
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.toast-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  pointer-events: none;
}

.toast {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  pointer-events: auto;
  animation: toastIn 0.3s ease forwards;
  max-width: 360px;
}

.toast.success { background: var(--color-success); }
.toast.error { background: var(--color-error); }
.toast.warning { background: var(--color-warning); color: #111; }
.toast.info { background: var(--color-info); }
.toast.hiding { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.skeleton-image {
  height: 180px;
  width: 100%;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

.glass-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05)),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 28%),
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 34%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 8, 9, 0.42);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-kicker {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  color: var(--color-text-secondary);
}

.brand strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.site-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

.site-nav a {
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-text);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero-shader,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-shader {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-scrim {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 30%),
    linear-gradient(180deg, rgba(12,10,12,0.18), rgba(12,10,12,0.72) 72%, rgba(12,10,12,0.96));
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  gap: var(--space-8);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: var(--space-3);
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
}

.hero-copy h1,
.section-head h2,
.booking-copy h2 {
  font-family: var(--font-display);
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 9vw, 6rem);
  margin-bottom: var(--space-3);
}

.hero-copy p {
  max-width: 42ch;
  color: var(--color-text-secondary);
  font-size: var(--text-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero-float {
  justify-self: start;
  width: min(100%, 560px);
  min-width: 0;
  display: block;
  border-radius: 34px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05)),
    linear-gradient(135deg, rgba(200,139,206,0.12), rgba(255,255,255,0.02));
  overflow: hidden;
}

.hero-visual-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-float strong {
  display: none;
}

.hero-float p {
  display: none;
}

.selected-service-card span,
.graph-card-meta,
.service-micro,
.section-head p,
.booking-copy p,
.site-footer p {
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.selected-service-card span,
.graph-card-meta,
.service-micro {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-shell {
  padding: var(--space-16) 0;
}

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.section-head {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.section-head.minimal h2,
.booking-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.service-sections-shell {
  display: grid;
  gap: var(--space-4);
}

.section-group {
  position: relative;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
    linear-gradient(135deg, rgba(200,139,206,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(255,255,255,0.03);
  overflow: clip;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.section-graph-card {
  width: 100%;
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.15rem 0.85rem;
  background: transparent;
  color: inherit;
  border: none;
  text-align: left;
  cursor: pointer;
}

.section-graph-card:hover {
  background: rgba(255,255,255,0.015);
}

.section-graph-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.85rem;
}

.section-graph-title {
  min-width: 0;
}

.section-graph-title h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
}

.section-graph-title p {
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.42;
  color: var(--color-text-secondary);
}

.section-graph-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 52px;
  padding: 0.65rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  color: var(--color-primary-light);
  font-size: 0.96rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 20px rgba(0,0,0,0.1);
}

.graph-line {
  display: none;
}

.section-graph-bottom {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 0.15rem;
}

.graph-line svg {
  display: none;
}

.section-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.section-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.section-group.is-open .section-panel {
  grid-template-rows: 1fr;
}

.service-grid {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
  grid-template-columns: 1fr;
}

.service-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title price"
    "meta meta"
    "desc desc"
    "actions actions";
  gap: 0.4rem 0.85rem;
  padding: 0.95rem 1rem 1rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: none;
  display: none;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(200,139,206,0.3);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.service-card.is-selected {
  border-color: rgba(200,139,206,0.46);
  box-shadow:
    0 0 0 1px rgba(200,139,206,0.18),
    0 20px 42px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.service-card-top {
  display: contents;
}

.service-card-top > div {
  grid-area: title;
  min-width: 0;
}

.service-card h4 {
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.service-price {
  grid-area: price;
  color: var(--color-primary-light);
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  justify-self: end;
  align-self: start;
}

.service-micro {
  grid-area: meta;
  margin-top: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.service-card p {
  grid-area: desc;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--color-text-secondary);
}

.service-actions {
  grid-area: actions;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.1rem;
}

.service-actions .graph-card-meta {
  display: none;
}

.service-actions .btn {
  min-height: 40px;
  min-width: 132px;
  padding: 0.7rem 0.95rem;
  border-radius: 16px;
}

.booking-grid,
.footer-grid {
  display: grid;
  gap: var(--space-8);
}

.booking-form {
  display: grid;
  gap: var(--space-4);
  border-radius: 32px;
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.selected-service-card {
  min-width: 0;
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 26px rgba(0,0,0,0.08);
}

.selected-service-card strong {
  min-width: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.selected-service-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-text-secondary);
}

.selected-service-card.is-empty {
  opacity: 0.88;
}

.field-row {
  display: grid;
  gap: var(--space-4);
}

label {
  display: grid;
  gap: var(--space-2);
}

label span {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  color: var(--color-text);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 20px rgba(0,0,0,0.06);
}

input::placeholder,
textarea::placeholder {
  color: rgba(205,191,183,0.66);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.site-footer {
  padding: var(--space-8) 0 var(--space-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.helix-powered {
  text-align: center;
  padding: var(--space-4) var(--space-4) var(--space-6);
}

.helix-powered a {
  font-size: 10px;
  color: #999;
  opacity: 0.35;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: opacity 0.2s;
}

.helix-powered a:hover {
  opacity: 0.7;
}

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

  .section-head.minimal,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
  }

  .hero-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
  }

  .hero-float {
    justify-self: end;
  }

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

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

  .service-card {
    min-height: 220px;
  }

  .service-actions {
    justify-content: flex-end;
  }
}

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

.is-extras-section {
  border-color: rgba(200,139,206,0.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    linear-gradient(135deg, rgba(200,139,206,0.16), rgba(255,255,255,0.02));
}

.is-extras-section .section-graph-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.is-extras-section .section-graph-badge {
  color: #f1c3f4;
  border-color: rgba(200,139,206,0.24);
  background:
    linear-gradient(180deg, rgba(200,139,206,0.18), rgba(255,255,255,0.04));
}

.is-extras-section .section-graph-bottom .graph-card-meta {
  color: #e3b4e7;
}

.is-extra-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(200,139,206,0.08), rgba(255,255,255,0.03));
  border-color: rgba(200,139,206,0.16);
}

.is-extra-card::after {
  content: none;
  display: none;
}

.is-extra-card .service-price {
  color: #f0b5f2;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  justify-self: end;
  align-self: start;
}

.is-extra-card .service-actions {
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.is-extra-card .service-actions .graph-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f3c9f6;
  background: rgba(200,139,206,0.12);
  border: 1px solid rgba(200,139,206,0.18);
}

.extra-toggle-btn {
  min-width: 132px;
  min-height: 40px;
  padding: 0.68rem 0.95rem;
  border-radius: 16px;
  font-size: 0.83rem;
}

.extra-toggle-btn.btn-primary {
  background: linear-gradient(135deg, #8f5a95, #c88bce);
  box-shadow: 0 12px 28px rgba(143, 90, 149, 0.28);
}

.extra-toggle-btn.btn-secondary {
  color: #f7eef8;
  background: rgba(200,139,206,0.14);
  border: 1px solid rgba(200,139,206,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.is-extra-card.is-selected {
  border-color: rgba(200,139,206,0.34);
  box-shadow:
    0 0 0 1px rgba(200,139,206,0.16),
    0 20px 42px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.is-extra-card p {
  font-size: 0.93rem;
  line-height: 1.42;
}

.is-extra-card .service-micro {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
}

.selected-extras-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.selected-extra-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f7eef8;
  background:
    linear-gradient(180deg, rgba(200,139,206,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(200,139,206,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.selected-extra-empty {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.selected-service-card small {
  display: block;
  margin-top: 0.15rem;
  color: #f0c0f2;
  font-weight: 700;
}

@media (min-width: 768px) {
  .is-extras-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .is-extras-section .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}