/* ============================================================
   DOCHELP — Shared Stylesheet
   Used across all pages: index, about, services, contact, etc.
   ============================================================ */

:root {
  --aubergine: #2D1B4E;
  --aubergine-deep: #1A0F2E;
  --royal: #5B2A8C;
  --orchid: #8B5FBF;
  --lilac: #B794D6;
  --cream: #F8F5F0;
  --cream-dim: #EFEAE2;
  --stone: #D4D2CD;
  --slate: #6B6862;
  --ink: #0A0A0F;

  --transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.serif {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.serif em, em {
  font-style: italic;
  font-variation-settings: 'SOFT' 80, 'opsz' 144;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) { .container { padding: 0 20px; } }

::selection { background: var(--royal); color: var(--cream); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all var(--transition);
  background: rgba(248, 245, 240, 0);
  backdrop-filter: blur(0px);
}

nav.scrolled {
  background: rgba(248, 245, 240, 0.88);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 27, 78, 0.08);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.03em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo-mark {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: var(--aubergine);
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text { display: inline-flex; line-height: 1; }
.logo-doc { color: var(--royal); }
.logo-help { color: var(--slate); }

@media (max-width: 640px) {
  .logo { font-size: 26px; gap: 11px; }
  .logo-mark { width: 40px; height: 40px; }
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.nav-links > li > a,
.nav-links > li > button {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 10px 16px;
  border-radius: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--royal);
}

.nav-links > li > a.active {
  color: var(--royal);
}

.nav-links > li > a.active::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--royal);
  border-radius: 50%;
  margin-left: 6px;
}

/* dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 4px;
  transition: transform 0.2s;
}

.has-dropdown.open .dropdown-toggle::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: var(--cream);
  border: 1px solid rgba(45, 27, 78, 0.08);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(45, 27, 78, 0.25);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}

.has-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--ink);
  border-radius: 10px;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--cream-dim);
}

.dropdown-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-weight: 500;
  font-size: 16px;
  color: var(--aubergine);
  margin-bottom: 2px;
}

.dropdown-desc {
  display: block;
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
}

.nav-cta {
  background: var(--aubergine) !important;
  color: var(--cream) !important;
  padding: 11px 22px !important;
  border-radius: 100px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--royal) !important;
  transform: translateY(-1px);
  color: var(--cream) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--aubergine);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(45, 27, 78, 0.08);
    align-items: stretch;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-links.open > li > a,
  .nav-links.open > li > button {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
  }

  .has-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--cream-dim);
    margin-top: 4px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    width: 100%;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 8px;
    text-align: center !important;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--aubergine);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--royal);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 27, 78, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--aubergine);
  border: 1.5px solid rgba(45, 27, 78, 0.2);
}

.btn-ghost:hover {
  border-color: var(--aubergine);
  background: rgba(45, 27, 78, 0.04);
}

.btn-cream {
  background: var(--cream);
  color: var(--aubergine);
}

.btn-cream:hover {
  background: var(--lilac);
  color: var(--aubergine-deep);
}

.btn-ghost-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(248, 245, 240, 0.3);
}

.btn-ghost-cream:hover {
  border-color: var(--cream);
  background: rgba(248, 245, 240, 0.05);
}

.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   PAGE HERO (used on inner pages, not homepage)
   ============================================================ */
.page-hero {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(91, 42, 140, 0.18) 0%, transparent 60%);
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 60%; height: 70%;
  background: radial-gradient(circle, rgba(183, 148, 214, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.page-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  text-decoration: none;
  color: var(--slate);
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--royal); }

.breadcrumb-sep {
  opacity: 0.4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(91, 42, 140, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(91, 42, 140, 0.15);
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--royal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 28px;
  color: var(--aubergine);
}

.page-hero h1 em { color: var(--royal); }

.page-hero-lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  max-width: 680px;
  color: var(--slate);
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 110px 0;
  position: relative;
}

@media (max-width: 768px) { section { padding: 70px 0; } }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(34px, 5vw, 60px);
  color: var(--aubergine);
  margin-bottom: 22px;
  max-width: 16ch;
}

.section-title em { color: var(--royal); }

.section-intro {
  font-size: 18px;
  color: var(--slate);
  max-width: 680px;
  line-height: 1.6;
}

