  /* ---------- Design tokens ---------- */
  :root {
    --cream:        #f7f3ec;
    --cream-2:      #efe9dd;
    --ink:          #1f201c;
    --ink-soft:     #494a45;
    --ink-muted:    #77786f;
    --sage:         #6b7a5a;
    --sage-deep:    #4b5640;
    --sage-soft:    #c8cfbc;
    --blush:        #d79a94;
    --blush-soft:   #ecd3cf;
    --line:         #d9d3c6;
    --line-soft:    #e7e1d3;
    --white:        #ffffff;

    --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --sans:  "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

    --shadow-soft: 0 2px 8px rgba(35, 30, 20, 0.04), 0 20px 40px -20px rgba(35, 30, 20, 0.08);
    --shadow-card: 0 1px 2px rgba(35, 30, 20, 0.04), 0 8px 24px -12px rgba(35, 30, 20, 0.12);

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;

    --container: 1200px;
    --gutter: clamp(20px, 4vw, 48px);
  }

  /* ---------- Reset / base ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    font-feature-settings: "ss01", "ss02";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50;
  }
  h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -0.025em; }
  h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; }
  h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); line-height: 1.2; }
  h4 { font-size: 1.05rem; line-height: 1.3; font-weight: 500; }

  p { margin: 0 0 1em; color: var(--ink-soft); }
  p:last-child { margin-bottom: 0; }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }

  section { padding: clamp(70px, 10vw, 130px) 0; }

  .eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--sage-deep);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: "";
    width: 24px; height: 1px;
    background: var(--sage-deep);
    display: inline-block;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 0.98rem;
    letter-spacing: 0.005em;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--cream);
  }
  .btn-primary:hover {
    background: var(--sage-deep);
    transform: translateY(-1px);
  }
  .btn-ghost {
    color: var(--ink);
    border: 1px solid var(--ink);
  }
  .btn-ghost:hover {
    background: var(--ink);
    color: var(--cream);
  }
  .btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
  .btn:hover svg { transform: translateX(3px); }

  /* ---------- Navigation ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 236, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
  }
  .nav.scrolled { border-bottom-color: var(--line-soft); }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    font-variation-settings: "opsz" 100, "SOFT" 100;
  }
  .logo-mark {
    width: 30px; height: 30px;
    display: inline-block;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.94rem;
  }
  .nav-links a {
    color: var(--ink-soft);
    transition: color .2s ease;
    position: relative;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    padding: 10px 20px;
    font-size: 0.92rem;
  }
  @media (max-width: 820px) {
    .nav-links a:not(.nav-cta) { display: none; }
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: clamp(40px, 8vw, 80px) 0 clamp(70px, 10vw, 120px);
    position: relative;
    overflow: hidden;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  .hero h1 {
    margin-top: 28px;
    font-variation-settings: "opsz" 144, "SOFT" 80;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sage-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100;
  }
  .hero-sub {
    margin-top: 28px;
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 48ch;
    line-height: 1.55;
  }
  .hero-ctas {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero-note {
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .dot {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--sage);
    box-shadow: 0 0 0 4px rgba(107,122,90,.18);
    flex-shrink: 0;
  }

  .hero-image-wrap {
    position: relative;
    aspect-ratio: 5 / 6;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
  }
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
    border-radius: 240px 240px 20px 20px;
    box-shadow: var(--shadow-card);
  }
  .hero-frame {
    position: absolute;
    inset: -14px;
    border: 1px solid var(--line);
    border-radius: 254px 254px 34px 34px;
    pointer-events: none;
    z-index: -1;
  }
  .hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--cream);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    border: 1px solid var(--line-soft);
  }
  .hero-badge strong {
    font-family: var(--serif);
    font-size: 1.3rem;
    display: block;
    line-height: 1;
    color: var(--ink);
  }
  .hero-badge span { color: var(--ink-muted); font-size: 0.78rem; }

  @media (max-width: 900px) {
    .hero-image-wrap { margin: 0 auto; max-width: 380px; }
    .hero-badge { left: 0; }
  }

  /* ---------- Floating botanical accent ---------- */
  .accent-blob {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
  }
  .accent-blob.one {
    top: 20%; right: -8%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, var(--blush-soft) 0%, transparent 70%);
    filter: blur(30px);
  }
  .accent-blob.two {
    bottom: -10%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.45;
  }

  /* ---------- Trust strip ---------- */
  .trust {
    padding: 36px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    background: var(--cream-2);
  }
  .trust-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 48px;
    align-items: center;
    justify-content: space-between;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--ink-soft);
  }
  .trust-item svg {
    width: 20px; height: 20px;
    color: var(--sage-deep);
    flex-shrink: 0;
  }

  /* ---------- "I can help with..." ---------- */
  .help {
    background: var(--cream);
  }
  .help-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
  }
  @media (max-width: 820px) {
    .help-grid { grid-template-columns: 1fr; }
  }
  .help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 40px;
  }
  @media (max-width: 560px) { .help-list { column-count: 1; } }
  .help-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    break-inside: avoid;
    font-size: 1rem;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .help-list li::before {
    content: "";
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blush);
    margin-top: 9px;
    flex-shrink: 0;
  }

  /* ---------- Services ---------- */
  .services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  }
  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
  }
  .services-header p {
    max-width: 42ch;
    color: var(--ink-soft);
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 3.5vw, 44px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
  }
  @media (max-width: 820px) {
    .service-card { grid-template-columns: 1fr; gap: 24px; }
  }
  .service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--sage);
  }
  .service-card.blush::before { background: var(--blush); }
  .service-card.sage::before { background: var(--sage); }

  .service-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-bottom: 12px;
  }
  .service-meta .chip {
    background: var(--cream-2);
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.08em;
  }
  .service-card h3 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 16px;
    font-variation-settings: "opsz" 144, "SOFT" 80;
  }
  .service-price {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--sage-deep);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
  }
  .service-price .per { font-size: 0.85rem; color: var(--ink-muted); font-family: var(--sans); }

  .service-right h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink-muted);
    margin-bottom: 14px;
  }
  .service-deliverables {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  .service-deliverables li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--line-soft);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--ink-soft);
  }
  .service-deliverables li:last-child { border-bottom: none; }
  .service-deliverables li::before {
    content: "→";
    color: var(--sage);
    font-weight: 600;
  }
  .service-note {
    font-size: 0.88rem;
    color: var(--ink-muted);
    font-style: italic;
    padding: 14px 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--blush);
  }

  /* ---------- How it works ---------- */
  .process {
    background: var(--ink);
    color: var(--cream);
  }
  .process h2, .process .eyebrow, .process h3 { color: var(--cream); }
  .process .eyebrow { color: var(--sage-soft); }
  .process .eyebrow::before { background: var(--sage-soft); }
  .process p { color: rgba(247,243,236,0.72); }

  .process-intro {
    max-width: 60ch;
    margin-bottom: 70px;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
  }
  @media (max-width: 820px) { .process-steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } }

  .step {
    padding: 32px 24px;
    border: 1px solid rgba(247,243,236,0.12);
    border-radius: var(--radius);
    background: rgba(247,243,236,0.02);
    position: relative;
    transition: background .3s ease, border-color .3s ease;
  }
  .step:hover {
    background: rgba(247,243,236,0.05);
    border-color: rgba(247,243,236,0.2);
  }
  .step-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 20px;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-style: italic;
  }
  .step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: -0.005em;
  }
  .step p { font-size: 0.92rem; }

  /* ---------- Booking embed ---------- */
  .booking { background: var(--cream); }
  .booking-header { text-align: center; margin-bottom: 50px; }
  .booking-header p {
    max-width: 52ch;
    margin: 20px auto 0;
  }
  .booking-embed {
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 40px);
    box-shadow: var(--shadow-card);
    display: flex;
    justify-content: center;
  }

  /* ---------- FAQ ---------- */
  .faq { background: var(--cream-2); }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
  }
  @media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

  details.q {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  details.q:first-child { border-top: 1px solid var(--line); }
  details.q summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 50;
    transition: color .2s ease;
  }
  details.q summary::-webkit-details-marker { display: none; }
  details.q summary:hover { color: var(--sage-deep); }
  .q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    flex-shrink: 0;
    transition: transform .3s ease, background .2s ease, border-color .2s ease;
    font-size: 1rem;
    color: var(--ink-soft);
  }
  details.q[open] .q-icon {
    transform: rotate(45deg);
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
  }
  details.q > div {
    padding-top: 16px;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 65ch;
  }

  /* ---------- Contact ---------- */
  .contact {
    background: var(--cream);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
    padding: clamp(40px, 6vw, 70px);
    background: var(--white);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact h2 { margin-bottom: 16px; }
  .contact-methods {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    transition: background .2s ease, border-color .2s ease;
  }
  .contact-method:hover {
    background: var(--cream);
    border-color: var(--line);
  }
  .contact-method svg {
    width: 22px; height: 22px;
    color: var(--sage-deep);
    flex-shrink: 0;
  }
  .contact-method .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-muted);
  }
  .contact-method .value {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ink);
  }
  .contact-aside {
    padding: 32px;
    background: var(--cream-2);
    border-radius: var(--radius);
    font-size: 0.95rem;
  }
  .contact-aside h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: var(--sans);
    font-weight: 500;
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--ink);
    color: rgba(247,243,236,0.7);
    padding: 70px 0 36px;
    font-size: 0.9rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }
  @media (max-width: 820px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 520px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
  }
  footer .logo { color: var(--cream); }
  footer h4 {
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    font-weight: 500;
  }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { margin-bottom: 10px; }
  footer a:hover { color: var(--cream); }
  .footer-tagline {
    margin-top: 16px;
    max-width: 36ch;
    line-height: 1.5;
  }
  .footer-bottom {
    border-top: 1px solid rgba(247,243,236,0.12);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(247,243,236,0.5);
  }
  .footer-bottom .disclaimer {
    max-width: 60ch;
  }

  /* ---------- Fade-in on load ---------- */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .fade-up.in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Accessibility ---------- */
  :focus-visible {
    outline: 2px solid var(--sage-deep);
    outline-offset: 3px;
    border-radius: 4px;
  }

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