/* =========================================
   MOBILE FIRST -- base styles for 375px+
   Tablet: 640px+
   Desktop: 1024px+
   Wide: 1200px+
   ========================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --dark:    #0a0812;
  --dark2:   #110f1e;
  --ink:     #1a1530;
  --cream:   #f0ecff;
  --mid:     #8878b0;
  --rule:    #2a2448;
  --rule-lt: #e2daf5;
  --pink:    #ff6eb4;
  --cyan:    #38cfff;
  --violet:  #a78bfa;
  --gold:    #ffd166;
  --mint:    #5effd8;
  --peach:   #ff9a5c;
  --bg:      #faf8ff;
  --bg2:     #f3effc;
  --mid-lt:  #7a6fa0;
  --white:   #ffffff;

  --pad: 1.25rem;
  --max: 1200px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,8,18,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rule);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.logo {
  font-family: 'Lora', serif;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo-mark img {
  width: 36px;
  height: 41px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-name {
  font-size: 1.15rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.l-prism { color: var(--cream); font-style: normal; }
.l-lux   { color: var(--gold);  font-style: italic; }
.l-dot   {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  margin: 0 2px;
  position: relative;
  top: -2px;
  flex-shrink: 0;
}

.logo-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--mid);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-sub-rule {
  height: 1px;
  background: var(--mid);
  opacity: 0.45;
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav menu */
.nav-menu {
  display: none;
  flex-direction: column;
  padding: 1rem var(--pad) 1.5rem;
  border-top: 1px solid var(--rule);
  gap: 0;
}

.nav-menu.open { display: flex; }

.nav-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--cream); }

.nav-menu .nav-cta {
  margin-top: 1rem;
  border-bottom: none;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  padding: 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
}

/* Desktop nav links -- hidden on mobile */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-desktop a:hover { color: var(--cream); }

.nav-desktop .nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-desktop .nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem var(--pad) 3rem;
  background: var(--dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -20%;
  width: 500px; height: 500px;
  background: conic-gradient(from 0deg,
    rgba(255,110,180,0.22) 0deg,
    rgba(167,139,250,0.22) 72deg,
    rgba(56,207,255,0.22)  144deg,
    rgba(94,255,216,0.18)  216deg,
    rgba(255,209,102,0.18) 288deg,
    rgba(255,110,180,0.22) 360deg
  );
  border-radius: 50%;
  filter: blur(70px);
  animation: slow-spin 25s linear infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 10vw, 6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 420px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 50%, var(--cyan) 100%);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 30px rgba(255,110,180,0.35);
  width: 100%;
  justify-content: center;
}

.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(167,139,250,0.45); }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.meta-item {
  font-size: 0.78rem;
  color: var(--mid);
}

.meta-item strong {
  display: block;
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── COLOR BAND ── */
.band {
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--violet), var(--cyan), var(--mint), var(--gold), var(--peach), var(--pink));
  background-size: 200%;
  animation: band-shift 6s linear infinite;
}
@keyframes band-shift { to { background-position: 200% center; } }

/* ── SECTIONS ── */
.section {
  padding: 3rem var(--pad);
  border-bottom: 1px solid var(--rule-lt);
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-lt);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--ink);
}

.section-title em { font-style: italic; color: var(--violet); }

/* ── SERVICES ── */
.service-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule-lt);
  transition: background 0.2s;
}

.service-row:last-child { border-bottom: 1px solid var(--rule-lt); }

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

.service-num {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rule-lt);
  width: 18px;
  flex-shrink: 0;
}

.service-name {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}

.service-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  padding-left: 28px;
}

.tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid var(--rule-lt);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  color: var(--mid-lt);
  background: white;
}

/* ── PROCESS ── */
.process-section {
  background: var(--dark2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.process-header {
  padding: 2.5rem 0 2rem;
  border-bottom: 1px solid var(--rule);
}

.process-grid {
  display: flex;
  flex-direction: column;
}

.process-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}

.process-item:last-child { border-bottom: none; }

.process-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-item h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.process-item p { font-size: 0.88rem; color: var(--mid); line-height: 1.75; }

/* ── PRICING ── */
.pricing-tabs {
  display: flex;
  background: white;
  border: 1px solid var(--rule-lt);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(167,139,250,0.1);
  width: 100%;
}

.pricing-tab {
  flex: 1;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.75rem 0.5rem;
  border-radius: 100px;
  cursor: pointer;
  color: var(--mid-lt);
  border: none;
  background: transparent;
  transition: all 0.2s;
  text-align: center;
}

.pricing-tab.active {
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
}

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--rule-lt);
  border-radius: 16px;
  padding: 1.75rem;
  background: white;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--dark);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(167,139,250,0.3), 0 8px 40px rgba(255,110,180,0.15);
  order: -1;
}

