/* ==========================================
       TOKENS
    ========================================== */
    :root {
      --bg:        #EDDFE1;
      --surface:   #F8F1F2;
      --surface2:  #ffffff;
      --sage:      #879B9A;
      --sage-light:#a8bcbb;
      --sage-dark: #6a7f7e;
      --rose:      #CFAAAD;
      --rose-dark: #b48a8d;
      --rose-deep: #9a6e71;
      --fg:        #2e2223;
      --fg2:       #5a4748;
      --muted:     #9a8283;
      --border:    #ddc8ca;
      --white:     #ffffff;
      --shadow:    rgba(46,34,35,0.08);
      --shadow2:   rgba(46,34,35,0.15);

      --f-display: 'Cormorant Garamond', Georgia, serif;
      --f-body:    'DM Sans', system-ui, sans-serif;
      --f-mono:    ui-monospace, monospace;
    }

    /* ==========================================
       RESET + BASE
    ========================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

    /* ==========================================
       GLOBAL UTILITY
    ========================================== */
    .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.72s cubic-bezier(.22,.68,0,1.2), transform 0.72s cubic-bezier(.22,.68,0,1.2);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.8s cubic-bezier(.22,.68,0,1.2), transform 0.8s cubic-bezier(.22,.68,0,1.2);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s cubic-bezier(.22,.68,0,1.2), transform 0.8s cubic-bezier(.22,.68,0,1.2);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* ==========================================
       SPARKLE CANVAS (hero bg)
    ========================================== */
    #sparkle-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    /* ==========================================
       FLOATING SPARKLE CSS
    ========================================== */
    @keyframes sparkle-float {
      0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0; }
      20%  { opacity: 1; }
      80%  { opacity: 0.7; }
      100% { transform: translateY(-80px) rotate(25deg) scale(0.5); opacity: 0; }
    }
    @keyframes sparkle-twinkle {
      0%, 100% { opacity: 0.2; transform: scale(0.8) rotate(0deg); }
      50%       { opacity: 1;   transform: scale(1.2) rotate(15deg); }
    }
    .sparkle {
      position: absolute;
      pointer-events: none;
      animation: sparkle-twinkle 2s ease-in-out infinite;
    }
    .sparkle svg path { fill: var(--rose); }

    /* ==========================================
       NAV
    ========================================== */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0;
      transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
    }
    .nav.scrolled {
      background: rgba(237,223,225,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo-mark {
      width: 38px;
      height: 38px;
      border: 1.5px solid var(--sage);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--rose-dark);
      font-family: var(--f-display);
      font-size: 22px;
      font-weight: 400;
      font-style: italic;
      line-height: 1;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.3s;
    }
    .nav-logo:hover .nav-logo-mark {
      transform: rotate(-5deg) scale(1.08);
      background: var(--surface);
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-text strong {
      font-family: var(--f-display);
      font-size: 20px;
      font-weight: 500;
      color: var(--rose-dark);
      letter-spacing: -0.01em;
    }
    .nav-logo-text span {
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 500;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--fg2);
      position: relative;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 100%;
      height: 1px;
      background: var(--rose-dark);
      transition: right 0.3s cubic-bezier(.22,.68,0,1.2);
    }
    .nav-links a:hover { color: var(--rose-dark); }
    .nav-links a:hover::after { right: 0; }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--sage);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 999px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .nav-cta::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transition: left 0.5s;
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(135,155,154,0.4); }
    .nav-cta:hover::before { left: 180%; }
    .nav-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 8px;
      cursor: pointer;
    }
    .nav-menu-btn span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--fg);
      transition: all 0.3s;
    }

    /* Mobile nav */
    .nav-mobile {
      display: none;
      position: fixed;
      inset: 0;
      top: 72px;
      background: var(--bg);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .nav-mobile.open { display: flex; }
    .nav-mobile a {
      font-family: var(--f-display);
      font-size: 36px;
      font-style: italic;
      color: var(--rose-dark);
      font-weight: 400;
    }

    /* ==========================================
       HERO
    ========================================== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 72px;
    }
    .hero-bg-circles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .hero-bg-circles circle { opacity: 0.07; }
    @keyframes circle-drift {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(20px, -30px) scale(1.04); }
      100% { transform: translate(0, 0) scale(1); }
    }
    .hero-bg-circles .c1 { animation: circle-drift 12s ease-in-out infinite; }
    .hero-bg-circles .c2 { animation: circle-drift 16s ease-in-out infinite reverse; }

    .hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding: 80px 0;
    }
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 24px;
    }
    .hero-label::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--sage);
    }
    .hero-title {
      font-family: var(--f-display);
      font-size: clamp(52px, 6vw, 88px);
      font-weight: 400;
      line-height: 1.04;
      letter-spacing: -0.02em;
      color: var(--fg);
      margin-bottom: 28px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--rose-dark);
      display: block;
    }
    .hero-sub {
      font-size: 17px;
      line-height: 1.7;
      color: var(--fg2);
      max-width: 440px;
      margin-bottom: 48px;
      font-weight: 300;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--rose-dark);
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 32px;
      border-radius: 999px;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.3s;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(180,138,141,0.4); }
    .btn-primary:hover::after { left: 200%; }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--sage-dark);
      border-bottom: 1px solid currentColor;
      padding-bottom: 2px;
      transition: gap 0.2s, color 0.2s;
    }
    .btn-secondary:hover { gap: 14px; color: var(--rose-dark); }
    .btn-secondary svg { transition: transform 0.2s; }
    .btn-secondary:hover svg { transform: translateX(3px); }

    /* Hero visual */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-card-stack {
      position: relative;
      width: 380px;
      height: 460px;
    }
    .hero-card {
      position: absolute;
      border-radius: 24px;
      overflow: hidden;
      background: var(--surface);
    }
    .hero-card-main {
      width: 300px;
      height: 380px;
      top: 40px;
      left: 40px;
      box-shadow: 0 24px 64px var(--shadow2);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--white);
      border: 1px solid var(--border);
    }
    .hero-card-back {
      width: 280px;
      height: 360px;
      top: 10px;
      left: 10px;
      background: var(--bg);
      border: 1px solid var(--border);
      z-index: 1;
      transform: rotate(-5deg);
    }
    .hero-card-back2 {
      width: 280px;
      height: 360px;
      top: 20px;
      right: 0;
      background: var(--sage-light);
      opacity: 0.3;
      z-index: 0;
      transform: rotate(4deg);
    }
    .hero-card-inner {
      padding: 40px 32px;
      text-align: center;
    }
    .hero-card-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .hero-card-title {
      font-family: var(--f-display);
      font-size: 28px;
      font-weight: 500;
      font-style: italic;
      color: var(--rose-dark);
      margin-bottom: 10px;
    }
    .hero-card-sub {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage);
      font-weight: 500;
    }
    .hero-card-divider {
      width: 40px;
      height: 1px;
      background: var(--border);
      margin: 20px auto;
    }
    .hero-card-stats {
      display: flex;
      gap: 24px;
      justify-content: center;
    }
    .hero-card-stat strong {
      display: block;
      font-family: var(--f-display);
      font-size: 28px;
      font-weight: 600;
      color: var(--sage-dark);
    }
    .hero-card-stat span {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* Floating badge */
    @keyframes badge-bob {
      0%, 100% { transform: translateY(0) rotate(-3deg); }
      50%       { transform: translateY(-8px) rotate(-3deg); }
    }
    .hero-badge {
      position: absolute;
      bottom: 20px;
      right: 0px;
      background: var(--sage);
      color: var(--white);
      border-radius: 16px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 12px 32px rgba(135,155,154,0.35);
      z-index: 10;
      animation: badge-bob 4s ease-in-out infinite;
    }
    .hero-badge-icon {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .hero-badge-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
    }
    .hero-badge-text span {
      font-size: 11px;
      color: rgba(255,255,255,0.75);
    }

    /* Hero sparkles (decorative) */
    .hero-sparkle-group {
      position: absolute;
      top: 60px;
      right: 80px;
      pointer-events: none;
    }
    @keyframes twink1 {
      0%,100% { opacity:0.3; transform: scale(0.8); }
      50%      { opacity:1; transform: scale(1.1); }
    }
    @keyframes twink2 {
      0%,100% { opacity:0.5; transform: scale(1); }
      60%     { opacity:0.1; transform: scale(0.7); }
    }
    .hs1 { animation: twink1 2s ease-in-out infinite; }
    .hs2 { animation: twink1 3s ease-in-out 0.5s infinite; }
    .hs3 { animation: twink2 2.5s ease-in-out 1s infinite; }

    /* Hero scroll indicator */
    @keyframes scroll-bob {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }
    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--rose), transparent);
      animation: scroll-bob 2s ease-in-out infinite;
    }

    /* ==========================================
       SERVICES STRIP (above-fold social proof)
    ========================================== */
    .services-strip {
      background: var(--sage);
      padding: 20px 0;
      overflow: hidden;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .services-marquee {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee 30s linear infinite;
    }
    .services-marquee-inner {
      display: flex;
      align-items: center;
      gap: 40px;
      padding-right: 40px;
      white-space: nowrap;
    }
    .services-marquee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .services-marquee-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
    }

    /* ==========================================
       SECTION SHARED
    ========================================== */
    section { padding: 100px 0; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 16px;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--sage);
    }
    .section-title {
      font-family: var(--f-display);
      font-size: clamp(38px, 4vw, 56px);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--fg);
      margin-bottom: 20px;
    }
    .section-title em { font-style: italic; color: var(--rose-dark); }
    .section-lead {
      font-size: 16px;
      line-height: 1.75;
      color: var(--fg2);
      max-width: 520px;
      font-weight: 300;
    }

    /* ==========================================
       WHAT WE DO — SERVICES
    ========================================== */
    .services { background: var(--surface); }
    .services-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .services-header .section-lead { margin: 0 auto; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform 0.35s cubic-bezier(.22,.68,0,1.4), box-shadow 0.35s, border-color 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--bg) 0%, transparent 80%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 56px var(--shadow2);
      border-color: var(--rose);
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      position: relative;
      z-index: 1;
      transition: transform 0.3s, background 0.3s;
    }
    .service-card:hover .service-icon {
      transform: rotate(-8deg) scale(1.08);
      background: var(--surface);
    }
    .service-name {
      font-family: var(--f-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--fg);
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .service-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--fg2);
      position: relative;
      z-index: 1;
      font-weight: 300;
    }
    .service-card-sparkles {
      position: absolute;
      top: 16px;
      right: 16px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover .service-card-sparkles { opacity: 1; }

    /* ==========================================
       HOW IT WORKS
    ========================================== */
    .process { background: var(--bg); }
    .process-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 48px;
    }
    .process-step {
      display: flex;
      gap: 24px;
      position: relative;
      padding-bottom: 40px;
    }
    .process-step:last-child { padding-bottom: 0; }
    .process-step-line {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }
    .process-step-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--rose);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-size: 18px;
      font-weight: 500;
      font-style: italic;
      color: var(--rose-dark);
      flex-shrink: 0;
      background: var(--white);
      transition: background 0.3s, color 0.3s;
      position: relative;
      z-index: 1;
    }
    .process-step:hover .process-step-num {
      background: var(--rose-dark);
      color: var(--white);
    }
    .process-step-connector {
      width: 1px;
      flex: 1;
      background: linear-gradient(to bottom, var(--border), transparent);
      margin-top: 4px;
      min-height: 30px;
    }
    .process-step:last-child .process-step-connector { display: none; }
    .process-step-content { padding-top: 8px; }
    .process-step-title {
      font-family: var(--f-display);
      font-size: 22px;
      font-weight: 500;
      color: var(--fg);
      margin-bottom: 8px;
    }
    .process-step-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--fg2);
      font-weight: 300;
    }

    /* Process visual */
    .process-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .process-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 16px 48px var(--shadow);
    }
    .process-card-title {
      font-family: var(--f-display);
      font-size: 14px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 32px;
    }
    .checklist-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      color: var(--fg2);
      transition: color 0.2s;
    }
    .checklist-item:last-child { border-bottom: 0; }
    .checklist-item:hover { color: var(--fg); }
    .check-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--rose);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
    }
    .checklist-item:hover .check-icon { background: var(--rose); }


    /* ==========================================
       FOUNDER / OUR STORY
    ========================================== */
    .founder { background: var(--surface); }
    .founder-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 88px;
      align-items: center;
    }
    .founder-visual {
      position: relative;
      max-width: 480px;
      margin: 0 auto;
    }
    .founder-photo-wrap {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      background: var(--bg);
      border: 1px solid var(--border);
      box-shadow: 0 24px 64px var(--shadow2);
      aspect-ratio: 1 / 1.08;
    }
    .founder-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: grayscale(100%);
      transform: scale(1.01);
      transition: transform 0.6s cubic-bezier(.22,.68,0,1.2), filter 0.4s ease;
    }
    .founder-photo-wrap:hover .founder-photo {
      transform: scale(1.035);
      filter: grayscale(82%);
    }
    .founder-frame {
      position: absolute;
      inset: 18px -18px -18px 18px;
      border: 1.5px solid var(--rose);
      border-radius: 28px;
      pointer-events: none;
      z-index: 0;
      opacity: 0.8;
    }
    .founder-photo-wrap { z-index: 1; }
    .founder-badge {
      position: absolute;
      right: -34px;
      bottom: 34px;
      z-index: 2;
      width: 168px;
      padding: 18px 18px 16px;
      border-radius: 18px;
      background: var(--sage);
      color: var(--white);
      box-shadow: 0 14px 36px rgba(135,155,154,0.32);
    }
    .founder-badge-mark {
      display: block;
      font-family: var(--f-display);
      font-size: 30px;
      line-height: 1;
      font-style: italic;
      margin-bottom: 8px;
    }
    .founder-badge strong {
      display: block;
      font-size: 11px;
      line-height: 1.35;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .founder-copy .section-title { margin-bottom: 26px; }
    .founder-copy p {
      font-size: 16px;
      line-height: 1.85;
      color: var(--fg2);
      font-weight: 300;
      margin-bottom: 18px;
      max-width: 590px;
    }
    .founder-copy p strong { color: var(--fg); font-weight: 600; }
    .founder-quote {
      margin-top: 30px;
      padding: 24px 0 0 24px;
      border-left: 2px solid var(--rose);
      font-family: var(--f-display);
      font-size: 25px;
      line-height: 1.45;
      font-style: italic;
      color: var(--rose-dark);
      max-width: 520px;
    }
    .founder-signoff {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      color: var(--sage-dark);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .founder-signoff::before {
      content: '';
      width: 34px;
      height: 1px;
      background: currentColor;
    }

    /* ==========================================
       WHY CHOOSE US
    ========================================== */
    .why { background: var(--surface); }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 40px;
    }
    .why-item { display: flex; flex-direction: column; gap: 10px; }
    .why-item-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: var(--bg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.3s;
    }
    .why-item:hover .why-item-icon {
      transform: scale(1.1) rotate(-5deg);
      background: var(--surface);
    }
    .why-item-title {
      font-family: var(--f-display);
      font-size: 19px;
      font-weight: 500;
      color: var(--fg);
    }
    .why-item-desc {
      font-size: 13.5px;
      line-height: 1.7;
      color: var(--fg2);
      font-weight: 300;
    }
    .why-visual {
      position: relative;
    }
    .why-big-num {
      font-family: var(--f-display);
      font-size: clamp(100px, 14vw, 180px);
      font-weight: 400;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--rose);
      line-height: 1;
      position: absolute;
      top: -40px;
      right: -20px;
      pointer-events: none;
      user-select: none;
    }
    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 16px 48px var(--shadow);
      position: relative;
      z-index: 1;
    }
    .why-card-quote {
      font-family: var(--f-display);
      font-size: 64px;
      line-height: 1;
      color: var(--rose);
      margin-bottom: 16px;
    }
    .why-card-text {
      font-family: var(--f-display);
      font-size: 22px;
      font-style: italic;
      font-weight: 400;
      color: var(--fg);
      line-height: 1.5;
      margin-bottom: 32px;
    }
    .why-card-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .why-card-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-size: 20px;
      font-style: italic;
      color: var(--rose-dark);
    }
    .why-card-author-info strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
    }
    .why-card-author-info span {
      font-size: 12px;
      color: var(--muted);
    }
    .why-stars {
      display: flex;
      gap: 2px;
      color: var(--rose-dark);
      font-size: 14px;
      margin-top: 4px;
    }

    /* ==========================================
       TESTIMONIALS
    ========================================== */
    .testimonials { background: var(--bg); }
    .testimonials-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }
    .testimonials-nav {
      display: flex;
      gap: 10px;
    }
    .testimonials-nav button {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--fg2);
      transition: all 0.2s;
    }
    .testimonials-nav button:hover {
      background: var(--sage);
      border-color: var(--sage);
      color: var(--white);
      transform: scale(1.05);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px var(--shadow2);
    }
    .t-stars {
      display: flex;
      gap: 3px;
      font-size: 16px;
    }
    .t-text {
      font-family: var(--f-display);
      font-size: 18px;
      font-style: italic;
      font-weight: 400;
      line-height: 1.6;
      color: var(--fg);
      flex: 1;
    }
    .t-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .t-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-size: 18px;
      font-style: italic;
      color: var(--rose-dark);
      flex-shrink: 0;
    }
    .t-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--fg);
    }
    .t-location {
      font-size: 12px;
      color: var(--muted);
    }
    .t-featured {
      border-color: var(--rose);
      background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
    }

    /* ==========================================
       BEFORE / AFTER TEASER (Results)
    ========================================== */
    .results { background: var(--surface); }
    .results-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .results-header .section-lead { margin: 0 auto; }
    .results-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .result-item {
      border-radius: 20px;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .result-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px var(--shadow2);
    }
    .result-img {
      height: 220px;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .result-img-inner {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-size: 48px;
      font-style: italic;
      color: var(--rose);
      opacity: 0.4;
    }
    /* Animated shine on hover */
    .result-img::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.6s;
    }
    .result-item:hover .result-img::after { left: 200%; }
    .result-info { padding: 24px; }
    .result-tag {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage-dark);
      font-weight: 600;
      margin-bottom: 8px;
    }
    .result-name {
      font-family: var(--f-display);
      font-size: 20px;
      font-weight: 500;
      color: var(--fg);
    }

    /* ==========================================
       CTA BANNER
    ========================================== */
    .cta-banner {
      background: var(--sage);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-banner-circles {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .cta-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 20px;
    }
    .cta-title {
      font-family: var(--f-display);
      font-size: clamp(44px, 5vw, 72px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }
    .cta-title em { font-style: italic; color: var(--bg); }
    .cta-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      font-weight: 300;
      max-width: 480px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--sage-dark);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 999px;
      overflow: hidden;
      position: relative;
      transition: transform 0.2s, box-shadow 0.3s;
    }
    .btn-cta-white::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(135,155,154,0.1), transparent);
      transition: left 0.6s;
    }
    .btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
    .btn-cta-white:hover::after { left: 200%; }
    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--white);
      font-size: 14px;
      font-weight: 500;
      border: 1.5px solid rgba(255,255,255,0.5);
      padding: 16px 36px;
      border-radius: 999px;
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-cta-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

    /* ==========================================
       CONTACT
    ========================================== */
    .contact { background: var(--bg); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }
    .contact-info { padding-top: 8px; }
    .contact-info-items {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 40px;
    }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .contact-info-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-info-text strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--fg);
      margin-bottom: 2px;
    }
    .contact-info-text a, .contact-info-text span {
      font-size: 14px;
      color: var(--fg2);
      font-weight: 300;
      transition: color 0.2s;
    }
    .contact-info-text a:hover { color: var(--rose-dark); }

    /* Social links */
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 40px;
    }
    .social-link {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--fg2);
      transition: all 0.2s;
    }
    .social-link:hover {
      background: var(--rose-dark);
      border-color: var(--rose-dark);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* Form */
    .contact-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 16px 48px var(--shadow);
    }
    .form-title {
      font-family: var(--f-display);
      font-size: 28px;
      font-weight: 500;
      color: var(--fg);
      margin-bottom: 32px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }
    .form-group label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--fg2);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 14px 16px;
      background: var(--surface);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      font-family: var(--f-body);
      font-size: 15px;
      color: var(--fg);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--rose);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(207,170,173,0.2);
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--muted); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--rose-dark);
      color: var(--white);
      font-family: var(--f-body);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 12px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .form-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    }
    .form-submit::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
      transition: left 0.6s;
    }
    .form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(180,138,141,0.4); }
    .form-submit:disabled { opacity: 0.72; cursor: wait; transform: none; box-shadow: none; }
    .form-submit:hover::after { left: 200%; }

    /* Form feedback */
    .form-status {
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.6;
      text-align: left;
    }
    .form-status.show { display: block; }
    .form-status.success {
      background: rgba(135,155,154,0.14);
      border: 1px solid rgba(135,155,154,0.38);
      color: var(--sage-dark);
    }
    .form-status.error {
      background: rgba(207,170,173,0.16);
      border: 1px solid rgba(180,138,141,0.42);
      color: var(--rose-deep);
    }
    .form-fallback {
      display: none;
      margin-top: 12px;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .form-fallback.show { display: flex; }
    .form-fallback a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--fg2);
      font-size: 12px;
      font-weight: 600;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .form-fallback a:hover {
      background: var(--white);
      border-color: var(--rose);
      color: var(--rose-dark);
    }

    /* ==========================================
       FOOTER
    ========================================== */
    footer {
      background: var(--fg);
      padding: 80px 0 40px;
      color: rgba(255,255,255,0.7);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }
    .footer-brand-name {
      font-family: var(--f-display);
      font-size: 28px;
      font-weight: 400;
      font-style: italic;
      color: var(--rose);
      margin-bottom: 8px;
    }
    .footer-brand-sub {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sage-light);
      margin-bottom: 20px;
    }
    .footer-brand-desc {
      font-size: 13.5px;
      line-height: 1.7;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
      max-width: 260px;
    }
    .footer-col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-col ul a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--rose); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
    }
    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }
    .footer-social-link {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.5);
      transition: all 0.2s;
    }
    .footer-social-link:hover {
      background: var(--rose);
      border-color: var(--rose);
      color: var(--white);
    }

    /* ==========================================
       SPARKLE CURSOR TRAIL
    ========================================== */
    .cursor-trail {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
    }
    .cursor-dot {
      position: absolute;
      width: 6px;
      height: 6px;
      background: var(--rose);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      animation: cursor-fade 0.6s ease-out forwards;
    }
    @keyframes cursor-fade {
      from { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
      to   { opacity: 0; transform: translate(-50%, -80%) scale(0.2); }
    }

    /* ==========================================
       RESPONSIVE
    ========================================== */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-inner { gap: 48px; }
      .hero-card-stack { width: 320px; height: 400px; }
      .hero-card-main { width: 260px; height: 340px; }
      .hero-card-back { width: 240px; height: 320px; }
    }
    @media (max-width: 768px) {
      section { padding: 72px 0; }
      .nav-links, .nav-cta { display: none; }
      .nav-menu-btn { display: flex; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
      .hero-sub { margin: 0 auto 40px; }
      .hero-actions { justify-content: center; }
      .hero-visual { display: none; }
      .hero-scroll { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .process-inner { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .founder-grid { grid-template-columns: 1fr; gap: 56px; }
      .founder-visual { max-width: 430px; }
      .founder-badge { right: -12px; }
      .why-list { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .results-row { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .testimonials-header { flex-direction: column; gap: 20px; align-items: flex-start; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
      .contact-form { padding: 32px 24px; }
      .hero-title { font-size: 48px; }
      .founder-badge { right: 12px; bottom: 18px; width: 148px; padding: 14px; }
      .founder-frame { inset: 12px -8px -10px 12px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      .cursor-trail { display: none; }
    }
    @media (hover: none), (pointer: coarse) {
      .cursor-trail { display: none; }
    }