.section-header-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

@media (max-width: 900px) {
  .section-header-2col { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   CARD GRID (used in many places)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(45, 27, 78, 0.1);
  border: 1px solid rgba(45, 27, 78, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.feature-card {
  background: var(--cream);
  padding: 46px 40px;
  transition: background var(--transition);
}

.feature-card:hover { background: var(--cream-dim); }

.feature-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--royal);
  margin-bottom: 26px;
  letter-spacing: 0.05em;
}

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-weight: 400;
  font-size: 26px;
  color: var(--aubergine);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER (reusable bottom-of-page CTA)
   ============================================================ */
.cta-banner {
  background: var(--aubergine);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 50%, rgba(139, 95, 191, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 75% 50%, rgba(91, 42, 140, 0.4) 0%, transparent 50%);
  opacity: 0.7;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1.05;
}

.cta-banner h2 em { color: var(--lilac); }

.cta-banner p {
  font-size: 18px;
  color: rgba(248, 245, 240, 0.75);
  margin-bottom: 38px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--aubergine-deep);
  color: var(--cream);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248, 245, 240, 0.1);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
  font-weight: 500;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cream);
}

.footer-mark svg { width: 100%; height: 100%; }

.footer-doc { color: var(--lilac); }
.footer-help { color: rgba(248, 245, 240, 0.55); }

.footer-tagline {
  color: rgba(248, 245, 240, 0.6);
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lilac);
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: rgba(248, 245, 240, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(248, 245, 240, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ALTERNATING BG SECTIONS (used to break visual monotony)
   ============================================================ */
.bg-cream { background: var(--cream); }
.bg-cream-dim { background: var(--cream-dim); }
.bg-aubergine { background: var(--aubergine); color: var(--cream); }
.bg-aubergine-deep { background: var(--aubergine-deep); color: var(--cream); }

.bg-aubergine .section-title,
.bg-aubergine-deep .section-title {
  color: var(--cream);
}

.bg-aubergine .section-title em,
.bg-aubergine-deep .section-title em {
  color: var(--lilac);
}

.bg-aubergine .section-intro,
.bg-aubergine-deep .section-intro {
  color: rgba(248, 245, 240, 0.75);
}

.bg-aubergine .section-eyebrow,
.bg-aubergine-deep .section-eyebrow {
  color: var(--lilac);
}

/* ============================================================
   CHECKLIST (used on service pages)
   ============================================================ */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
}

@media (max-width: 600px) {
  .checklist { grid-template-columns: 1fr; }
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--royal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='%23F8F5F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.bg-aubergine .checklist li,
.bg-aubergine-deep .checklist li {
  color: var(--cream);
}

/* ============================================================
   STATS BLOCK
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px 40px;
}

.stat-item {
  border-top: 1px solid rgba(248, 245, 240, 0.2);
  padding-top: 28px;
}

.bg-cream .stat-item, .bg-cream-dim .stat-item {
  border-top: 1px solid rgba(45, 27, 78, 0.15);
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-weight: 400;
  font-size: clamp(56px, 6vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 14px;
}

.bg-aubergine .stat-num,
.bg-aubergine-deep .stat-num { color: var(--cream); }

.bg-cream .stat-num,
.bg-cream-dim .stat-num { color: var(--aubergine); }

.bg-aubergine .stat-num em,
.bg-aubergine-deep .stat-num em { color: var(--lilac); }

.bg-cream .stat-num em,
.bg-cream-dim .stat-num em { color: var(--royal); }

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 8px;
}

.bg-aubergine .stat-label,
.bg-aubergine-deep .stat-label { color: var(--lilac); }

.bg-cream .stat-label,
.bg-cream-dim .stat-label { color: var(--royal); }

.stat-desc {
  font-size: 14px;
  line-height: 1.5;
}

.bg-aubergine .stat-desc,
.bg-aubergine-deep .stat-desc { color: rgba(248, 245, 240, 0.65); }

.bg-cream .stat-desc,
.bg-cream-dim .stat-desc { color: var(--slate); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  padding: 36px 28px 36px 0;
  border-top: 2px solid var(--aubergine);
  position: relative;
}

.bg-aubergine .process-step,
.bg-aubergine-deep .process-step {
  border-top-color: var(--lilac);
}

.process-step::before {
  content: '';
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  background: var(--royal);
  border-radius: 50%;
}

.process-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  color: var(--royal);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bg-aubergine .process-num,
.bg-aubergine-deep .process-num { color: var(--lilac); }

.process-step h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--aubergine);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.bg-aubergine .process-step h4,
.bg-aubergine-deep .process-step h4 { color: var(--cream); }

.process-step p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.bg-aubergine .process-step p,
.bg-aubergine-deep .process-step p { color: rgba(248, 245, 240, 0.7); }

/* ============================================================
   TAGS / PILLS
   ============================================================ */
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tag {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(45, 27, 78, 0.06);
  color: var(--aubergine);
  border: 1px solid rgba(45, 27, 78, 0.1);
}

.bg-aubergine .tag,
.bg-aubergine-deep .tag {
  background: rgba(248, 245, 240, 0.1);
  color: var(--cream);
  border-color: rgba(248, 245, 240, 0.2);
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 60, 'opsz' 144;
  font-style: italic;
  font-size: 22px;
  color: var(--aubergine);
  line-height: 1.45;
  padding-left: 24px;
  border-left: 2px solid var(--royal);
  max-width: 640px;
}

/* ============================================================
   2-COL CONTENT (used on service pages: text + sidebar)
   ============================================================ */
.split-2col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .split-2col { grid-template-columns: 1fr; gap: 50px; }
}

.split-2col h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--aubergine);
  margin-bottom: 24px;
  line-height: 1.1;
}

