:root {
  --color-primary: #5f3a78;
  --color-primary-dark: #4f2f64;
  --color-secondary: #7c5aa6;
  --color-lavender: #cdb9e8;
  --color-highlight: #f3ecfa;
  --color-page: #fbfafd;
  --color-surface: #ffffff;
  --color-surface-alt: #f4f0f8;
  --color-border: #e3daed;
  --color-heading: #2f223a;
  --color-text: #4a4252;
  --color-muted: #766d7f;
  --color-reassure: #dde9da;
  --color-blush: #eacfd9;
  --shadow-soft: 0 10px 30px rgba(73, 45, 96, 0.08);
  --shadow-card: 0 12px 32px rgba(61, 38, 80, 0.08);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1160px;
  --container-narrow: 720px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.25rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5.5rem;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(205, 185, 232, 0.32), transparent 28%),
    linear-gradient(180deg, #fdfcff 0%, var(--color-page) 100%);
  line-height: 1.7;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--color-secondary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--color-primary-dark);
}

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--color-heading);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 2000;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 253, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--color-border);
  box-shadow: 0 8px 24px rgba(61, 38, 80, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.container.narrow {
  width: min(calc(100% - 2rem), var(--container-narrow));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.site-header .brand {
  gap: 0.5rem;
}

.site-header .brand-logo {
  display: none;
}

.site-header .brand-text {
  display: inline-flex;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--color-heading);
  text-decoration: none;
}

.brand-logo {
  width: clamp(72px, 10vw, 124px);
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.desktop-nav a {
  color: var(--color-heading);
  text-decoration: none;
  font-weight: 600;
}

.desktop-nav a[aria-current="page"] {
  color: var(--color-primary);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.875rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.nav-toggle:focus-visible,
.faq-trigger:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--color-lavender);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 10px 24px rgba(95, 58, 120, 0.22);
}

.button-primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
  box-shadow: 0 14px 28px rgba(95, 58, 120, 0.28);
}

.button-secondary {
  color: var(--color-primary);
  border-color: #bca7d7;
  background: rgba(255, 255, 255, 0.85);
}

.button-secondary:hover {
  background: var(--color-highlight);
}

.button-ghost {
  color: var(--color-heading);
  background: transparent;
  border-color: var(--color-border);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-heading);
  display: block;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-line::before {
  transform: translateY(-6px);
}

.nav-toggle-line::after {
  transform: translateY(4px);
}

.nav-open .nav-toggle-line {
  background: transparent;
}

.nav-open .nav-toggle-line::before {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-line::after {
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.mobile-drawer[aria-hidden="false"] {
  display: block;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 24, 43, 0.36);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90vw, 360px);
  height: 100%;
  padding: 1.25rem;
  background: #fff;
  box-shadow: -10px 0 30px rgba(34, 24, 43, 0.16);
  display: grid;
  align-content: start;
  gap: 1rem;
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.mobile-nav {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav a {
  padding: 0.85rem 0.25rem;
  color: var(--color-heading);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
}

.page-hero,
.home-hero {
  padding: 5.5rem 0 4.5rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blush);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--color-heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 5vw, 4.65rem);
  font-weight: 600;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

.lead {
  font-size: 1.125rem;
  max-width: 58ch;
}

.hero-copy p,
.section-copy p,
.card p,
.faq-panel p,
li {
  max-width: 70ch;
}

.hero-actions,
.section-actions,
.option-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-note span,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--color-border);
  color: var(--color-heading);
  font-weight: 600;
}

.hero-visual,
.section-panel,
.card,
.feature-card,
.faq-item,
.contact-card,
.metric-card,
.pricing-panel,
.story-panel,
.callout,
.comparison-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.hero-visual {
  padding: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(205, 185, 232, 0.55), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 248, 0.98));
}

.visual-stack {
  display: grid;
  gap: 1rem;
}

.visual-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.visual-card strong {
  display: block;
  color: var(--color-heading);
  margin-bottom: 0.4rem;
}

.visual-card.featured {
  background: linear-gradient(160deg, rgba(95, 58, 120, 0.1), rgba(205, 185, 232, 0.28));
}

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

.section.alt {
  background: rgba(244, 240, 248, 0.82);
}

.section.tight {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.card,
.feature-card,
.contact-card,
.metric-card,
.pricing-panel,
.story-panel,
.comparison-card {
  padding: 1.9rem;
}

.section-panel {
  padding: 1.9rem;
}

.card h3,
.feature-card h3,
.contact-card h3,
.pricing-panel h3 {
  margin-bottom: 0.7rem;
}

.featured-card {
  border-color: rgba(95, 58, 120, 0.35);
  background: linear-gradient(180deg, #faf6fe 0%, #fff 100%);
}

.mini-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--color-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list,
.icon-list,
.simple-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.check-list li,
.icon-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before,
.icon-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-secondary), var(--color-primary));
}

.chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: #f2ebf8;
  color: var(--color-primary);
  font-weight: 600;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.photo-panel {
  min-height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(95, 58, 120, 0.12), rgba(205, 185, 232, 0.32)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8), transparent 30%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.photo-panel::after {
  content: attr(data-label);
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-heading);
}

.photo-panel.has-image {
  min-height: 0;
  padding: 0;
  background: #fff;
}

.photo-panel.has-image::after {
  content: none;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--color-border);
  vertical-align: top;
}

.comparison-table th {
  background: #f3ecfa;
  color: var(--color-heading);
}

.comparison-table tr:nth-child(even) td {
  background: #fcfafe;
}

.comparison-cards {
  display: none;
}

.faq-group {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: clip;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--color-heading);
  font-weight: 700;
  text-align: left;
  line-height: 1.45;
}

.faq-icon {
  flex: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.faq-panel {
  padding: 0 1.35rem 1.25rem;
}

.faq-panel[hidden] {
  display: none;
}

.hours-card {
  background: linear-gradient(180deg, rgba(221, 233, 218, 0.9), rgba(255, 255, 255, 0.95));
}

.notice {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(243, 236, 250, 0.9);
  border: 1px solid var(--color-border);
}

.cta-band {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(205, 185, 232, 0.36), transparent 30%),
    linear-gradient(135deg, #4f2f64 0%, #6f4a8c 100%);
  color: #fff;
}

.cta-band h2,
.cta-band h3,
.cta-band p {
  color: #fff;
}

.form-card form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--color-heading);
}

input,
textarea,
select {
  width: 100%;
  border: 1.5px solid #d8cde6;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem 1rem;
  color: var(--color-text);
}

p,
li,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

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

.form-note,
.microcopy,
.muted {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.success-message {
  display: none;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: rgba(221, 233, 218, 0.9);
  border: 1px solid rgba(123, 157, 112, 0.28);
  color: var(--color-heading);
}

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

.site-footer {
  padding: 4rem 0 5.5rem;
  background: #f7f4fa;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-title {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-heading);
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(61, 38, 80, 0.08);
}

.sticky-mobile-cta .button {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding-inline: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 240ms ease, transform 240ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 959px) {
  .desktop-nav,
  .header-actions .button-secondary,
  .header-actions .button-primary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-shell,
  .split-panel,
  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrap {
    display: none;
  }

  .comparison-cards {
    display: grid;
    gap: 1rem;
  }

  .page-hero,
  .home-hero,
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 639px) {
  html {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand {
    gap: 0.6rem;
  }

  .brand-logo {
    width: 64px;
  }

  .site-header .brand-logo {
    display: block;
    width: 56px;
  }

  .site-header .brand-text {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .sticky-mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