.price-tier {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-lt);
  margin-bottom: 1rem;
}

.price-card.featured .price-tier { color: var(--mid); }

.price-amount {
  font-family: 'Lora', serif;
  font-size: 2.6rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card.featured .price-amount {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-note { font-size: 0.78rem; color: var(--mid-lt); margin-bottom: 1.25rem; }
.price-card.featured .price-note { color: var(--mid); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.price-features li {
  font-size: 0.85rem;
  color: var(--mid-lt);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.price-card.featured .price-features li { color: var(--mid); }

.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
}

.price-btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s;
  margin-top: auto;
}

.btn-outline {
  border-color: var(--rule-lt);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover { border-color: var(--violet); color: var(--violet); }

.btn-gradient {
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  color: white;
  box-shadow: 0 4px 20px rgba(255,110,180,0.3);
}

/* ── INTAKE ── */
.intake-block {
  background: white;
  border: 1px solid var(--rule-lt);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.intake-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule-lt);
}

.intake-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.35rem;
  display: block;
}

.intake-title {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.intake-note {
  font-size: 0.84rem;
  color: var(--mid-lt);
  line-height: 1.7;
}

.intake-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intake-group-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.intake-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }

.intake-list li {
  font-size: 0.83rem;
  color: var(--mid-lt);
  padding-left: 0.9rem;
  position: relative;
  line-height: 1.5;
}

.intake-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
}

/* ── ADD-ONS ── */
.addons-section { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--rule-lt); }

.addons-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-lt);
  margin-bottom: 1.25rem;
  display: block;
}

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

.addon-card {
  border: 1px solid var(--rule-lt);
  border-radius: 12px;
  padding: 1.1rem;
  background: white;
}

.addons-grid .addon-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.addon-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-bottom: 0.6rem;
}

.addon-name {
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.addon-desc { font-size: 0.75rem; color: var(--mid-lt); line-height: 1.55; margin-bottom: 0.6rem; overflow-wrap: break-word; }
.addon-price { font-size: 0.8rem; font-weight: 600; color: var(--ink); }

/* ── FOOTER CTA ── */
.footer-cta-section { background: var(--dark); border-top: 1px solid var(--rule); }

.footer-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem var(--pad);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-cta h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cream);
}

.footer-cta h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-right p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cta-btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--pink) 0%, var(--violet) 50%, var(--cyan) 100%);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s;
  box-shadow: 0 4px 30px rgba(255,110,180,0.3);
  word-break: break-all;
}

footer {
  background: var(--dark);
  border-top: 1px solid var(--rule);
  padding: 1.5rem var(--pad);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--cream); }
footer p { font-size: 0.75rem; color: var(--mid); }

/* ── FADE ── */
.fade { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.visible { opacity: 1; transform: none; }

/* =========================================
   TABLET 640px+
   ========================================= */
@media (min-width: 640px) {

  :root { --pad: 2rem; }

  .cta-btn { width: auto; justify-content: flex-start; }

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

  .service-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
  }

  .service-tags { padding-left: 0; }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .process-item { padding: 2rem; border-bottom: none; border-right: 1px solid var(--rule); }
  .process-item:nth-child(2) { border-right: none; }
  .process-item:nth-child(3) { border-top: 1px solid var(--rule); grid-column: 1 / -1; border-right: none; }

  .pricing-tabs { width: fit-content; }
  .pricing-tab { flex: none; padding: 0.5rem 1.25rem; }

  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { order: 0; }

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

  .intake-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}

/* =========================================
   DESKTOP 1024px+
   ========================================= */
@media (min-width: 1024px) {

  :root { --pad: 2.5rem; }

  .hamburger { display: none; }
  .nav-menu { display: none !important; }
  .nav-desktop { display: flex; }

  .hero {
    padding: 0 var(--pad) 5rem;
    justify-content: flex-end;
  }

  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
  }

  .hero-headline { margin-bottom: 0; max-width: 660px; }
  .hero-sub { display: none; }
  .hero-cta-mobile { display: none; }

  .hero-right {
    flex-shrink: 0;
    max-width: 280px;
    padding-bottom: 0.5rem;
    display: block !important;
  }

  .section { padding: 5rem var(--pad); }

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

  .process-item { border-top: none !important; grid-column: auto !important; border-right: 1px solid var(--rule) !important; }
  .process-item:last-child { border-right: none !important; }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { order: 0; }

  .addons-grid { grid-template-columns: repeat(5, 1fr); }

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

  .footer-cta { flex-direction: row; align-items: center; padding: 5rem var(--pad); }
  .footer-right p { max-width: 240px; }
}

/* =========================================
   WIDE 1200px+
   ========================================= */
@media (min-width: 1200px) {
  .section { max-width: var(--max); }
}