.split-2col h2 em { color: var(--royal); }

.split-2col h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--aubergine);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}

.split-2col p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 18px;
}

.split-sidebar {
  background: var(--cream-dim);
  border-radius: 20px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}

.split-sidebar h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--aubergine);
  margin-bottom: 18px;
}

.split-sidebar ul {
  list-style: none;
}

.split-sidebar li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--slate);
  border-bottom: 1px solid rgba(45, 27, 78, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.split-sidebar li:last-child { border-bottom: none; }

.split-sidebar li strong {
  color: var(--aubergine);
  font-weight: 600;
}

.sidebar-cta {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(45, 27, 78, 0.1);
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FORM
   ============================================================ */
.field { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }

/* form on aubergine bg */
.form-on-aubergine .field label { color: var(--lilac); }

.form-on-aubergine .field input,
.form-on-aubergine .field textarea,
.form-on-aubergine .field select {
  background: rgba(248, 245, 240, 0.05);
  border: 1px solid rgba(248, 245, 240, 0.15);
  color: var(--cream);
}

.form-on-aubergine .field input::placeholder,
.form-on-aubergine .field textarea::placeholder {
  color: rgba(248, 245, 240, 0.4);
}

.form-on-aubergine .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23B794D6' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-on-aubergine .field select option {
  background: var(--aubergine);
  color: var(--cream);
}

.form-on-aubergine .field input:focus,
.form-on-aubergine .field textarea:focus,
.form-on-aubergine .field select:focus {
  outline: none;
  border-color: var(--lilac);
  background: rgba(248, 245, 240, 0.08);
}

.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }

.form-success {
  display: none;
  padding: 30px;
  background: rgba(248, 245, 240, 0.1);
  border-radius: 12px;
  text-align: center;
}

.form-success.show { display: block; }

.form-success h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 400;
}

/* ============================================================
   SERVICES STACK (homepage redesign)
   Stacked editorial cards with abstract motifs
   ============================================================ */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 60px;
}

.svc-card {
  display: block;
  border-radius: 24px;
  padding: 56px 50px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(45, 27, 78, 0.25);
}

.svc-card-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.svc-card-motif {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.svc-card-motif svg {
  width: 90%;
  height: 90%;
  max-width: 380px;
  max-height: 380px;
  transform: translateX(15%);
}

.svc-eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  display: inline-block;
}

.svc-title {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.svc-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 540px;
}

