/* =========================================================
   LICE MOMS LLC — Site Stylesheet
   Refined editorial aesthetic · purple palette from logo
   ========================================================= */

:root {
  /* Purples pulled directly from logo */
  --plum-950: #28081f;
  --plum-900: #3d0f3d;
  --plum-800: #5a1a5a;
  --plum-700: #6b1f6b;
  --plum-600: #8b2a8b;
  --plum-500: #a64ba6;
  --lilac-400: #c991c9;
  --lilac-300: #dcb8dc;
  --lavender-200: #ecd9ec;
  --lavender-100: #f5e9f5;
  --cream: #fbf6fb;
  --paper: #fdfbfd;
  --ink: #2a0e2a;
  --ink-soft: #5a4a5a;
  --gold: #b8915a;
  --success: #4a7c59;

  /* Fonts */
  --serif-display: "Italiana", "Cormorant Garamond", serif;
  --serif-body: "Cormorant Garamond", Georgia, serif;
  --sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing rhythm */
  --section-y: clamp(4rem, 8vw, 7rem);
  --container: 1280px;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(61, 15, 61, 0.08);
  --shadow-med: 0 20px 50px rgba(61, 15, 61, 0.12);
  --shadow-deep: 0 30px 70px rgba(61, 15, 61, 0.18);
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle botanical texture over the whole site */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(139, 42, 139, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(139, 42, 139, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(251, 246, 251, 0.4) 100%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer, section, nav { position: relative; z-index: 1; }

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

/* ================================
   ANNOUNCEMENT BAR
   ================================ */
.announce {
  background: var(--plum-950);
  color: var(--lavender-200);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.announce strong { color: var(--lilac-300); font-weight: 700; }
.announce a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--lilac-400);
  padding-bottom: 1px;
  transition: border-color 0.3s;
}
.announce a:hover { border-bottom-color: var(--cream); }

/* ================================
   NAVIGATION
   ================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  background: rgba(253, 251, 253, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid rgba(139, 42, 139, 0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.nav-brand img { height: 46px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  color: var(--plum-800);
}
.nav-brand-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--plum-600);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--plum-800);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--plum-600);
  transition: width 0.4s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--plum-600); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--plum-700);
  color: var(--cream) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  border: 1px solid var(--plum-700);
}
.nav-cta:hover {
  background: var(--plum-900);
  border-color: var(--plum-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(61, 15, 61, 0.2);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--plum-800);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--paper); padding: 1.5rem 2rem 2rem; gap: 1.5rem; border-bottom: 1px solid var(--lavender-200); box-shadow: var(--shadow-soft); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-brand-tag { display: none; }
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--plum-700);
  color: var(--cream);
  border-color: var(--plum-700);
}
.btn-primary:hover {
  background: var(--plum-900);
  border-color: var(--plum-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(61, 15, 61, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--plum-700);
  border-color: var(--plum-500);
}
.btn-outline:hover {
  background: var(--lavender-100);
  border-color: var(--plum-700);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(236, 217, 236, 0.5);
}
.btn-ghost:hover {
  background: rgba(236, 217, 236, 0.1);
  border-color: var(--cream);
}

/* ================================
   TYPOGRAPHY & SECTION HEADERS
   ================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum-600);
  display: inline-block;
  margin-bottom: 1.25rem;
}
.eyebrow.underlined {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lilac-400);
}

.section {
  padding: var(--section-y) clamp(1.25rem, 4vw, 3rem);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 {
  font-family: var(--serif-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--plum-900);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}
.section-header h2 em {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 500;
  color: var(--plum-600);
}
.section-header p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--plum-800);
  line-height: 1.5;
}
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  color: var(--plum-500);
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  width: 50px; height: 1px;
  background: linear-gradient(to right, transparent, var(--plum-500), transparent);
}
.divider-ornament span { font-size: 1.1rem; }

/* ================================
   HERO
   ================================ */
.hero {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 7rem);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Large background watermark logo */
.hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(500px, 70vw, 900px);
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-logo img {
  width: 100%;
  height: auto;
  opacity: 0.045;
  filter: grayscale(30%);
  animation: gentleFloat 12s ease-in-out infinite;
}

/* Center content above watermark */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

/* Small elegant crest logo above headline */
.hero-crest {
  width: 110px;
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(107, 31, 107, 0.15));
  animation: gentlePulse 5s ease-in-out infinite;
}
@keyframes gentlePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.92; }
}

