:root {
      --canvas: #ffffff;
      --linen: #f4f5f6;
      --stone: #6b7280;
      --stone-light: #d1d5db;
      --text: #181a1c;
      --text-muted: #4b5563;
      --border: rgba(0,0,0,0.08);
      --accent: #5a6f94;
    }

    /* DARK MODE — system preference (no explicit override) */
    @media (prefers-color-scheme: dark) {
      html:not(.light) {
        color-scheme: dark;
        --canvas: #111315;
        --linen: #1c1f23;
        --stone: #8d96a3;
        --stone-light: #2a2f36;
        --text: #e8eaec;
        --text-muted: #8d96a3;
        --border: rgba(255,255,255,0.07);
        --accent: #8fa8c8;
      }
      html:not(.light) nav { background: rgba(17,19,21,0.97); }
      html:not(.light) #book { background: #0c0d0f; }
      html:not(.light) #book h2 { color: #e8eaec; }
      html:not(.light) #book .contact-alt a:hover { color: #e8eaec; }
      html:not(.light) #book .btn-light { background: rgba(255,255,255,0.10); color: #e8eaec; }
      html:not(.light) #book .btn-light:hover { background: rgba(255,255,255,0.18); }
      html:not(.light) .hero-photo-wrap img { box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
    }

    /* DARK MODE — explicit override via toggle */
    html.dark {
      color-scheme: dark;
      --canvas: #111315;
      --linen: #1c1f23;
      --stone: #8d96a3;
      --stone-light: #2a2f36;
      --text: #e8eaec;
      --text-muted: #8d96a3;
      --border: rgba(255,255,255,0.07);
      --accent: #8fa8c8;
    }
    html.dark nav { background: rgba(17,19,21,0.97); }
    html.dark #book { background: #0c0d0f; }
    html.dark #book h2 { color: #e8eaec; }
    html.dark #book .contact-alt a:hover { color: #e8eaec; }
    html.dark #book .btn-light { background: rgba(255,255,255,0.10); color: #e8eaec; }
    html.dark #book .btn-light:hover { background: rgba(255,255,255,0.18); }
    html.dark .hero-photo-wrap img { box-shadow: 0 8px 40px rgba(0,0,0,0.5); }

    /* BASE */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--canvas);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      transition: background-color 0.25s, color 0.25s;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.97);
      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-brand {
      font-family: 'Libre Baskerville', serif;
      font-weight: 400;
      font-size: 22px;
      letter-spacing: 0.04em;
      color: var(--text);
      text-decoration: none;
    }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
      font-weight: 400;
    }

    .nav-links a:hover { color: var(--text); }

    /* NAV RIGHT — wraps links + toggle */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    /* THEME TOGGLE */
    .theme-toggle {
      background: none;
      border: 1px solid var(--stone-light);
      border-radius: 50%;
      width: 32px;
      height: 32px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--stone);
      transition: color 0.2s, border-color 0.2s;
      padding: 0;
      flex-shrink: 0;
      line-height: 1;
    }

    .theme-toggle:hover {
      color: var(--text);
      border-color: var(--stone);
    }

    /* HERO — tighter gap, bigger photo */
    #hero { padding: 8rem 3rem 4.5rem; background: var(--linen); }

    .hero-inner {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 3rem;
      align-items: start;
    }

    .hero-eyebrow {
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 1.25rem;
      font-weight: 400;
    }

    h1 {
      font-family: 'Libre Baskerville', serif;
      font-weight: 400;
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--text);
      margin-bottom: 1.25rem;
    }

    .hero-sub {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .hero-warm {
      font-size: 18px;
      color: var(--text);
      line-height: 1.75;
      margin-bottom: 2.25rem;
    }

    /* Larger, closer photo */
    .hero-photo-wrap {
      max-width: 420px;
      background: var(--linen);
      border-radius: 4px;
      overflow: hidden;
    }

    .hero-photo-wrap img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: cover;
      object-position: center top;
      display: block;
      box-shadow: 0 8px 40px rgba(0,0,0,0.13);
    }

    /* BUTTONS */
    .btn {
      display: inline-block;
      background: var(--text);
      color: var(--canvas);
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 1.15rem 2.75rem;
      transition: background 0.2s;
    }

    .btn:hover { background: var(--accent); }
    .btn-light { background: var(--linen); color: var(--text); }
    .btn-light:hover { background: var(--stone-light); }

    /* SECTIONS — tighter padding, narrower column */
    section { padding: 4rem 3rem; }
    .container {
      max-width: 780px !important;
      margin: 0 auto !important;
      padding-left: 0 !important;
      padding-right: 0 !important;
      width: 100% !important;
    }

    #what-to-expect h2 { margin-bottom: 1.5rem; }

    h2 {
      font-family: 'Libre Baskerville', serif;
      font-weight: 400;
      font-size: 44px;
      margin-bottom: 1.25rem;
      color: var(--text);
      line-height: 1.1;
    }

    h3 {
      font-family: 'Libre Baskerville', serif;
      font-weight: 500;
      font-size: 22px;
      margin-bottom: 0.5rem;
      color: var(--text);
      line-height: 1.2;
    }

    p { margin-bottom: 1.1rem; }
    p:last-child { margin-bottom: 0; }

    /* WHAT I DO */
    #what-i-do { background: var(--canvas); }

    .location-note {
      margin-top: 1.5rem;
      font-size: 18px;
      color: var(--text-muted);
      font-style: italic;
    }

    /* HOW WE WORK */
    #how-we-work { background: var(--linen); }

    .service-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2.25rem;
    }

    .service-card {
      background: var(--canvas);
      padding: 2.25rem 2rem;
      border-top: 3px solid var(--accent);
    }

    .service-tag {
      font-size: 17px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
      font-weight: 400;
    }

    .service-price {
      font-size: 17px;
      color: var(--stone);
      /* margin-top: 1.25rem; */
      /* padding: 1.25rem; */
      /* border-top: 1px solid var(--stone-light); */
    }

    /* WHAT TO EXPECT */
    #what-to-expect { background: var(--canvas); }

    .expect-list { list-style: none; margin-top: 0.75rem; padding-left: 0; }

    .expect-list li {
      font-size: 18px;
      line-height: 1.75;
      color: var(--text);
      margin-bottom: 1rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--linen);
    }

    .expect-list li:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
    }

    /* SPACES */
    #spaces { background: var(--linen); }

    .spaces-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-top: 1.75rem;
    }

    .spaces-col h3 {
      font-size: 17px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      color: var(--stone);
      margin-bottom: 0.85rem;
    }

    .spaces-col p {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.9;
    }

    /* PRICING */
    #pricing { background: var(--canvas); }

    .pricing-intro {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 2.5rem;
    }

    .pricing-tiers {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.75rem;
      margin-bottom: 3rem;
      align-items: stretch;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Discovery Call — lighter treatment */
    .tier-card {
      background: var(--linen);
      padding: 2.25rem 1.75rem;
      border-top: 3px solid var(--accent);
      display: flex;
      flex-direction: column;
    }

    .tier-card.tier-start {
      background: var(--canvas);
      border-top-color: var(--stone-light);
      border: 1px solid var(--stone-light);
      border-top: 2px solid var(--stone-light);
      padding: 2rem 1.75rem;
    }

    .tier-top { flex: 1; }

    .tier-label {
      font-size: 18px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 0.5rem;
      font-weight: 400;
      text-align: center;
    }

    .tier-card h3 {
      font-size: 26px;
      margin-bottom: 1rem;
      text-align: center;
      line-height: 1.2;
    }

    .tier-divider {
      width: 32px;
      height: 2px;
      background: var(--accent);
      margin: 0 auto 1.25rem;
    }

    .tier-start .tier-divider { background: var(--stone-light); }

    .tier-desc {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .tier-price {
      border-top: 1px solid var(--stone-light);
      padding-top: 1.25rem;
      margin-top: 1.75rem;
      text-align: center;
    }

    .tier-price-main {
      font-family: 'Libre Baskerville', serif;
      font-size: 20px;
      color: var(--text);
      font-weight: 400;
      line-height: 1.5;
    }

    .tier-price-mode {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 400;
    }

    .tier-price-note {
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--text-muted);
      font-weight: 400;
      margin-top: 0.6rem;
    }

    .tier-cta {
      display: block;
      margin-top: 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: var(--accent);
      text-decoration: none;
      letter-spacing: 0.04em;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 1px;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      transition: color 0.2s;
    }

    .tier-cta:hover { color: var(--text); border-color: var(--text); }

    .tier-cta-inline {
      /* display: block; */
      /* margin-top: 1rem; */
      font-family: 'Inter', sans-serif;
      /* font-size: 14px; */
      color: var(--accent);
      text-decoration: none;
      letter-spacing: 0.04em;
      border-bottom: 1px solid var(--accent);
      /* padding-bottom: 1px; */
      width: fit-content;
      /* margin-left: auto; */
      /* margin-right: auto; */
      transition: color 0.2s;
    }

    .tier-cta-inline:hover { color: var(--text); border-color: var(--text); }

    .tier-price span {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 400;
      margin-top: 0.25rem;
    }

    /* INCLUDES BLOCK */
    .includes-block {
      background: var(--linen);
      padding: 2.5rem 3rem;
      margin-bottom: 2.5rem;
    }

    .includes-label {
      font-size: 18px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      color: var(--stone);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .includes-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem 3rem;
    }

    .includes-list li {
      font-size: 18px;
      color: var(--text);
      padding-left: 1.75rem;
      position: relative;
      line-height: 1.55;
    }

    .includes-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 500;
    }

    /* ABOUT */
    #about { background: var(--linen); }

    .credential-row {
      display: flex;
      flex-direction: row;
      gap: 3.5rem;
      align-items: center;
      flex-wrap: nowrap;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }

    .credential-badge { opacity: 0.92; transition: opacity 0.2s; }
    .credential-badge:hover { opacity: 1; }
    .badge-napo { width: 320px; height: auto; }
    .badge-circle { width: 230px; height: auto; }

    /* BOOK CTA */
    #book {
      background: var(--text);
      padding: 5rem 3rem;
      text-align: center;
    }

    #book h2 { color: var(--linen); font-size: 44px; margin-bottom: 0.75rem; }

    #book p {
      color: rgba(244,245,246,0.65);
      font-size: 18px;
      margin-bottom: 2.25rem;
    }

    #book .contact-alt {
      margin-top: 1.5rem;
      font-size: 17px;
      color: rgba(244,245,246,0.45);
    }

    #book .contact-alt a {
      color: rgba(244,245,246,0.65);
      text-decoration: none;
      border-bottom: 1px solid rgba(244,245,246,0.25);
      transition: color 0.2s;
    }

    #book .contact-alt a:hover { color: var(--linen); }

    /* FOOTER */
    footer {
      background: var(--canvas);
      border-top: 1px solid var(--border);
      padding: 2rem 3rem;
      text-align: center;
      font-size: 18px;
      color: var(--text-muted);
    }

    footer a {
      color: var(--text-muted);
      text-decoration: none;
      border-bottom: 1px solid var(--stone-light);
    }

    footer a:hover { color: var(--text); }

    /* LARGE TABLET / NARROW DESKTOP 821–1060px — keep pricing from cramping */
    @media (max-width: 1060px) {
      .pricing-tiers { grid-template-columns: 1fr; max-width: 520px; }
    }

    /* TABLET 600–820px — horizontal nav, single column content */
    @media (max-width: 820px) {
      nav {
        padding: 0 1.5rem;
        height: 60px;
      }
      .nav-brand { font-size: clamp(14px, 2.5vw, 20px); white-space: nowrap; }
      .nav-links { gap: clamp(0.75rem, 2vw, 1.5rem); }
      .nav-links a { font-size: clamp(11px, 1.5vw, 14px); }

      section { padding: 2.5rem 1.5rem; }
      #hero { padding: 6rem 1.5rem 3rem; }
      #book { padding: 3rem 1.5rem; }

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

      /* Photo: larger and centered above text on tablet */
      .hero-photo-wrap {
        max-width: min(320px, 55%);
        margin: 0 auto 0.5rem;
        order: -1;
      }

      h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); line-height: 1.15; }
      h2 { font-size: clamp(1.6rem, 4.5vw, 2.2rem); }
      body { font-size: 17px; }
      .hero-warm { font-size: 16px; }

      .btn {
        padding: 1rem 2rem;
        font-size: 14px;
        display: inline-block;
        text-align: center;
      }

      .service-grid,
      .spaces-grid { grid-template-columns: 1fr; gap: 1.5rem; }

      .pricing-tiers { grid-template-columns: 1fr; gap: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
      .includes-list { grid-template-columns: 1fr; }
      .includes-block { padding: 1.5rem; }
      .tier-card { padding: 1.5rem; }

      .credential-row { flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
      .badge-napo { width: 200px; }
      .badge-circle { width: 140px; }

      .container { max-width: 100%; }
      footer { padding: 1.5rem 1.25rem; font-size: 15px; }
    }

    /* PHONE <480px — stack nav vertically */
    @media (max-width: 480px) {
      nav {
        padding: 0.5rem 1rem;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
      }
      .nav-brand { font-size: 14px; }
      .nav-right { gap: 0.75rem; }
      .nav-links { gap: 0.85rem; }
      .nav-links a { font-size: 11px; }

      #hero { padding: 7.5rem 1rem 2.5rem; }

      /* Photo fills a comfortable portion of the screen width on mobile */
      .hero-photo-wrap {
        max-width: min(260px, 72%);
        margin: 0 auto 0.5rem;
      }

      h1 { font-size: clamp(1.5rem, 8vw, 1.9rem); }
      h2 { font-size: clamp(1.4rem, 7vw, 1.8rem); }
      .hero-sub { font-size: 14px; }
      .hero-warm { font-size: 15px; }
      body { font-size: 15px; }

      .btn {
        display: block;
        text-align: center;
        width: 100%;
      }

      .badge-napo { width: 160px; }
      .badge-circle { width: 110px; }

      section { padding: 2rem 1rem; }
    }

    /* Focus styles for keyboard navigation */
    a:focus, button:focus, .btn:focus {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    a:focus:not(:focus-visible) { outline: none; }