@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --purple-dark: #351151;
  --purple: #59227f;
  --purple-bright: #7635a1;
  --lavender: #eee6f4;
  --ink: #17141b;
  --charcoal: #29252e;
  --white: #fff;
  --off-white: #faf9fc;
  --gray: #67616e;
  --border: #ddd6e3;
  --success: #19683c;
  --error: #a32938;
  --shadow: 0 20px 55px rgba(46, 18, 65, .1);
  --radius: 22px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #a45bd0; outline-offset: 3px; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  padding: .7rem 1rem; background: var(--ink); color: white;
}
.skip-link:focus { top: 1rem; }
.container { width: min(1160px, calc(100% - 2.4rem)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 2.4rem)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-sm { padding: 3rem 0; }
.muted-section { background: var(--off-white); }
.purple-section { background: var(--purple-dark); color: white; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--purple); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.purple-section .eyebrow, .hero .eyebrow { color: #d7bce8; }
h1, h2, h3 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  line-height: 1.03;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(3.4rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.7rem, 5vw, 4.25rem); }
h3 { font-size: clamp(1.7rem, 2.6vw, 2.15rem); }
p { margin: 0 0 1.2rem; }
.lede { max-width: 680px; color: var(--gray); font-size: clamp(1.05rem, 2vw, 1.24rem); }
.purple-section .lede, .hero .lede { color: rgba(255,255,255,.78); }
.section-heading { display: grid; gap: .8rem; margin-bottom: 2.6rem; }
.section-heading.center { justify-items: center; text-align: center; }
.section-heading.center .lede { margin-inline: auto; }

.topbar { background: var(--ink); color: rgba(255,255,255,.82); font-size: .76rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-list { display: flex; gap: 1.4rem; padding: 0; margin: 0; list-style: none; }
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(89,34,127,.1); backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 72px; height: 72px; border-radius: 50%; object-fit: contain; }
.nav { display: flex; align-items: center; gap: clamp(.8rem, 1.4vw, 1.5rem); }
.nav a { position: relative; font-size: .88rem; font-weight: 600; text-decoration: none; white-space: nowrap; }
.nav a:not(.button)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 2px;
  background: var(--purple); transition: right .2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.menu-toggle, .mobile-call { display: none; }

.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
  gap: .5rem; padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: 999px;
  background: var(--purple); color: white; font-weight: 700; line-height: 1.2;
  text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--purple-bright); box-shadow: 0 10px 25px rgba(89,34,127,.22); }