.hero h1 {
  font-family: var(--serif-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.0;
  color: var(--plum-900);
  font-weight: 400;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-family: var(--serif-body);
  font-style: italic;
  font-weight: 500;
  color: var(--plum-600);
}
.hero-tagline {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--plum-800);
  margin-bottom: 2.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 2rem;
  border-top: 1px solid var(--lavender-200);
}
.hero-stat-num {
  font-family: var(--serif-display);
  font-size: 2.2rem;
  color: var(--plum-700);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-600);
  font-weight: 600;
}

@keyframes gentleFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -52%) rotate(-0.5deg); }
}

/* ================================
   TRUST BAR
   ================================ */
.trust-bar {
  background: var(--lavender-100);
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--lavender-200);
  border-bottom: 1px solid var(--lavender-200);
}
.trust-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--plum-800);
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.1rem;
}
.trust-item svg { color: var(--plum-600); flex-shrink: 0; }

/* ================================
   SERVICES
   ================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--lavender-200);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--plum-700), var(--plum-500), var(--lilac-400));
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
  border-color: var(--lilac-300);
}
.service-icon {
  width: 60px; height: 60px;
  background: var(--lavender-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--plum-700);
}
.service-card h3 {
  font-family: var(--serif-display);
  font-size: 1.9rem;
  color: var(--plum-800);
  font-weight: 400;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.service-list li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.55;
}
.service-list li::before {
  content: "❋";
  position: absolute;
  left: 0;
  color: var(--plum-500);
  font-size: 0.9rem;
  top: 0.1rem;
}
.service-list strong { color: var(--plum-800); font-weight: 700; }
.service-list em {
  color: var(--plum-600);
  font-style: italic;
  font-family: var(--serif-body);
  font-size: 1.02em;
}
.service-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lavender-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.service-price {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  color: var(--plum-700);
}
.service-price small {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-600);
  font-weight: 600;
  display: block;
}
.service-link {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-700);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}
.service-link:hover { color: var(--plum-900); letter-spacing: 0.26em; }
.service-link::after { content: " →"; }

@media (max-width: 820px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem 2rem; }
}

/* ================================
   PROCESS
   ================================ */
.process {
  background: var(--lavender-100);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 30px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lilac-400) 20%, var(--lilac-400) 80%, transparent);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px; height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--lilac-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif-display);
  font-size: 1.4rem;
  color: var(--plum-700);
  box-shadow: 0 0 0 6px var(--lavender-100);
}
.step h4 {
  font-family: var(--serif-display);
  font-size: 1.35rem;
  color: var(--plum-900);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ================================
   WHY US (dark purple band)
   ================================ */
.why-us {
  background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 45%, var(--plum-700) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.07) 0%, transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(255,255,255,0.05) 0%, transparent 35%);
  pointer-events: none;
}
.why-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(236,217,236,0.04) 1px, transparent 1.5px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.6;
}
.why-us-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-us .section-header h2 { color: var(--cream); }
.why-us .section-header .eyebrow { color: var(--lilac-300); border-color: var(--lilac-400); }
.why-us .section-header p { color: var(--lavender-200); }
.why-us .divider-ornament { color: var(--lilac-400); }
.why-us .divider-ornament::before,
.why-us .divider-ornament::after {
  background: linear-gradient(to right, transparent, var(--lilac-400), transparent);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.reason {
  padding: 1.5rem 1.75rem;
  border-left: 1px solid rgba(236, 217, 236, 0.18);
}
.reason:first-child { border-left: none; }
.reason-number {
  font-family: var(--serif-display);
  font-size: 2.8rem;
  color: var(--lilac-300);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.reason h4 {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.reason p {
  font-size: 0.95rem;
  color: var(--lavender-200);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .reason { padding: 1.5rem 1rem; border-left: none; border-top: 1px solid rgba(236, 217, 236, 0.15); }
  .reason:first-child, .reason:nth-child(2) { border-top: none; }
}
@media (max-width: 500px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .reason { border-top: 1px solid rgba(236, 217, 236, 0.15); }
  .reason:first-child { border-top: none; }
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--lavender-200);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}
.testimonial .quote-mark {
  font-family: var(--serif-display);
  font-size: 4rem;
  color: var(--lilac-400);
  line-height: 0.6;
  margin-bottom: 1rem;
}
.testimonial blockquote {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lavender-200);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--lavender-200);
  color: var(--plum-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-display);
  font-size: 1.1rem;
}
.testimonial-name {
  font-weight: 700;
  color: var(--plum-800);
  font-size: 0.95rem;
}
.testimonial-meta {
  font-size: 0.78rem;
  color: var(--plum-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.9rem; margin-bottom: 1rem; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ================================
   FAQ
   ================================ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--lavender-200);
}
.faq-item summary {
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--serif-display);
  font-size: 1.3rem;
  color: var(--plum-900);
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--plum-600); }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif-display);
  font-size: 1.8rem;
  color: var(--plum-500);
  transition: transform 0.4s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--plum-700); }
