﻿<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --pink:       #ed7094;
    --pink-light: #fce8ef;
    --pink-mid:   #f299b0;
    --purple:     #173454;
    --purple-light: #e8eef4;
    --navy:       #173454;
    --navy-mid:   #2e4a6a;
    --cream:      #f0e8df;
    --warm-white: #fbf3eb;
    --stone:      #7a6e68;
    --border:     rgba(23,52,84,0.13);
    --shadow:     0 4px 24px rgba(23,52,84,0.09);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--warm-white);
    color: var(--navy);
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(253,250,247,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 3rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 66px;
  }
  .nav-logo {
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .nav-logo span { color: var(--pink); }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 0.83rem; font-weight: 500; color: var(--stone);
    text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--pink); }
  .nav-cta {
    background: var(--pink); color: #fff !important;
    padding: 0.5rem 1.3rem; border-radius: 2rem;
    font-size: 0.82rem !important; font-weight: 600 !important;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #d03d65 !important; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; overflow: hidden;
    background: var(--warm-white);
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute; top: -120px; right: -80px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(237,112,148,0.09) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute; bottom: -100px; left: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(23,52,84,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-text {
    padding: 5rem 3rem 5rem 7rem;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--purple);
    background: var(--purple-light); padding: 0.4rem 1rem;
    border-radius: 2rem; margin-bottom: 1.8rem;
  }
  .hero h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 700; line-height: 1.1;
    color: var(--navy); margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }
  .hero h1 em { font-style: italic; color: var(--pink); }
  .hero-sub {
    font-size: 1.08rem; color: var(--stone);
    max-width: 460px; margin-bottom: 2.5rem;
    font-weight: 300; line-height: 1.85;
  }
  .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--pink); color: #fff;
    padding: 0.8rem 2.2rem; border-radius: 2rem;
    font-size: 0.92rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s, transform 0.15s;
    display: inline-block; box-shadow: 0 4px 16px rgba(237,112,148,0.3);
  }
  .btn-primary:hover { background: #d03d65; transform: translateY(-2px); }
  .btn-outline {
    border: 2px solid var(--purple); color: var(--purple);
    padding: 0.78rem 2rem; border-radius: 2rem;
    font-size: 0.92rem; font-weight: 600;
    text-decoration: none; transition: all 0.2s; display: inline-block;
  }
  .btn-outline:hover { background: var(--purple); color: #fff; }

  .hero-visual {
    padding: 4rem 4rem 4rem 2rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; z-index: 2;
  }
  .hero-logo-wrap {
    position: relative;
    width: 380px; height: 380px;
  }
  .hero-logo-wrap::before {
    content: "";
    position: absolute; inset: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(237,112,148,0.18), rgba(23,52,84,0.12), rgba(237,112,148,0.18));
    animation: spin 20s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .hero-logo-wrap img {
    position: relative; z-index: 1;
    width: 100%; height: 100%; object-fit: contain;
    border-radius: 50%;
    background: var(--cream);
    padding: 1.5rem;
    box-shadow: var(--shadow);
  }
  .hero-tags {
    display: flex; flex-wrap: wrap; gap: 0.6rem;
    margin-top: 2rem; justify-content: center;
  }
  .hero-tag {
    font-size: 0.78rem; font-weight: 500;
    background: var(--warm-white); border: 1px solid var(--border);
    color: var(--stone); padding: 0.35rem 0.9rem; border-radius: 2rem;
  }

  /* SECTION BASE */
  section { padding: 5.5rem 7rem; }
  .section-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--pink); margin-bottom: 0.9rem;
  }
  .section-title {
    font-family: "Fraunces", serif;
    font-size: clamp(1.9rem, 2.8vw, 2.8rem);
    font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 1.2rem;
  }
  .section-intro {
    font-size: 1.05rem; color: var(--stone);
    max-width: 580px; font-weight: 300; line-height: 1.85;
    margin-bottom: 3rem;
  }

  /* ABOUT */
  .about-section {
    background: var(--navy);
    padding: 5.5rem 7rem;
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 5rem; align-items: center;
  }
  .about-accent {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700; font-style: italic;
    color: var(--pink); line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .about-divider {
    width: 48px; height: 3px;
    background: linear-gradient(to right, var(--pink), var(--purple));
    border-radius: 2px; margin: 1.5rem 0;
  }
  .about-section .section-label { color: var(--pink-mid); }
  .about-text { color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.9; font-size: 1rem; }
  .about-text p + p { margin-top: 1rem; }
  .about-text strong { color: rgba(255,255,255,0.95); font-weight: 500; }

  /* SERVICES */
  .services-section { background: var(--cream); }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem; margin-bottom: 2.5rem;
  }
  .service-card {
    background: var(--warm-white); border: 1.5px solid var(--border);
    border-radius: 18px; padding: 1.8rem 1.6rem;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(to right, var(--pink), var(--purple));
    opacity: 0; transition: opacity 0.2s;
  }
  .service-card:hover { border-color: var(--pink-mid); transform: translateY(-4px); box-shadow: var(--shadow); }
  .service-card:hover::before { opacity: 1; }
  .service-emoji { font-size: 1.8rem; margin-bottom: 0.9rem; display: block; }
  .service-card h3 {
    font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.45rem;
  }
  .service-card p { font-size: 0.86rem; color: var(--stone); line-height: 1.6; font-weight: 300; }
  .services-cta { text-align: center; }

  /* WHO I WORK WITH */
  .who-section {
    background: var(--warm-white);
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .who-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .who-list li {
    display: flex; align-items: center; gap: 1rem;
    font-size: 0.98rem; color: var(--navy); font-weight: 400;
    background: var(--cream); border-radius: 12px; padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
  }
  .who-list li::before {
    content: ""; width: 8px; height: 8px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 50%; flex-shrink: 0;
  }
  .who-note {
    margin-top: 1.5rem; font-size: 0.92rem; color: var(--stone);
    font-style: italic; font-weight: 300; line-height: 1.7;
    padding: 1rem 1.2rem; border-left: 3px solid var(--pink);
    background: var(--pink-light); border-radius: 0 10px 10px 0;
  }
  .why-grid { display: flex; flex-direction: column; gap: 1rem; }
  .why-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.1rem 1.3rem; background: var(--cream);
    border-radius: 12px; border: 1px solid var(--border);
  }
  .why-check {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 0.1rem;
    color: white; font-size: 0.75rem; font-weight: 700;
  }
  .why-item p { font-size: 0.93rem; color: var(--navy); font-weight: 400; line-height: 1.5; }

  /* PRICING */
  .pricing-section { background: var(--cream); }
  .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
  .pricing-card {
    background: var(--warm-white); border: 1.5px solid var(--border);
    border-radius: 22px; padding: 2.2rem 1.8rem;
    display: flex; flex-direction: column; position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .pricing-card.featured {
    border-color: var(--pink); background: var(--navy); color: white;
    box-shadow: 0 8px 32px rgba(237,112,148,0.2);
  }
  .pricing-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.32rem 1.1rem; border-radius: 2rem; white-space: nowrap;
  }
  .pricing-icon { font-size: 1.6rem; margin-bottom: 1rem; }
  .pricing-card h3 {
    font-family: "Fraunces", serif; font-size: 1.25rem; font-weight: 700;
    margin-bottom: 0.3rem; letter-spacing: -0.01em;
  }
  .pricing-card.featured h3 { color: white; }
  .pricing-tagline {
    font-size: 0.82rem; color: var(--stone); margin-bottom: 1.3rem;
    font-weight: 300;
  }
  .pricing-card.featured .pricing-tagline { color: rgba(255,255,255,0.6); }
  .pricing-hours {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--pink); margin-bottom: 1rem;
  }
  .pricing-card.featured .pricing-hours { color: var(--pink-mid); }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
  .pricing-features li {
    font-size: 0.86rem; color: var(--stone);
    display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5;
  }
  .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }
  .pricing-features li::before {
    content: "✓"; color: var(--pink); font-weight: 700;
    font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem;
  }
  .pricing-card.featured .pricing-features li::before { color: var(--pink-mid); }
  .pricing-from {
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 1px solid var(--border); font-size: 0.82rem;
    color: var(--stone); font-weight: 400;
  }
  .pricing-card.featured .pricing-from { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); }
  .pricing-from strong { font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--navy); }
  .pricing-card.featured .pricing-from strong { color: white; }
  .pricing-custom {
    background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
    border: 1.5px dashed var(--purple); border-radius: 22px;
    padding: 2.2rem 1.8rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  }
  .pricing-custom h3 {
    font-family: "Fraunces", serif; font-size: 1.25rem; font-weight: 700; color: var(--navy);
  }
  .pricing-custom p { font-size: 0.9rem; color: var(--stone); font-weight: 300; line-height: 1.6; }

  /* APPROACH */
  .approach-section {
    background: linear-gradient(135deg, var(--pink) 0%, var(--navy) 100%);
    padding: 5rem 7rem; text-align: center; color: white;
  }
  .approach-section .section-label { color: rgba(255,255,255,0.7); }
  .approach-section .section-title { color: white; max-width: 600px; margin: 0 auto 1.5rem; }
  .approach-words {
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .approach-word {
    font-family: "Fraunces", serif; font-size: 1.4rem; font-style: italic;
    font-weight: 400; color: rgba(255,255,255,0.9);
  }
  .approach-word + .approach-word::before {
    content: "·"; margin-right: 1.5rem; color: rgba(255,255,255,0.4);
  }
  .approach-section p {
    font-size: 1.05rem; color: rgba(255,255,255,0.8);
    max-width: 520px; margin: 0 auto; font-weight: 300; line-height: 1.85;
  }

  /* CTA */
  .cta-section { background: var(--warm-white); text-align: center; padding: 5.5rem 7rem; }
  .cta-section .section-title { max-width: 560px; margin: 0 auto 1.2rem; }
  .cta-section > p {
    color: var(--stone); font-weight: 300; max-width: 480px;
    margin: 0 auto 2.5rem; font-size: 1.05rem; line-height: 1.85;
  }
  .cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; align-items: center; }

  /* CONTACT FORM */
  .contact-form {
    max-width: 620px; margin: 2.5rem auto 0; text-align: left;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
  .form-row .form-group { margin-bottom: 0; }
  .form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
  .form-group input, .form-group select, .form-group textarea {
    font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.92rem;
    color: var(--navy); background: var(--cream);
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 0.75rem 1rem; transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; width: 100%;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--pink); box-shadow: 0 0 0 3px rgba(232,83,122,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7068' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
    background-color: var(--cream);
  }
  .form-footer { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .form-status { font-size: 0.88rem; font-weight: 500; }
  .form-status.success { color: #2e7d52; }
  .form-status.error { color: #c0392b; }
  .honeypot { display: none; }

  /* FOOTER */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.5);
    padding: 2rem 7rem; display: flex; justify-content: space-between;
    align-items: center; font-size: 0.82rem; flex-wrap: wrap; gap: 1rem;
  }
  .footer-brand {
    font-family: "Fraunces", serif; color: rgba(255,255,255,0.85);
    font-size: 1rem; font-weight: 700;
  }
  .footer-brand span { color: var(--pink); }

  @media (max-width: 960px) {
    .hero, .about-section, .who-section { grid-template-columns: 1fr; }
    .hero-text { padding: 3.5rem 2rem 2rem; }
    .hero-visual { padding: 2rem; }
    .hero-logo-wrap { width: 280px; height: 280px; }
    section, .about-section, .cta-section, .approach-section, .pricing-section, footer { padding: 3.5rem 1.5rem; }
    .about-section { gap: 2rem; }
    .who-section { gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
  }