.button.light { background: white; color: var(--purple-dark); }
.button.outline { border-color: rgba(255,255,255,.55); background: transparent; color: white; }
.button.ghost { border-color: var(--border); background: transparent; color: var(--purple-dark); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.text-link { color: var(--purple); font-weight: 700; }

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(120deg, #211028 0%, var(--purple-dark) 48%, #66288c 100%);
  color: white;
}
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.hero::before { width: 720px; height: 720px; right: -170px; top: -330px; }
.hero::after { width: 520px; height: 520px; right: -70px; top: -230px; }
.hero-grid {
  min-height: 700px; display: grid; grid-template-columns: 1.25fr .75fr;
  align-items: center; gap: 4rem; padding: 5rem 0;
}
.hero h1 { max-width: 850px; }
.hero h1 em { color: #d9b7ea; font-style: italic; font-weight: 500; }
.hero-copy .lede { margin: 1.35rem 0 1.8rem; }
.trust-list { display: flex; flex-wrap: wrap; gap: .6rem 1.25rem; padding: 0; margin: 1.8rem 0 0; list-style: none; }
.trust-list li::before { content: "✓"; margin-right: .45rem; color: #d7bce8; font-weight: 800; }
.hero-mark {
  position: relative; display: grid; place-items: center; min-height: 430px;
}
.hero-mark::before {
  content: ""; position: absolute; inset: 7%; border: 1px solid rgba(255,255,255,.18);
  transform: rotate(8deg); border-radius: 36% 64% 48% 52%;
}
.hero-mark img {
  position: relative; width: min(360px, 85%); border-radius: 50%;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.hero-mark small {
  position: absolute; bottom: 4%; right: 0; padding: .8rem 1rem;
  border: 1px solid rgba(255,255,255,.22); background: rgba(16,7,20,.55);
  backdrop-filter: blur(8px); font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

.trust-strip { position: relative; z-index: 2; margin-top: -1px; background: white; border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.8rem; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--purple-dark); font-family: var(--serif); font-size: 1.4rem; }
.trust-item span { color: var(--gray); font-size: .85rem; }

.split { display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.comparison { display: grid; gap: 1rem; }
.comparison-card { padding: 1.5rem; border: 1px solid var(--border); border-radius: 18px; background: white; }
.comparison-card.before { color: var(--gray); }
.comparison-card.after { border-color: #c8a5db; background: var(--lavender); color: var(--purple-dark); }
.comparison-label { display: block; margin-bottom: .55rem; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }

.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card {
  padding: 1.6rem; border: 1px solid var(--border); border-radius: var(--radius);
  background: white; box-shadow: 0 8px 28px rgba(46,18,65,.04); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-icon {
  display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 1rem;
  border-radius: 50%; background: var(--lavender); color: var(--purple); font-weight: 800;
}
.card h3 { font-size: 1.65rem; }
.card p { color: var(--gray); font-size: .93rem; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.audience-card {
  position: relative; overflow: hidden; padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius); background: var(--charcoal); color: white;
}
.audience-card:nth-child(2) { background: var(--purple-dark); }
.audience-card ul, .check-grid { padding: 0; list-style: none; }
.audience-card ul { columns: 2; margin: 1.5rem 0; color: rgba(255,255,255,.76); }
.audience-card li::before, .check-grid li::before { content: "✓"; margin-right: .55rem; color: #c99ee0; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem 1rem; border-top: 1px solid var(--border); counter-increment: step; }
.step::before {
  content: "0" counter(step); display: block; margin-bottom: 1.2rem;
  color: var(--purple); font-family: var(--serif); font-size: 2rem;
}
.step h3 { font-size: 1.35rem; }
.step p { color: var(--gray); font-size: .86rem; }
.highlight {
  display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple-dark), #64278a); color: white;
}
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem 1rem; }
.quote { position: relative; }
.stars { color: #8a4cb2; letter-spacing: .15em; }
.quote cite { display: block; color: var(--gray); font-style: normal; font-size: .86rem; }
.badge {
  display: inline-flex; padding: .3rem .65rem; border-radius: 999px;
  background: var(--lavender); color: var(--purple-dark); font-size: .73rem; font-weight: 800;
}

.accordion { display: grid; gap: .75rem; }
.accordion-item { border: 1px solid var(--border); border-radius: 14px; background: white; overflow: hidden; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.35rem; border: 0; background: white; color: var(--ink);
  text-align: left; font-weight: 700;
}
.accordion-trigger::after { content: "+"; color: var(--purple); font-size: 1.5rem; font-weight: 400; }
.accordion-trigger[aria-expanded="true"]::after { content: "−"; }
.accordion-panel { padding: 0 1.35rem 1.2rem; color: var(--gray); }
.accordion-panel[hidden] { display: none; }

.page-hero {
  position: relative; overflow: hidden; padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #24102e, var(--purple-dark)); color: white;
}
.page-hero::after {
  content: ""; position: absolute; width: 520px; height: 520px; right: -160px; top: -300px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
}
.page-hero h1 { max-width: 900px; font-size: clamp(3.3rem, 7vw, 5.7rem); }
.breadcrumbs { display: flex; gap: .5rem; margin-bottom: 1.5rem; font-size: .8rem; color: rgba(255,255,255,.7); }
.breadcrumbs a { color: white; }
.service-detail { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.service-detail-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 4rem; }
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mini-block { padding: 1rem; border-left: 2px solid #c9a8db; background: var(--off-white); }
.mini-block strong { display: block; color: var(--purple-dark); }
.clean-list { padding-left: 1.2rem; color: var(--gray); }
.clean-list li { margin-bottom: .35rem; }
.owner-placeholder {
  min-height: 440px; display: grid; place-items: center; padding: 2rem; border: 1px dashed #bdaec5;
  border-radius: var(--radius); background: var(--off-white); color: var(--gray); text-align: center;
}
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.4rem; }
.area-card { padding: 2rem; border: 1px solid var(--border); border-radius: var(--radius); }
.area-list { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1rem 0; list-style: none; }
.area-list li { padding: .55rem .8rem; border: 1px solid var(--border); border-radius: 999px; }

.form-shell { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.field { display: grid; gap: .38rem; }
.field.full { grid-column: 1 / -1; }
.field label, legend { font-weight: 700; font-size: .88rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .72rem .85rem; border: 1px solid #bfb7c5;
  border-radius: 9px; background: white; color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); outline: 3px solid rgba(118,53,161,.14); }
.field-error { min-height: 1em; color: var(--error); font-size: .77rem; }
.invalid { border-color: var(--error) !important; }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; }
.checkbox input { margin-top: .45rem; }
.form-status { display: none; padding: 1rem; margin-bottom: 1rem; border-radius: 10px; }
.form-status.show { display: block; }
.form-status.success { background: #e4f5eb; color: var(--success); }
.form-status.error { background: #fbe8eb; color: var(--error); }
.independent-note { padding: 1rem; border-left: 3px solid var(--purple); background: var(--lavender); color: var(--purple-dark); font-size: .88rem; }

.final-cta { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--purple-dark); color: white; text-align: center; }
.final-cta p { color: rgba(255,255,255,.75); }
.final-cta .button-row { justify-content: center; }
.site-footer { padding: 4rem 0 1.2rem; background: #120e15; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; }
.footer-logo { width: 95px; height: 95px; border-radius: 50%; margin-bottom: 1rem; }
.footer-col h3 { color: white; font-family: var(--sans); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; margin: .35rem 0; color: rgba(255,255,255,.72); text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer-bottom p { margin: .3rem 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 62px; height: 62px; }
  .menu-toggle, .mobile-call {
    display: inline-flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center;
    border: 1px solid var(--border); border-radius: 50%; background: white; color: var(--purple-dark);
  }
  .mobile-call { margin-left: auto; text-decoration: none; }
  .menu-toggle span, .menu-toggle::before, .menu-toggle::after {
    content: ""; display: block; width: 20px; height: 2px; background: currentColor; transition: transform .2s ease;
  }
  .menu-toggle span { margin: 4px 0; }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
  .nav {
    position: fixed; inset: 78px 0 auto; display: grid; align-content: start; gap: 0;
    max-height: 0; overflow: hidden; padding: 0 1.2rem; background: white; box-shadow: var(--shadow);
    transition: max-height .28s ease, padding .28s ease;
  }
  .nav.open { max-height: calc(100vh - 78px); overflow-y: auto; padding-top: 1rem; padding-bottom: 1.5rem; }
  .nav a { padding: .85rem .2rem; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav .button { margin-top: .8rem; }
  .hero-grid { grid-template-columns: 1fr .55fr; gap: 1rem; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 1.4rem, 1160px); }
  .section { padding: 4rem 0; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding: 4.5rem 0; }
  .hero-mark { min-height: 280px; }
  .hero-mark img { width: 240px; }
  .hero-mark small { right: 5%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .split, .highlight, .service-detail-grid, .area-grid { grid-template-columns: 1fr; gap: 2rem; }
  .audience-grid, .mini-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 480px) {
  h1 { font-size: 3.15rem; }
  h2 { font-size: 2.55rem; }
  .hero-mark { min-height: 230px; }
  .hero-mark img { width: 200px; }
  .card-grid, .steps, .check-grid, .footer-grid { grid-template-columns: 1fr; }
  .audience-card ul { columns: 1; }
  .button-row .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