.faq-answer {
  padding: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 700px;
}
.faq-answer p + p { margin-top: 1rem; }

/* ================================
   CTA BAND
   ================================ */
.cta-band {
  padding: var(--section-y) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  background:
    radial-gradient(ellipse at top, var(--lavender-100) 0%, transparent 60%),
    var(--paper);
}
.cta-band h2 {
  font-family: var(--serif-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--plum-900);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.cta-band h2 em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--plum-600);
  font-weight: 500;
}
.cta-band p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--plum-800);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn { margin: 0 0.4rem; }

/* ================================
   CONTACT / BOOKING PAGE
   ================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--serif-display);
  font-size: 2rem;
  color: var(--plum-900);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.contact-info > p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--plum-800);
  line-height: 1.6;
  margin-bottom: 2.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--lavender-200);
}
.contact-detail:last-child { border-bottom: 1px solid var(--lavender-200); }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--plum-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--plum-600);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-detail a, .contact-detail span {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  color: var(--plum-800);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-detail a:hover { color: var(--plum-600); }

.contact-form {
  background: #fff;
  border: 1px solid var(--lavender-200);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.contact-form h3 {
  font-family: var(--serif-display);
  font-size: 1.7rem;
  color: var(--plum-900);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact-form > p {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--plum-700);
  margin-bottom: 1.75rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-700);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--lavender-200);
  border-radius: 2px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--plum-500);
  box-shadow: 0 0 0 3px rgba(166, 75, 166, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-style: italic;
  font-family: var(--serif-body);
}
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid var(--success);
  border-radius: 2px;
  color: var(--success);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
}

/* ================================
   PRICING (dedicated page)
   ================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--lavender-200);
  padding: 3rem 2rem;
  border-radius: 4px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
}
.price-card.featured {
  border-color: var(--plum-500);
  box-shadow: var(--shadow-med);
  transform: translateY(-8px);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--plum-700);
  color: var(--cream);
  padding: 0.4rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}
.price-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.price-name {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  color: var(--plum-900);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.price-desc {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--plum-700);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.price-big {
  font-family: var(--serif-display);
  font-size: 3.5rem;
  color: var(--plum-800);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.price-big small {
  font-size: 1rem;
  color: var(--plum-600);
  font-family: var(--sans);
  font-weight: 500;
}
.price-per {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-600);
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.price-features {
  list-style: none;
  text-align: left;
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.price-features li {
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--plum-600);
  font-weight: 700;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: translateY(0); margin: 1rem 0; }
}

/* ================================
   ABOUT PAGE
   ================================ */
.about-hero {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-hero h1 {
  font-family: var(--serif-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--plum-900);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.about-hero h1 em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--plum-600);
  font-weight: 500;
}
.about-hero .lead {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--plum-800);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.story-text h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--plum-900);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.story-text h2 em {
  font-style: italic;
  font-family: var(--serif-body);
  color: var(--plum-600);
}
.story-text p {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.story-text p:first-of-type::first-letter {
  font-family: var(--serif-display);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  padding-right: 0.6rem;
  padding-top: 0.3rem;
  color: var(--plum-700);
}
.story-image {
  position: relative;
}
.story-image-inner {
  background: linear-gradient(135deg, var(--lavender-100), var(--lavender-200));
  border-radius: 4px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-med);
}
.story-image-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(139, 42, 139, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(107, 31, 107, 0.06) 0%, transparent 50%);
}
.story-image-inner img {
  max-width: 75%;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(107,31,107,0.18));
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-image-inner { aspect-ratio: 1/1; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
}
.value {
  text-align: center;
  padding: 2rem 1.5rem;
}
.value-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--plum-700);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--lilac-300);
}
.value h3 {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  color: var(--plum-900);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.value p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}
@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ================================
   PAGE BANNER (for sub-pages)
   ================================ */