.svc-cta {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.svc-cta::after {
  content: '→';
  transition: transform var(--transition);
}

.svc-card:hover .svc-cta::after { transform: translateX(5px); }

/* Card variants */
.svc-card.dark {
  background: var(--aubergine);
  color: var(--cream);
}
.svc-card.dark .svc-eyebrow { color: var(--lilac); }
.svc-card.dark .svc-title { color: var(--cream); }
.svc-card.dark .svc-desc { color: rgba(248, 245, 240, 0.78); }
.svc-card.dark .svc-cta { color: var(--lilac); }

.svc-card.cream {
  background: var(--cream);
  color: var(--ink);
  border-color: rgba(45, 27, 78, 0.08);
}
.svc-card.cream .svc-eyebrow { color: var(--royal); }
.svc-card.cream .svc-title { color: var(--aubergine); }
.svc-card.cream .svc-desc { color: var(--slate); }
.svc-card.cream .svc-cta { color: var(--royal); }

.svc-card.cream-dim {
  background: var(--cream-dim);
  color: var(--ink);
  border-color: rgba(45, 27, 78, 0.05);
}
.svc-card.cream-dim .svc-eyebrow { color: var(--royal); }
.svc-card.cream-dim .svc-title { color: var(--aubergine); }
.svc-card.cream-dim .svc-desc { color: var(--slate); }
.svc-card.cream-dim .svc-cta { color: var(--royal); }

.svc-card.lilac {
  background: var(--lilac);
  color: var(--aubergine-deep);
}
.svc-card.lilac .svc-eyebrow { color: var(--aubergine); }
.svc-card.lilac .svc-title { color: var(--aubergine-deep); }
.svc-card.lilac .svc-desc { color: rgba(26, 15, 46, 0.75); }
.svc-card.lilac .svc-cta { color: var(--aubergine-deep); }

.svc-card.deep {
  background: var(--aubergine-deep);
  color: var(--cream);
}
.svc-card.deep .svc-eyebrow { color: var(--lilac); }
.svc-card.deep .svc-title { color: var(--cream); }
.svc-card.deep .svc-desc { color: rgba(248, 245, 240, 0.78); }
.svc-card.deep .svc-cta { color: var(--lilac); }

/* Flagship card - taller */
.svc-card.flagship {
  padding: 72px 50px;
}
.svc-card.flagship .svc-title {
  font-size: clamp(32px, 4.5vw, 52px);
}

@media (max-width: 768px) {
  .svc-card { padding: 38px 28px; }
  .svc-card.flagship { padding: 48px 28px; }
  .svc-card-motif { width: 60%; opacity: 0.7; }
  .svc-card-motif svg { transform: translateX(25%); }
}

/* ============================================================
   HOMEPAGE HERO — Parallax layered version
   ============================================================ */
.hero-v2 {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--cream);
}

.hero-v2-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

/* Layer 1 — deepest (large soft gradients) */
.hero-layer-1 {
  background:
    radial-gradient(ellipse 70% 60% at 75% 25%, rgba(91, 42, 140, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 25% 75%, rgba(183, 148, 214, 0.28) 0%, transparent 60%);
  filter: blur(20px);
}

/* Layer 2 — architectural linework */
.hero-layer-2 {
  opacity: 0.4;
}

.hero-layer-2 svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}

/* Layer 3 — fine detail */
.hero-layer-3 {
  opacity: 0.5;
}

.hero-layer-3 svg {
  position: absolute;
  width: 60%;
  height: 70%;
  top: 8%;
  right: -8%;
}

/* Grain overlay */
.hero-v2-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

.hero-v2-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.hero-v2 h1 {
  font-size: clamp(44px, 7vw, 96px);
  margin-bottom: 32px;
  color: var(--aubergine);
  opacity: 0;
  animation: fadeUp 1s 0.4s ease forwards;
}

.hero-v2 h1 em { color: var(--royal); }

.hero-v2 p.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 44px;
  color: var(--slate);
  opacity: 0;
  animation: fadeUp 1s 0.6s ease forwards;
}

.hero-v2 .eyebrow { opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards; }

.hero-v2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease forwards;
}

.hero-v2-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-top: 50px;
  border-top: 1px solid rgba(45, 27, 78, 0.1);
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}

.hero-v2-stat-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  color: var(--aubergine);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-v2-stat-num em { color: var(--royal); }

.hero-v2-stat-label {
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
