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

  :root {
    --cream: #faf7f2;
    --parchment: #f2ebe0;
    --bark: #3d2e24;
    --bark-mid: #5c4436;
    --bark-light: #755a4a;
    --blush: #d4a5a0;
    --blush-dim: #be8d88;
    --blush-text: #ab4949;
    --blush-pale: #f0dbd9;
    --sage: #8fa888;
    --sage-pale: #dde8db;
    --dusty: #c4b5a8;
    --dusty-text: #75604f;
    --border: rgba(61,46,36,0.12);
    --border-med: rgba(61,46,36,0.2);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --font-italic: 'Cormorant Garamond', serif;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }

  body {
    background: var(--cream);
    color: var(--bark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    cursor: none;
    position: relative;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--blush);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.2s;
  }
  .cursor-ring {
    position: fixed;
    width: 32px; height: 32px;
    border: 1px solid var(--blush);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s, height 0.35s, border-color 0.3s;
    opacity: 0.5;
  }
  .cursor.hover { width: 6px; height: 6px; background: var(--bark); }
  .cursor-ring.hover { width: 44px; height: 44px; border-color: var(--bark); opacity: 0.25; }

  /* Petal texture overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.018'/%3E%3C/svg%3E");
    background-size: 400px;
    pointer-events: none;
    z-index: 9990;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3.5rem;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--bark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .nav-logo-flower { color: var(--blush); font-style: italic; }

  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bark-light);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blush-text); }

  .nav-cta {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark);
    padding: 0.65rem 1.5rem;
    text-decoration: none;
    transition: background 0.25s;
    cursor: none;
  }
  .nav-cta:hover { background: var(--bark-mid); }

  /* HERO */
  #home {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 4.5rem;
    overflow: hidden;
    background: var(--cream);
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 6rem 3.5rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--blush-text);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 2.5rem; height: 1px;
    background: var(--blush);
  }

  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7.5vw, 8rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.01em;
    color: var(--bark);
    margin-bottom: 0.5rem;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--blush-text);
    font-weight: 300;
    display: block;
  }

  .hero-divider {
    width: 3rem;
    height: 1px;
    background: var(--dusty);
    margin: 2rem 0;
  }

  .hero-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--bark-light);
    max-width: 38ch;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .hero-actions { display: flex; align-items: center; gap: 1.5rem; }

  .btn-primary {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark);
    padding: 1rem 2.25rem;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s;
    cursor: none;
  }
  .btn-primary:hover { background: var(--bark-mid); }

  .btn-ghost {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark-mid);
    background: transparent;
    border: 1px solid var(--border-med);
    padding: 1rem 2.25rem;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s;
    display: inline-block;
    cursor: none;
  }
  .btn-ghost:hover { border-color: var(--blush); color: var(--blush-text); }

  .hero-right {
    background: var(--parchment);
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    min-height: 100%;
  }

  .hero-flower-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-stats {
    position: absolute;
    bottom: 3rem;
    left: 3.5rem;
    display: flex;
    gap: 3rem;
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--bark);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark-light);
    margin-top: 0.25rem;
    font-weight: 400;
  }

  /* Marquee */
  .hero-marquee {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--blush);
    padding: 0.65rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-track {
    display: inline-block;
    animation: marquee 28s linear infinite;
  }
  .marquee-track span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 0 2rem;
  }
  .marquee-track .dot { color: rgba(250,247,242,0.4); margin: 0 0.5rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTIONS */
  section { padding: 7rem 3.5rem; position: relative; }

  .section-eyebrow {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--blush-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .section-eyebrow::before { content: '—'; opacity: 0.5; }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 0.94;
    letter-spacing: -0.01em;
    color: var(--bark);
    margin-bottom: 1rem;
  }
  .section-title em { font-style: italic; color: var(--blush-text); }

  .section-sub {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--bark-light);
    max-width: 46ch;
    line-height: 1.8;
  }

  /* SERVICES */
  #services { background: var(--parchment); }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4.5rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
  }
  .service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--blush);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .service-card:hover { border-color: var(--blush-pale); }
  .service-card:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(212,165,160,0.15);
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: rgba(212,165,160,0.3); }

  .service-petal {
    width: 2rem; height: 2rem;
    margin-bottom: 1.25rem;
    opacity: 0.7;
  }

  .service-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--bark);
    margin-bottom: 0.75rem;
  }

  .service-desc {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .service-tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .service-tag::before {
    content: '';
    display: inline-block;
    width: 0.85rem;
    height: 1px;
    background: var(--blush-dim);
  }

  /* MEET DR. LAURA */
  .meet-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
    margin-top: 0;
  }

  .meet-photo-col { display: flex; flex-direction: column; gap: 2rem; }

  .meet-photo-frame {
    border: 1px solid var(--border);
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--parchment);
  }

  .meet-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .meet-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1rem;
    border: 2px dashed var(--border-med);
    margin: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
  }

  .meet-photo-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dusty-text);
    font-weight: 400;
  }

  .meet-credentials { display: flex; flex-direction: column; gap: 0; }

  .meet-cred-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .meet-cred-item:first-child { border-top: 1px solid var(--border); }

  .meet-cred-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.2rem;
  }

  .meet-cred-sub {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--bark-light);
  }

  .meet-content-col { padding-top: 1rem; }

  .meet-divider {
    width: 3rem; height: 1px;
    background: var(--blush);
    margin: 1.5rem 0 2rem;
  }

  .meet-bio {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    max-width: 52ch;
  }

  .meet-sig {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--blush-text);
    margin-top: 0.5rem;
  }

  /* STANDARD PROCESS */
  .sp-block {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
  }

  .sp-header { margin-bottom: 2.5rem; }

  .sp-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--bark);
    margin-bottom: 1rem;
  }
  .sp-title em { font-style: italic; color: var(--blush-text); }

  .sp-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--bark-light);
    max-width: 64ch;
    line-height: 1.8;
  }

  .sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .sp-card {
    background: var(--parchment);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: border-color 0.25s, transform 0.25s;
    cursor: default;
  }
  .sp-card:hover { border-color: var(--blush-pale); transform: translateY(-3px); }

  .sp-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
  }

  .sp-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.35rem;
  }

  .sp-detail {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.6;
  }

  .sp-note {
    font-size: 0.78rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dusty-text);
    border-left: 2px solid var(--blush-pale);
    padding-left: 1rem;
    line-height: 1.7;
    max-width: 60ch;
  }

  /* STANDARD PROCESS */
  .activator-block {
    margin-top: 5rem;
    border-top: 1px solid var(--border);
    padding-top: 4rem;
  }

  .activator-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .activator-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--bark);
    margin-bottom: 1.25rem;
  }
  .activator-title em { font-style: italic; color: var(--blush-text); }

  .activator-deco { display: block; margin-bottom: 0; }

  .activator-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--bark-light);
    line-height: 1.85;
  }

  .activator-cta {
    display: inline-block;
    margin-top: 1.75rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark-mid);
    text-decoration: none;
    border-bottom: 1px solid var(--blush);
    padding-bottom: 0.2rem;
    transition: color 0.2s, border-color 0.2s;
    cursor: none;
  }
  .activator-cta:hover { color: var(--blush-text); border-color: var(--blush-dim); }

  /* DIVIDER */
  .divider {
    height: 1px;
    background: var(--border);
    margin: 0 3.5rem;
  }

  /* SHOP */
  #shop { background: var(--cream); }

  .shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
  }

  .shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .product-card {
    background: var(--parchment);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: none;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(61,46,36,0.08); }

  .product-img {
    aspect-ratio: 1;
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .product-img-2 { background: var(--blush-pale); }
  .product-img-3 { background: #ede8df; }
  .product-img-4 { background: #e8e2d9; }

  .product-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--bark);
    color: var(--cream);
    padding: 0.2rem 0.6rem;
    font-weight: 500;
  }
  .product-badge-blush {
    background: var(--blush-dim);
  }

  .product-info {
    padding: 1.25rem;
    border-top: 1px solid var(--border);
  }

  .product-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.2rem;
  }

  .product-sub {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--bark-light);
    margin-bottom: 1rem;
  }

  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--bark);
  }

  .product-btn {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark);
    border: none;
    padding: 0.55rem 1rem;
    cursor: none;
    transition: background 0.2s;
  }
  .product-btn:hover { background: var(--blush-dim); }

  /* CONTACT */
  #contact { background: var(--parchment); }

  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 4rem;
  }

  .contact-detail {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .contact-detail:first-of-type { border-top: 1px solid var(--border); margin-top: 2rem; }

  .contact-icon {
    width: 2.25rem; height: 2.25rem;
    background: var(--blush-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
    border-radius: 50%;
  }
  .contact-icon svg { width: 14px; height: 14px; stroke: var(--blush-dim); fill: none; stroke-width: 1.5; }

  .contact-detail-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dusty-text);
    margin-bottom: 0.25rem;
    font-weight: 400;
  }
  .contact-detail-val { font-size: 0.9rem; color: var(--bark); font-weight: 300; }

  .intake-box {
    margin-top: 2.5rem;
    border: 1px solid var(--blush-pale);
    padding: 2rem;
    background: rgba(212,165,160,0.07);
    position: relative;
  }
  .intake-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-text);
    margin-bottom: 0.75rem;
    font-weight: 400;
  }
  .intake-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.5rem;
  }
  .intake-desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--bark-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
  }
  .intake-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark-mid);
    padding: 0.85rem 1.5rem;
    text-decoration: none;
    cursor: none;
    transition: background 0.2s;
  }
  .intake-btn:hover { background: var(--blush-dim); }
  .intake-btn svg { width: 13px; height: 13px; stroke: var(--cream); fill: none; stroke-width: 2; }

  .intake-tip {
    font-size: 0.68rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dusty-text);
    margin-top: 0.9rem;
    line-height: 1.6;
    max-width: 34ch;
  }

  /* FORM */
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1rem; }

  .form-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark-light);
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 400;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--border-med);
    color: var(--bark);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    border-radius: 0;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--blush);
    box-shadow: 0 0 0 3px rgba(212,165,160,0.12);
  }
  .form-input::placeholder, .form-textarea::placeholder { color: var(--dusty); }
  .form-select option { background: var(--cream); color: var(--bark); }
  .form-textarea { resize: vertical; min-height: 110px; }

  .form-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.25rem 0;
  }
  .form-checkbox {
    width: 15px; height: 15px;
    border: 1px solid var(--border-med);
    background: var(--cream);
    appearance: none;
    cursor: none;
    flex-shrink: 0;
    margin-top: 3px;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 0;
    position: relative;
  }
  .form-checkbox:checked { background: var(--blush-dim); border-color: var(--blush-dim); }
  .form-checkbox:checked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat;
  }
  .form-checkbox-label { font-size: 0.78rem; color: var(--bark-light); line-height: 1.55; font-weight: 300; }
  .form-checkbox-label a { color: var(--blush-text); text-decoration: none; }

  .form-submit {
    width: 100%;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark);
    border: none;
    padding: 1.1rem;
    cursor: none;
    transition: background 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .form-submit:hover { background: var(--blush-dim); }
  .form-submit svg { width: 13px; height: 13px; stroke: var(--cream); fill: none; stroke-width: 2; }

  .form-success { display: none; text-align: center; padding: 3.5rem 2rem; border: 1px solid var(--blush-pale); background: rgba(212,165,160,0.07); }
  .form-success.show { display: block; }
  .form-success-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
  .form-success h3 { font-family: var(--font-display); font-size: 2.25rem; font-weight: 300; color: var(--bark); margin-bottom: 0.5rem; }
  .form-success p { font-size: 0.85rem; color: var(--bark-light); font-weight: 300; line-height: 1.7; }

  /* FOOTER */
  footer {
    background: var(--bark);
    padding: 5rem 3.5rem 2.5rem;
    color: var(--cream);
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(250,247,242,0.1);
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.75rem;
  }
  .footer-logo em { font-style: italic; color: var(--blush); }

  .footer-tagline { font-size: 0.82rem; font-weight: 300; color: rgba(250,247,242,0.45); max-width: 30ch; line-height: 1.7; }


  .footer-links { display: flex; gap: 5rem; }
  .footer-col h4 { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); margin-bottom: 1.25rem; font-weight: 400; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul a { font-size: 0.82rem; font-weight: 300; color: rgba(250,247,242,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--cream); }

  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 0.62rem; letter-spacing: 0.12em; color: rgba(250,247,242,0.25); }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: 0.62rem; letter-spacing: 0.12em; color: rgba(250,247,242,0.25); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: var(--blush); }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ============================
     MOBILE / RESPONSIVE
     ============================ */
  @media (max-width: 900px) {

    nav {
      flex-wrap: wrap;
      row-gap: 0.75rem;
      padding: 1rem 1.25rem;
      background: rgba(250,247,242,0.97);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }
    .nav-logo {
      font-size: 1.05rem;
      gap: 0.35rem;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav-links {
      order: 3;
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.65rem 0.9rem;
    }
    .nav-links a { font-size: 0.6rem; letter-spacing: 0.1em; }
    .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.65rem; }

    #home {
      grid-template-columns: 1fr;
      min-height: auto;
      padding-top: 7.5rem;
    }
    .hero-left { padding: 8rem 1.5rem 3rem; }
    .hero-desc { max-width: none; }
    .hero-right { min-height: 380px; }
    .hero-stats {
      position: static;
      padding: 1.5rem 1.5rem 0;
      gap: 2rem;
    }
    .hero-marquee { position: static; }

    section { padding: 4rem 1.5rem; padding-top: 7.5rem; }

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

    .meet-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .meet-photo-col { max-width: 320px; }

    .sp-grid { grid-template-columns: repeat(2, 1fr); }

    .activator-inner { grid-template-columns: 1fr; gap: 2rem; }

    .shop-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

    .form-row { grid-template-columns: 1fr; }

    footer { padding: 3.5rem 1.5rem 2rem; }
    .footer-top {
      flex-direction: column;
      align-items: flex-start;
      gap: 2rem;
    }
    .footer-links {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 1rem;
    }
  }

  @media (max-width: 520px) {
    .hero-h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
    .sp-grid, .shop-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .contact-detail { flex-wrap: wrap; }
    .nav-logo-flower { display: none; }
    .nav-logo { font-size: 1.2rem; }
  }

  @media (hover: none) and (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
    body::after { display: none; }
  }

  /* ===== ONLINE INTAKE FORM ===== */
  .intake-form-wrap { max-width: 720px; margin: 0 auto; }

  .intake-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 2rem 0 3rem;
    padding: 1.1rem 1.3rem;
    border: 1px solid var(--border);
    background: rgba(212,165,160,0.05);
  }
  .intake-progress a {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bark-light);
    text-decoration: none;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--border-med);
    transition: all 0.2s;
  }
  .intake-progress a:hover { border-color: var(--blush); color: var(--blush-text); }

  .intake-form-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 2rem;
  }
  .intake-form-section:last-of-type { border-bottom: none; }

  .intake-section-num {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush-text);
    margin-bottom: 0.6rem;
  }
  .intake-section-num::before { content: '\2014  '; opacity: 0.6; }

  .intake-section-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 0.6rem;
  }
  .intake-section-desc {
    font-size: 0.83rem;
    font-weight: 300;
    color: var(--bark-light);
    margin-bottom: 1.75rem;
    line-height: 1.75;
    max-width: 56ch;
  }

  .ros-group { margin-bottom: 1.85rem; }
  .ros-group-title {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--blush-text);
    margin-bottom: 0.85rem;
  }
  .ros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem 1rem;
  }
  .ros-check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--bark-light);
    cursor: none;
  }
  .ros-check input[type="checkbox"] {
    width: 14px; height: 14px;
    border: 1px solid var(--border-med);
    background: var(--cream);
    appearance: none;
    cursor: none;
    flex-shrink: 0;
    border-radius: 0;
    position: relative;
  }
  .ros-check input[type="checkbox"]:checked { background: var(--blush-dim); border-color: var(--blush-dim); }
  .ros-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/9px no-repeat;
  }

  .scale-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.6rem 0 1.75rem; }
  .scale-pill { position: relative; }
  .scale-pill input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: none; }
  .scale-pill span {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid var(--border-med);
    font-size: 0.8rem; font-weight: 300;
    color: var(--bark-light);
    transition: all 0.2s;
  }
  .scale-pill input:checked + span { background: var(--blush-dim); border-color: var(--blush-dim); color: var(--cream); }
  .scale-caption { display:flex; justify-content:space-between; font-size:0.66rem; color:var(--dusty-text); font-weight:300; max-width: 420px; margin-top:-1.1rem; margin-bottom:1.75rem; }

  .form-radio-row { display: flex; gap: 1.75rem; margin: 0.6rem 0 1.5rem; flex-wrap: wrap; }
  .form-radio { display: flex; align-items: center; gap: 0.55rem; font-size: 0.83rem; color: var(--bark-light); font-weight: 300; cursor: none; }
  .form-radio input { width: 14px; height: 14px; accent-color: var(--blush-dim); cursor: none; }

  .intake-signature-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; }

  .pain-area-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
  }
  @media (max-width: 860px) {
    .pain-area-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(8, auto); }
  }
  @media (max-width: 560px) {
    .pain-area-grid { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; }
  }

  @media (max-width: 860px) {
    .ros-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .ros-grid { grid-template-columns: 1fr; }
    .intake-signature-row { grid-template-columns: 1fr; }
    .intake-progress { display: none; }
  }