.page-banner {
  background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-700) 100%);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.05) 0%, transparent 45%);
}
.page-banner-inner { position: relative; max-width: 800px; margin: 0 auto; z-index: 1; }
.page-banner-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(300px, 50vw, 500px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  filter: brightness(0) invert(1);
}
.page-banner .eyebrow { color: var(--lilac-300); }
.page-banner h1 {
  font-family: var(--serif-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.page-banner h1 em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--lilac-300);
  font-weight: 500;
}
.page-banner p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--lavender-200);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: var(--plum-950);
  color: var(--lavender-200);
  padding: 4rem clamp(1.25rem, 4vw, 3rem) 2rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(236, 217, 236, 0.1);
}
.footer-brand-block .footer-brand {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem;
}
.footer-brand-block .footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-brand-block .footer-brand span {
  font-family: var(--serif-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--cream);
}
.footer-brand-block p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--lavender-200);
  opacity: 0.85;
  max-width: 340px;
  font-family: var(--serif-body);
  font-style: italic;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lilac-300);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  color: var(--lavender-200);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  opacity: 0.85;
}
.footer-col a:hover { color: var(--cream); opacity: 1; }
.footer-col p {
  color: var(--lavender-200);
  opacity: 0.85;
  font-size: 0.92rem;
  line-height: 1.65;
  font-family: var(--serif-body);
  font-style: italic;
}
.footer-bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--lilac-400);
}
.footer-bottom em {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--lavender-200);
}
.footer-tagline {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand-block { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================
   REVEAL ANIMATION
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-logo-wrap img { animation: none; }
}

/* ================================
   CONTACT CHOOSER POPUP
   ================================ */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 8, 31, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.contact-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.contact-chooser {
  background: var(--paper);
  border: 1px solid var(--lavender-200);
  border-radius: 6px;
  padding: 2.5rem 2rem 2rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 30px 80px rgba(40, 8, 31, 0.35);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s ease;
  text-align: center;
}
.contact-overlay.open .contact-chooser {
  transform: translateY(0) scale(1);
}
.contact-chooser-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--plum-600);
  cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, color 0.3s;
}
.contact-chooser-close:hover {
  background: var(--lavender-100);
  color: var(--plum-900);
}
.contact-chooser h3 {
  font-family: var(--serif-display);
  font-size: 1.8rem;
  color: var(--plum-900);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.contact-chooser > p {
  font-family: var(--serif-body);
  font-style: italic;
  color: var(--plum-700);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--lavender-200);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s;
  background: #fff;
}
.contact-option:hover {
  border-color: var(--plum-500);
  background: var(--lavender-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 31, 107, 0.1);
}
.contact-option-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--lavender-100);
  color: var(--plum-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-option:hover .contact-option-icon {
  background: var(--lavender-200);
}
.contact-option-text { text-align: left; }
.contact-option-label {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--plum-900);
  margin-bottom: 2px;
}
.contact-option-value {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--plum-700);
}
.contact-chooser-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.25rem 0;
  color: var(--lilac-400);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-chooser-or::before,
.contact-chooser-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lavender-200);
}
.contact-chooser-form {
  margin-top: 0.25rem;
}
.contact-chooser-form .btn {
  width: 100%;
  text-align: center;
}

/* ================================
   CTA CONTACT INFO STRIP
   ================================ */
.cta-contact-strip {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--lavender-200);
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--plum-800);
  transition: color 0.3s;
}
.cta-contact-item:hover { color: var(--plum-600); }
.cta-contact-item svg { color: var(--plum-600); flex-shrink: 0; }
.cta-contact-item-info { text-align: left; }
.cta-contact-item-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--plum-600);
}
.cta-contact-item-value {
  font-family: var(--serif-display);
  font-size: 1.15rem;
  color: var(--plum-800);
}
.cta-contact-item:hover .cta-contact-item-value { color: var(--plum-600); }

/* On dark backgrounds */
.why-us .cta-contact-strip { border-top-color: rgba(236,217,236,0.2); }
.why-us .cta-contact-item { color: var(--lavender-200); }
.why-us .cta-contact-item:hover { color: var(--cream); }
.why-us .cta-contact-item svg { color: var(--lilac-400); }
.why-us .cta-contact-item-label { color: var(--lilac-300); }
.why-us .cta-contact-item-value { color: var(--lavender-200); }
.why-us .cta-contact-item:hover .cta-contact-item-value { color: var(--cream); }

@media (max-width: 500px) {
  .cta-contact-strip { flex-direction: column; align-items: center; gap: 1.25rem; }
}
